libfilezilla: 0.16.0 -> 0.17.1
This commit is contained in:
parent
95395fbf54
commit
df3ae76dfd
@ -1,19 +1,26 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, nettle }:
|
{ stdenv
|
||||||
|
, fetchurl
|
||||||
|
|
||||||
|
, gettext
|
||||||
|
, gnutls
|
||||||
|
, nettle
|
||||||
|
, pkgconfig
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "libfilezilla";
|
pname = "libfilezilla";
|
||||||
version = "0.16.0";
|
version = "0.17.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://download.filezilla-project.org/${pname}/${pname}-${version}.tar.bz2";
|
url = "https://download.filezilla-project.org/${pname}/${pname}-${version}.tar.bz2";
|
||||||
sha256 = "1fd71vmllzvljff5l5ka5wnzbdsxx4i54dpxpklydmbsqpilnv1v";
|
sha256 = "1cnkcl9vif5lz1yx813qrphlpc6gvmzxdmkbd17kh5jqiqdi9vyk";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ nettle ];
|
buildInputs = [ gettext gnutls nettle ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
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";
|
description = "A modern C++ library, offering some basic functionality to build high-performing, platform-independent programs";
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
maintainers = with maintainers; [ pSub ];
|
maintainers = with maintainers; [ pSub ];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user