lol
1{ fetchFromGitHub, stdenv, autoconf, automake, libtool }:
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 buildInputs = [ autoconf automake libtool ];
15
16 preConfigure = "autoreconf --install";
17
18 meta = with stdenv.lib; {
19 description = "A configuration parser library";
20 maintainers = with maintainers; [ pSub ];
21 homepage = http://www.azzit.de/dotconf/;
22 license = licenses.lgpl21Plus;
23 };
24}