1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 name = "libfilezilla-${version}";
5 version = "0.4.0";
6
7 src = fetchurl {
8 url = "mirror://sourceforge/project/filezilla/libfilezilla/${version}/${name}.tar.bz2";
9 sha256 = "1l7rih17nzy75zf5h8mx5x38jbl9kxyxpr0ib6nn2615fw92xxgj";
10 };
11
12 meta = with stdenv.lib; {
13 homepage = https://lib.filezilla-project.org/;
14 description = "A modern C++ library, offering some basic functionality to build high-performing, platform-independent programs";
15 license = licenses.gpl2Plus;
16 maintainers = with maintainers; [ pSub ];
17 platforms = platforms.linux;
18 };
19}