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

22 lines
592 B
Nix
Raw Normal View History

2014-11-06 02:25:39 -08:00
{ stdenv, fetchurl, pkgconfig, readline, libxml2 }:
stdenv.mkDerivation rec {
name = "augeas-${version}";
2017-03-21 18:29:47 -07:00
version = "1.8.0";
2014-11-06 02:25:39 -08:00
src = fetchurl {
url = "http://download.augeas.net/${name}.tar.gz";
2017-03-21 18:29:47 -07:00
sha256 = "1iac5lwi1q10r343ii9v5p2fdplvh06yv9svsi8zz6cd2c2fjp2i";
2014-11-06 02:25:39 -08:00
};
2017-03-01 11:38:11 -08:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ readline libxml2 ];
2014-11-06 02:25:39 -08:00
meta = with stdenv.lib; {
2015-04-28 01:54:58 -07:00
description = "Configuration editing tool";
2014-11-06 02:25:39 -08:00
license = licenses.lgpl2;
homepage = http://augeas.net/;
2017-03-01 11:38:11 -08:00
maintainers = with maintainers; [ offline ndowens ];
platforms = platforms.unix;
2014-11-06 02:25:39 -08:00
};
}