nixpkgs/pkgs/development/libraries/libfilezilla/default.nix
R. RyanTM c1275d42c5 libfilezilla: 0.17.1 -> 0.18.0
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-04 10:44:51 -07:00

30 lines
737 B
Nix

{ stdenv
, fetchurl
, gettext
, gnutls
, nettle
, pkgconfig
}:
stdenv.mkDerivation rec {
pname = "libfilezilla";
version = "0.18.0";
src = fetchurl {
url = "https://download.filezilla-project.org/${pname}/${pname}-${version}.tar.bz2";
sha256 = "0g4zbyvnxs4db3l5pqazyk42ahvwdqfz2222dbkl8zygblxncyjp";
};
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;
};
}