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