nixpkgs/pkgs/tools/networking/gftp/default.nix
Marc Weber 9e55727832 Added:
* dmenu
* gftp
* micropolis
* byacc as a build-time dependency for micropolis
contributed by baldo <baldo@quimby.lan>

svn path=/nixpkgs/trunk/; revision=12526
2008-08-06 20:39:01 +00:00

18 lines
414 B
Nix

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";
};
}