nixpkgs/pkgs/development/libraries/libfilezilla/default.nix

30 lines
737 B
Nix
Raw Normal View History

2019-07-11 09:27:29 +01:00
{ stdenv
, fetchurl
, gettext
, gnutls
, nettle
, pkgconfig
}:
2016-02-19 21:48:42 +00:00
stdenv.mkDerivation rec {
pname = "libfilezilla";
2019-11-28 08:23:43 +00:00
version = "0.19.1";
2016-02-19 21:48:42 +00:00
src = fetchurl {
url = "https://download.filezilla-project.org/${pname}/${pname}-${version}.tar.bz2";
2019-11-28 08:23:43 +00:00
sha256 = "0cjscv68nnqivzba94xapx1c970j1jbdbm0h3g2ym9i0hgnyyhha";
2016-02-19 21:48:42 +00:00
};
nativeBuildInputs = [ pkgconfig ];
2019-07-11 09:27:29 +01:00
buildInputs = [ gettext gnutls nettle ];
2016-02-19 21:48:42 +00:00
meta = with stdenv.lib; {
2019-07-11 09:27:29 +01:00
homepage = "https://lib.filezilla-project.org/";
2016-02-19 21:48:42 +00:00
description = "A modern C++ library, offering some basic functionality to build high-performing, platform-independent programs";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ pSub ];
platforms = platforms.linux;
};
}