tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
Add augeas, configuration editing tool
Jaka Hudoklin
11 years ago
cc3ba830
57a84615
+23
2 changed files
expand all
collapse all
unified
split
pkgs
tools
system
augeas
default.nix
top-level
all-packages.nix
+21
pkgs/tools/system/augeas/default.nix
···
1
1
+
{ stdenv, fetchurl, pkgconfig, readline, libxml2 }:
2
2
+
3
3
+
stdenv.mkDerivation rec {
4
4
+
name = "augeas-${version}";
5
5
+
version = "1.2.0";
6
6
+
7
7
+
src = fetchurl {
8
8
+
url = "http://download.augeas.net/${name}.tar.gz";
9
9
+
sha256 = "1q41yilxc0nvjz5h9phm38k2b73k2v0b9jg11y92228bps7b5bpl";
10
10
+
};
11
11
+
12
12
+
buildInputs = [ pkgconfig readline libxml2 ];
13
13
+
14
14
+
meta = with stdenv.lib; {
15
15
+
description = "Configuration editing tool.";
16
16
+
license = licenses.lgpl2;
17
17
+
homepage = http://augeas.net/;
18
18
+
maintainers = with maintainers; [offline];
19
19
+
platforms = with platforms; unix;
20
20
+
};
21
21
+
}
+2
pkgs/top-level/all-packages.nix
···
4283
4283
4284
4284
### DEVELOPMENT / TOOLS
4285
4285
4286
4286
+
augeas = callPackage ../tools/system/augeas { };
4287
4287
+
4286
4288
ansible = callPackage ../tools/system/ansible { };
4287
4289
4288
4290
antlr = callPackage ../development/tools/parsing/antlr/2.7.7.nix { };