2006-04-29 16:18:08 +02:00
|
|
|
{stdenv, fetchurl, x11, libXp, libXau}:
|
2005-12-02 23:49:51 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2008-10-05 10:59:26 +02:00
|
|
|
name = "lesstif-0.95-p2";
|
2005-12-02 23:49:51 +01:00
|
|
|
src = fetchurl {
|
2007-08-27 15:01:33 +02:00
|
|
|
url = mirror://sourceforge/lesstif/lesstif-0.95.0.tar.bz2;
|
2006-07-05 12:38:25 +02:00
|
|
|
md5 = "ab895165c149d7f95843c7584b1c7ad4";
|
2005-12-02 23:49:51 +01:00
|
|
|
};
|
|
|
|
buildInputs = [x11];
|
2006-04-29 16:18:08 +02:00
|
|
|
propagatedBuildInputs = [libXp libXau];
|
2008-10-05 10:59:26 +02:00
|
|
|
|
|
|
|
# The last stable release of lesstif was in June 2006. 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-bad_integer_cast.patch
|
|
|
|
./c-linkage.patch
|
|
|
|
./c-unsigned_int.patch
|
|
|
|
./c-missing_xm_h.patch
|
|
|
|
./c-xim_chained_list_crash.patch
|
|
|
|
./c-render_table_crash.patch
|
|
|
|
./c-xpmpipethrough.patch
|
|
|
|
];
|
2005-12-02 23:49:51 +01:00
|
|
|
}
|