1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-18 19:26:02 +00:00
nixpkgs/pkgs/development/libraries/libfilezilla/default.nix

20 lines
612 B
Nix
Raw Normal View History

2016-02-19 21:48:42 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libfilezilla-${version}";
2016-12-13 20:58:37 +00:00
version = "0.9.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";
2016-12-13 20:58:37 +00:00
sha256 = "0340v5xs48f28q2d16ldb9359dkzlhl4l449mgyv3qabnlz2pl21";
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;
};
}