Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / dotconf / default.nix
blobfed050f64b6ef384d2b85c72c00f32ebbeb085d7
1 { fetchFromGitHub, lib, stdenv, autoreconfHook }:
3 stdenv.mkDerivation rec {
4   pname = "dotconf";
5   version = "1.3";
7   src = fetchFromGitHub {
8     owner = "williamh";
9     repo = "dotconf";
10     rev = "v${version}";
11     sha256 = "1sc95hw5k2xagpafny0v35filmcn05k1ds5ghkldfpf6xw4hakp7";
12   };
14   nativeBuildInputs = [ autoreconfHook ];
15   buildInputs = [ ];
17   meta = with lib; {
18     description = "A configuration parser library";
19     maintainers = with maintainers; [ pSub ];
20     homepage = "https://github.com/williamh/dotconf";
21     license = licenses.lgpl21Plus;
22     platforms = with platforms; unix;
23   };