mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
6521957bf4
... to correspond to what is really downloaded and built. Also, the 2006 comment was no longer correct, as the version is from 2009.
22 lines
645 B
Nix
22 lines
645 B
Nix
{stdenv, fetchurl, xlibsWrapper, libXp, libXau}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "lesstif-0.95.2";
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/lesstif/${name}.tar.bz2";
|
|
sha256 = "1qzpxjjf7ri1jzv71mvq5m9g8hfaj5yzwp30rwxlm6n2b24a6jpb";
|
|
};
|
|
buildInputs = [xlibsWrapper];
|
|
propagatedBuildInputs = [libXp libXau];
|
|
|
|
# These patches fix a number of later issues - in particular the
|
|
# render_table_crash shows up in 'arb'. The same patches appear
|
|
# in Debian, so we assume they have been sent upstream.
|
|
#
|
|
patches = [
|
|
./c-missing_xm_h.patch
|
|
./c-render_table_crash.patch
|
|
./c-xpmpipethrough.patch
|
|
];
|
|
}
|