nixpkgs/pkgs/tools/system/augeas/default.nix
R. RyanTM 07d33b0024 augeas: 1.10.1 -> 1.11.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
augeas
2018-08-30 23:09:50 -07:00

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;
};
}