nixpkgs/pkgs/tools/system/augeas/default.nix

22 lines
593 B
Nix

{ stdenv, fetchurl, pkgconfig, readline, libxml2 }:
stdenv.mkDerivation rec {
name = "augeas-${version}";
version = "1.11.0";
src = fetchurl {
url = "http://download.augeas.net/${name}.tar.gz";
sha256 = "1c507qj6dfn2dnsl27w94zs9r45xrgm07y8bqba9ry2s0psfhg1r";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ readline libxml2 ];
meta = with stdenv.lib; {
description = "Configuration editing tool";
license = licenses.lgpl2;
homepage = http://augeas.net/;
maintainers = with maintainers; [ offline ndowens ];
platforms = platforms.unix;
};
}