1{ lib, stdenv, fetchFromGitHub, autoreconfHook, libtool }:
2stdenv.mkDerivation rec {
3 pname = "getdata";
4 version = "0.11.0";
5 src = fetchFromGitHub {
6 owner = "ketiltrout";
7 repo = pname;
8 rev = "v${version}";
9 sha256 = "sha256-fuFakbkxDwDp6Z9VITPIB8NiYRSp98Ub1y5SC6W5S1E=";
10 };
11
12 nativeBuildInputs = [ autoreconfHook ];
13 buildInputs = [ libtool ];
14
15 meta = with lib; {
16 description = "Reference implementation of the Dirfile Standards";
17 license = licenses.lgpl21Plus;
18 platforms = platforms.all;
19 maintainers = [ maintainers.vbgl ];
20 homepage = "https://getdata.sourceforge.net/";
21 };
22}