1{ fetchFromGitHub, stdenv, autoreconfHook }:
2
3stdenv.mkDerivation rec {
4 name = "dotconf-" + version;
5 version = "1.3";
6
7 src = fetchFromGitHub {
8 owner = "williamh";
9 repo = "dotconf";
10 rev = "v${version}";
11 sha256 = "1sc95hw5k2xagpafny0v35filmcn05k1ds5ghkldfpf6xw4hakp7";
12 };
13
14 nativeBuildInputs = [ autoreconfHook ];
15 buildInputs = [ ];
16
17 meta = with stdenv.lib; {
18 description = "A configuration parser library";
19 maintainers = with maintainers; [ pSub ];
20 homepage = https://github.com/williamh/dotconf;
21 license = licenses.lgpl21Plus;
22 platforms = with platforms; unix;
23 };
24}