1{ stdenv, fetchurl }:
2stdenv.mkDerivation rec {
3 name = "getdata-0.8.9";
4 src = fetchurl {
5 url = "mirror://sourceforge/getdata/${name}.tar.bz2";
6 sha256 = "1cgwrflpp9ia2cwnhmwp45nmsg15ymjh03pysrfigyfmag94ac51";
7 };
8
9 meta = with stdenv.lib; {
10 description = "Reference implementation of the Dirfile Standards";
11 license = licenses.lgpl21Plus;
12 platforms = platforms.all;
13 maintainers = [ maintainers.vbgl ];
14 homepage = http://getdata.sourceforge.net/;
15 };
16}