summary refs log tree commit diff
path: root/pkgs/tools/system/augeas
diff options
context:
space:
mode:
authorJaka Hudoklin <jakahudoklin@gmail.com>2014-11-06 11:25:39 +0100
committerJaka Hudoklin <jakahudoklin@gmail.com>2014-11-09 14:32:08 +0100
commitcc3ba830554598c955a650aa3fc82ba57b8e9080 (patch)
tree50f2f2592f1f61a53ccd60cc0e3938b6b26668cb /pkgs/tools/system/augeas
parent57a84615c62741957cdc9bc9c80bf07523a85341 (diff)
downloadnixpkgs-cc3ba830554598c955a650aa3fc82ba57b8e9080.tar
nixpkgs-cc3ba830554598c955a650aa3fc82ba57b8e9080.tar.gz
nixpkgs-cc3ba830554598c955a650aa3fc82ba57b8e9080.tar.bz2
nixpkgs-cc3ba830554598c955a650aa3fc82ba57b8e9080.tar.lz
nixpkgs-cc3ba830554598c955a650aa3fc82ba57b8e9080.tar.xz
nixpkgs-cc3ba830554598c955a650aa3fc82ba57b8e9080.tar.zst
nixpkgs-cc3ba830554598c955a650aa3fc82ba57b8e9080.zip
Add augeas, configuration editing tool
Diffstat (limited to 'pkgs/tools/system/augeas')
-rw-r--r--pkgs/tools/system/augeas/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/tools/system/augeas/default.nix b/pkgs/tools/system/augeas/default.nix
new file mode 100644
index 00000000000..e6b09932f86
--- /dev/null
+++ b/pkgs/tools/system/augeas/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchurl, pkgconfig, readline, libxml2 }:
+
+stdenv.mkDerivation rec {
+  name = "augeas-${version}";
+  version = "1.2.0";
+
+  src = fetchurl {
+    url = "http://download.augeas.net/${name}.tar.gz";
+    sha256 = "1q41yilxc0nvjz5h9phm38k2b73k2v0b9jg11y92228bps7b5bpl";
+  };
+
+  buildInputs = [ pkgconfig readline libxml2 ];
+
+  meta = with stdenv.lib; {
+    description = "Configuration editing tool.";
+    license = licenses.lgpl2;
+    homepage = http://augeas.net/;
+    maintainers = with maintainers; [offline];
+    platforms = with platforms; unix;
+  };
+}