2014-03-03 05:08:56 +01:00
|
|
|
{stdenv, fetchurl, xlibsWrapper, libXp, libXau}:
|
2005-12-02 23:49:51 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2013-07-13 22:09:19 +02:00
|
|
|
name = "lesstif-0.95.0-p2";
|
2005-12-02 23:49:51 +01:00
|
|
|
src = fetchurl {
|
2014-09-29 10:23:17 +02:00
|
|
|
url = mirror://sourceforge/lesstif/lesstif-0.95.2.tar.bz2;
|
|
|
|
sha256 = "1qzpxjjf7ri1jzv71mvq5m9g8hfaj5yzwp30rwxlm6n2b24a6jpb";
|
2005-12-02 23:49:51 +01:00
|
|
|
};
|
2014-03-03 05:08:56 +01:00
|
|
|
buildInputs = [xlibsWrapper];
|
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-missing_xm_h.patch
|
|
|
|
./c-render_table_crash.patch
|
|
|
|
./c-xpmpipethrough.patch
|
|
|
|
];
|
2005-12-02 23:49:51 +01:00
|
|
|
}
|