nixpkgs/pkgs/tools/system/augeas/default.nix
2017-03-21 20:29:47 -05:00

22 lines
592 B
Nix

{ stdenv, fetchurl, pkgconfig, readline, libxml2 }:
stdenv.mkDerivation rec {
name = "augeas-${version}";
version = "1.8.0";
src = fetchurl {
url = "http://download.augeas.net/${name}.tar.gz";
sha256 = "1iac5lwi1q10r343ii9v5p2fdplvh06yv9svsi8zz6cd2c2fjp2i";
};
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;
};
}