2006-04-29 16:18:08 +02:00
|
|
|
{stdenv, fetchurl, x11, libXp, libXau}:
|
2005-12-02 23:49:51 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2006-07-05 12:38:25 +02:00
|
|
|
name = "lesstif-0.95";
|
2005-12-02 23:49:51 +01:00
|
|
|
src = fetchurl {
|
2006-07-05 12:38:25 +02:00
|
|
|
url = http://surfnet.dl.sourceforge.net/sourceforge/lesstif/lesstif-0.95.0.tar.bz2;
|
|
|
|
md5 = "ab895165c149d7f95843c7584b1c7ad4";
|
2005-12-02 23:49:51 +01:00
|
|
|
};
|
|
|
|
buildInputs = [x11];
|
2006-04-29 16:18:08 +02:00
|
|
|
propagatedBuildInputs = [libXp libXau];
|
2005-12-02 23:49:51 +01:00
|
|
|
}
|