12 lines
300 B
Nix
12 lines
300 B
Nix
|
{stdenv, fetchurl, x11, libXp}:
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
name = "lesstif-0.94.4";
|
||
|
src = fetchurl {
|
||
|
url = http://surfnet.dl.sourceforge.net/sourceforge/lesstif/lesstif-0.94.4.tar.bz2;
|
||
|
md5 = "3096ca456c0bc299d895974d307c82d8";
|
||
|
};
|
||
|
buildInputs = [x11];
|
||
|
propagatedBuildInputs = [libXp];
|
||
|
}
|