nixpkgs/pkgs/tools/system/augeas/default.nix
R. RyanTM e6f1253c05 augeas: 1.11.0 -> 1.12.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/augeas/versions
2019-04-27 07:42:05 +02:00

22 lines
593 B
Nix

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