summary refs log tree commit diff
path: root/pkgs/development/libraries/dotconf/default.nix
blob: 61a85c7cd6073984ecfa3bcafcf133a3b480ece2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ fetchFromGitHub, stdenv, autoreconfHook }:

stdenv.mkDerivation rec {
  name = "dotconf-" + version;
  version = "1.3";

  src = fetchFromGitHub {
    owner = "williamh";
    repo = "dotconf";
    rev = "v${version}";
    sha256 = "1sc95hw5k2xagpafny0v35filmcn05k1ds5ghkldfpf6xw4hakp7";
  };

  buildInputs = [ autoreconfHook ];

  meta = with stdenv.lib; {
    description = "A configuration parser library";
    maintainers = with maintainers; [ pSub ];
    homepage = http://www.azzit.de/dotconf/;
    license = licenses.lgpl21Plus;
    platforms = with platforms; unix;
  };
}