Add augeas, configuration editing tool

+23
+21
pkgs/tools/system/augeas/default.nix
··· 1 + { stdenv, fetchurl, pkgconfig, readline, libxml2 }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "augeas-${version}"; 5 + version = "1.2.0"; 6 + 7 + src = fetchurl { 8 + url = "http://download.augeas.net/${name}.tar.gz"; 9 + sha256 = "1q41yilxc0nvjz5h9phm38k2b73k2v0b9jg11y92228bps7b5bpl"; 10 + }; 11 + 12 + buildInputs = [ pkgconfig readline libxml2 ]; 13 + 14 + meta = with stdenv.lib; { 15 + description = "Configuration editing tool."; 16 + license = licenses.lgpl2; 17 + homepage = http://augeas.net/; 18 + maintainers = with maintainers; [offline]; 19 + platforms = with platforms; unix; 20 + }; 21 + }
+2
pkgs/top-level/all-packages.nix
··· 4283 4283 4284 4284 ### DEVELOPMENT / TOOLS 4285 4285 4286 + augeas = callPackage ../tools/system/augeas { }; 4287 + 4286 4288 ansible = callPackage ../tools/system/ansible { }; 4287 4289 4288 4290 antlr = callPackage ../development/tools/parsing/antlr/2.7.7.nix { };