nixpkgs/pkgs/development/libraries/lesstif-0.93/default.nix
Pjotr Prins 9ff6ecf5dd Added older version of lesstif for arb
svn path=/nixpkgs/trunk/; revision=12974
2008-10-06 15:11:36 +00:00

25 lines
557 B
Nix

args: with args ;
stdenv.mkDerivation {
name = "lesstif-0.93.94";
src = fetchurl {
url = http://prdownloads.sourceforge.net/lesstif/lesstif-0.93.94.tar.bz2;
sha256 = "0v4l46ill6dhhswsw1hk6rqyng98d85nsr214vhd2k0mfajpig1y";
};
buildInputs = [x11];
propagatedBuildInputs = [libXp libXau];
# This is an older release of lesstif which works with arb.
#
patches = [
./c-bad_integer_cast.patch
./c-xim_chained_list_crash.patch
./c-render_table_crash.patch
./stdint.patch
];
meta = {
priority = "5";
};
}