summary refs log tree commit diff
path: root/pkgs/tools/system/augeas/default.nix
blob: e6b09932f867a893656346aec11b13b362d366a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;
  };
}