libfilezilla: init at 0.3.1

This commit is contained in:
Pascal Wittmann 2016-02-19 22:48:42 +01:00
parent 5ea21d69f5
commit 94a401258d
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,19 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libfilezilla-${version}";
version = "0.3.1";
src = fetchurl {
url = "mirror://sourceforge/project/filezilla/libfilezilla/${version}/${name}.tar.bz2";
sha256 = "1vshy00bz9l5nzphkxpd35plcfcrz2wha5qiic7mx5yywafdxbd4";
};
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;
};
}

View File

@ -7336,6 +7336,8 @@ let
libfakekey = callPackage ../development/libraries/libfakekey { };
libfilezilla = callPackage ../development/libraries/libfilezilla { };
libfm = callPackage ../development/libraries/libfm { };
libfm-extra = callPackage ../development/libraries/libfm {
extraOnly = true;