at 17.09-beta 19 lines 551 B view raw
1{ stdenv, fetchurl, libtool }: 2stdenv.mkDerivation rec { 3 name = "getdata-${version}"; 4 version = "0.10.0"; 5 src = fetchurl { 6 url = "mirror://sourceforge/getdata/${name}.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}