nixpkgs/pkgs/development/libraries/libfilezilla/default.nix
R. RyanTM 9641dcddf8 libfilezilla: 0.18.0 -> 0.18.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/libfilezilla/versions
2019-08-19 09:02:51 -07:00

30 lines
737 B
Nix

{ stdenv
, fetchurl
, gettext
, gnutls
, nettle
, pkgconfig
}:
stdenv.mkDerivation rec {
pname = "libfilezilla";
version = "0.18.1";
src = fetchurl {
url = "https://download.filezilla-project.org/${pname}/${pname}-${version}.tar.bz2";
sha256 = "15vzi95ibp6a9n4jjfs78z4b1iym8x1yv849gjipxzx64y5awyyb";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gettext gnutls nettle ];
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;
};
}