summary refs log tree commit diff
path: root/pkgs/development/libraries/dotconf/default.nix
blob: 74e4b6c5666dbe804ef123ef244e2cfc2fb5f4a5 (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
24
{ fetchFromGitHub, stdenv, autoconf, automake, libtool }:

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

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

  buildInputs = [ autoconf automake libtool ];

  preConfigure = "autoreconf --install";

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