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