* Added Lesstif (a Motif clone).

* Enabled the actual xpdf GUI in xpdf.

svn path=/nixpkgs/trunk/; revision=4327
This commit is contained in:
Eelco Dolstra
2005-12-02 22:49:51 +00:00
parent c7804cb0e5
commit 6281842b45
4 changed files with 36 additions and 5 deletions

View File

@@ -0,0 +1,11 @@
{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];
}