Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 19 lines 555 B view raw
1{ stdenv, fetchurl, libtool }: 2stdenv.mkDerivation rec { 3 pname = "getdata"; 4 version = "0.10.0"; 5 src = fetchurl { 6 url = "mirror://sourceforge/getdata/${pname}-${version}.tar.xz"; 7 sha256 = "18xbb32vygav9x6yz0gdklif4chjskmkgp06rwnjdf9myhia0iym"; 8 }; 9 10 buildInputs = [ libtool ]; 11 12 meta = with stdenv.lib; { 13 description = "Reference implementation of the Dirfile Standards"; 14 license = licenses.lgpl21Plus; 15 platforms = platforms.all; 16 maintainers = [ maintainers.vbgl ]; 17 homepage = "http://getdata.sourceforge.net/"; 18 }; 19}