Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-16.03 19 lines 624 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "libfilezilla-${version}"; 5 version = "0.5.3"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/project/filezilla/libfilezilla/${version}/${name}.tar.bz2"; 9 sha256 = "05z9d2pi8n8yl3dbwg2nw6bcvi0zzc9hkammm1mayfh7h4akqc0i"; 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}