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