nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 stdenv,
4 fetchFromGitHub,
5 autoreconfHook,
6 libtool,
7}:
8stdenv.mkDerivation (finalAttrs: {
9 pname = "getdata";
10 version = "0.11.0";
11 src = fetchFromGitHub {
12 owner = "ketiltrout";
13 repo = "getdata";
14 rev = "v${finalAttrs.version}";
15 sha256 = "sha256-fuFakbkxDwDp6Z9VITPIB8NiYRSp98Ub1y5SC6W5S1E=";
16 };
17
18 nativeBuildInputs = [ autoreconfHook ];
19 buildInputs = [ libtool ];
20
21 meta = {
22 description = "Reference implementation of the Dirfile Standards";
23 license = lib.licenses.lgpl21Plus;
24 platforms = lib.platforms.all;
25 maintainers = [ lib.maintainers.vbgl ];
26 homepage = "https://getdata.sourceforge.net/";
27 };
28})