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

20 lines
612 B
Nix
Raw Normal View History

2016-02-19 22:48:42 +01:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libfilezilla-${version}";
2017-03-13 22:17:08 +01:00
version = "0.9.1";
2016-02-19 22:48:42 +01:00
src = fetchurl {
2016-11-19 22:02:59 +01:00
url = "http://download.filezilla-project.org/libfilezilla/${name}.tar.bz2";
2017-03-13 22:17:08 +01:00
sha256 = "06ivj40bk5b76a36zwhnwqvg564hgccncnn5nb5cqc7kf4bkkchq";
2016-02-19 22:48:42 +01: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;
};
}