2017-07-15 10:39:56 +01:00
|
|
|
{ stdenv, fetchurl, libtool }:
|
2014-11-20 14:30:33 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2017-01-14 15:49:57 +00:00
|
|
|
name = "getdata-${version}";
|
2017-07-15 10:39:56 +01:00
|
|
|
version = "0.10.0";
|
2014-11-20 14:30:33 +00:00
|
|
|
src = fetchurl {
|
2017-01-14 15:49:57 +00:00
|
|
|
url = "mirror://sourceforge/getdata/${name}.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 ];
|
|
|
|
homepage = http://getdata.sourceforge.net/;
|
|
|
|
};
|
|
|
|
}
|