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