* dmenu
* gftp
* micropolis
* byacc as a build-time dependency for micropolis
contributed by baldo <baldo@quimby.lan>

svn path=/nixpkgs/trunk/; revision=12526
This commit is contained in:
Marc Weber
2008-08-06 20:39:01 +00:00
parent 692c5a62a4
commit 9e55727832
5 changed files with 126 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
args: with args;
stdenv.mkDerivation {
name = "gftp-2.0.18";
src = fetchurl {
url = http://www.gftp.org/gftp-2.0.18.tar.bz2;
sha256 = "8145e18d1edf13e8cb6cd7a69bb69de5c46307086997755654488fb8282d38a2";
};
buildInputs = [ gtk readline ncurses gettext openssl pkgconfig ];
meta = {
description = "GTK based FTP client";
homepage = http://www.gftp.org;
license = "GPL";
};
}