about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/dotconf/default.nix
blob: a2b2e08fd6226be252e9a3360224c0c8d01992bc (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, autoreconfHook }:

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

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

  nativeBuildInputs = [ autoreconfHook ];
  buildInputs = [ ];

  meta = with stdenv.lib; {
    description = "A configuration parser library";
    maintainers = with maintainers; [ pSub ];
    homepage = https://github.com/williamh/dotconf;
    license = licenses.lgpl21Plus;
    platforms = with platforms; unix;
  };
}