nixpkgs/pkgs/tools/networking/gftp/default.nix
Tuomas Tynkkynen 21f17d69f6 treewide: Add lots of meta.platforms
Build-tested on x86_64 Linux & Mac.
2016-08-02 21:42:43 +03:00

20 lines
522 B
Nix

{ stdenv, fetchurl, gtk, readline, ncurses, gettext, openssl, pkgconfig }:
stdenv.mkDerivation {
name = "gftp-2.0.19";
src = fetchurl {
url = http://www.gftp.org/gftp-2.0.19.tar.bz2;
sha256 = "1z8b26n23k0sjbxgrix646b06cnpndpq7cbcj0ilsvvdx5ms81jk";
};
buildInputs = [ gtk readline ncurses gettext openssl pkgconfig ];
meta = {
description = "GTK+-based FTP client";
homepage = http://www.gftp.org;
license = stdenv.lib.licenses.gpl2Plus;
platforms = stdenv.lib.platforms.unix;
};
}