3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/libfilezilla/default.nix
2016-02-25 19:57:39 +01:00

20 lines
624 B
Nix

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