2021-11-28 11:05:27 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, libtool }:
|
2014-11-20 14:30:33 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "getdata";
|
2021-11-28 11:05:27 +00:00
|
|
|
version = "0.11.0";
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ketiltrout";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "sha256-fuFakbkxDwDp6Z9VITPIB8NiYRSp98Ub1y5SC6W5S1E=";
|
2014-11-20 14:30:33 +00:00
|
|
|
};
|
|
|
|
|
2021-11-28 11:05:27 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2017-07-15 09:39:56 +00:00
|
|
|
buildInputs = [ libtool ];
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2014-11-20 14:30:33 +00:00
|
|
|
description = "Reference implementation of the Dirfile Standards";
|
|
|
|
license = licenses.lgpl21Plus;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = [ maintainers.vbgl ];
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://getdata.sourceforge.net/";
|
2014-11-20 14:30:33 +00:00
|
|
|
};
|
|
|
|
}
|