nixpkgs/pkgs/development/libraries/libfilezilla/default.nix

20 lines
613 B
Nix
Raw Normal View History

2016-02-19 21:48:42 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libfilezilla-${version}";
version = "0.13.0";
2016-02-19 21:48:42 +00:00
src = fetchurl {
2016-11-19 21:02:59 +00:00
url = "http://download.filezilla-project.org/libfilezilla/${name}.tar.bz2";
sha256 = "0sk8kz2zrvf7kp9jrp3l4rpipv4xh0hg8d4h734xyag7vd03rjpz";
2016-02-19 21:48:42 +00:00
};
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;
};
}