augeas: 1.5.0 -> 1.7.0

This commit is contained in:
ndowens 2017-03-01 13:38:11 -06:00
parent 61785c5531
commit d9bc414521

View File

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