2017-07-15 02:39:56 -07:00
|
|
|
{ stdenv, fetchurl, libtool }:
|
2014-11-20 06:30:33 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "getdata";
|
2017-07-15 02:39:56 -07:00
|
|
|
version = "0.10.0";
|
2014-11-20 06:30:33 -08:00
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "mirror://sourceforge/getdata/${pname}-${version}.tar.xz";
|
2017-07-15 02:39:56 -07:00
|
|
|
sha256 = "18xbb32vygav9x6yz0gdklif4chjskmkgp06rwnjdf9myhia0iym";
|
2014-11-20 06:30:33 -08:00
|
|
|
};
|
|
|
|
|
2017-07-15 02:39:56 -07:00
|
|
|
buildInputs = [ libtool ];
|
|
|
|
|
2014-11-20 06:30:33 -08:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Reference implementation of the Dirfile Standards";
|
|
|
|
license = licenses.lgpl21Plus;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = [ maintainers.vbgl ];
|
|
|
|
homepage = http://getdata.sourceforge.net/;
|
|
|
|
};
|
|
|
|
}
|