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

33 lines
772 B
Nix
Raw Normal View History

2019-07-11 10:27:29 +02:00
{ stdenv
, fetchurl
, gettext
, gnutls
, nettle
, pkgconfig
}:
2016-02-19 22:48:42 +01:00
stdenv.mkDerivation rec {
pname = "libfilezilla";
2020-05-22 07:13:39 +02:00
version = "0.22.0";
2016-02-19 22:48:42 +01:00
src = fetchurl {
url = "https://download.filezilla-project.org/${pname}/${pname}-${version}.tar.bz2";
2020-05-22 07:13:39 +02:00
sha256 = "0ylgxw1lxdqvayy5285mlfrkr9cvsgasy2zci6g6mv9rng261xn5";
2016-02-19 22:48:42 +01:00
};
nativeBuildInputs = [ pkgconfig ];
2020-04-28 16:46:22 +02:00
2019-07-11 10:27:29 +02:00
buildInputs = [ gettext gnutls nettle ];
2020-04-28 16:46:22 +02:00
enableParallelBuilding = true;
2016-02-19 22:48:42 +01:00
meta = with stdenv.lib; {
2019-07-11 10:27:29 +02:00
homepage = "https://lib.filezilla-project.org/";
2016-02-19 22:48:42 +01: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;
};
}