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

stdenv.mkDerivation rec {
  pname = "dotconf";
  version = "1.3";

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

  nativeBuildInputs = [ autoreconfHook ];
  buildInputs = [ ];

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