2016-02-19 21:48:42 +00:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libfilezilla-${version}";
|
2018-01-07 16:07:06 +00:00
|
|
|
version = "0.11.2";
|
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";
|
2018-01-07 16:07:06 +00:00
|
|
|
sha256 = "0wl42yxrha633dbh1vcbhrpsd7sv4zwskbmlpx549ygnzi39krcn";
|
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;
|
|
|
|
};
|
|
|
|
}
|