about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/dotconf
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/dotconf')
-rw-r--r--nixpkgs/pkgs/development/libraries/dotconf/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/dotconf/default.nix b/nixpkgs/pkgs/development/libraries/dotconf/default.nix
new file mode 100644
index 000000000000..f6320a64374c
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/dotconf/default.nix
@@ -0,0 +1,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;
+  };
+}