1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 name = "libfilezilla-${version}";
5 version = "0.12.1";
6
7 src = fetchurl {
8 url = "http://download.filezilla-project.org/libfilezilla/${name}.tar.bz2";
9 sha256 = "1gbqm42dd0m3fvqz3bk53889479dvn8679zp6ba8a9q2br2wkvv0";
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}