libfilezilla: 0.16.0 -> 0.17.1

wip/yesman
xrelkd 5 years ago
parent 95395fbf54
commit df3ae76dfd
  1. 17
      pkgs/development/libraries/libfilezilla/default.nix

@ -1,19 +1,26 @@
{ stdenv, fetchurl, pkgconfig, nettle }:
{ stdenv
, fetchurl
, gettext
, gnutls
, nettle
, pkgconfig
}:
stdenv.mkDerivation rec {
pname = "libfilezilla";
version = "0.16.0";
version = "0.17.1";
src = fetchurl {
url = "https://download.filezilla-project.org/${pname}/${pname}-${version}.tar.bz2";
sha256 = "1fd71vmllzvljff5l5ka5wnzbdsxx4i54dpxpklydmbsqpilnv1v";
sha256 = "1cnkcl9vif5lz1yx813qrphlpc6gvmzxdmkbd17kh5jqiqdi9vyk";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ nettle ];
buildInputs = [ gettext gnutls nettle ];
meta = with stdenv.lib; {
homepage = https://lib.filezilla-project.org/;
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 ];

Loading…
Cancel
Save