nixpkgs/pkgs/development/libraries/libfilezilla/default.nix
2017-11-09 08:47:28 +01:00

20 lines
613 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libfilezilla-${version}";
version = "0.11.1";
src = fetchurl {
url = "http://download.filezilla-project.org/libfilezilla/${name}.tar.bz2";
sha256 = "1xv4is3zaz66h6iblj9pikapsjasjcbxx31bhkgn62xdq1sadfpc";
};
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;
};
}