2019-05-31 02:18:05 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, nettle }:
|
2016-02-19 21:48:42 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-05-31 02:18:05 +01:00
|
|
|
pname = "libfilezilla";
|
|
|
|
version = "0.16.0";
|
2016-02-19 21:48:42 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-05-31 02:18:05 +01:00
|
|
|
url = "https://download.filezilla-project.org/${pname}/${pname}-${version}.tar.bz2";
|
|
|
|
sha256 = "1fd71vmllzvljff5l5ka5wnzbdsxx4i54dpxpklydmbsqpilnv1v";
|
2016-02-19 21:48:42 +00:00
|
|
|
};
|
|
|
|
|
2019-05-31 02:18:05 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ nettle ];
|
|
|
|
|
2016-02-19 21:48:42 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://lib.filezilla-project.org/;
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|