3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/system/augeas/default.nix

22 lines
562 B
Nix
Raw Normal View History

2014-11-06 10:25:39 +00:00
{ stdenv, fetchurl, pkgconfig, readline, libxml2 }:
stdenv.mkDerivation rec {
name = "augeas-${version}";
version = "1.2.0";
src = fetchurl {
url = "http://download.augeas.net/${name}.tar.gz";
sha256 = "1q41yilxc0nvjz5h9phm38k2b73k2v0b9jg11y92228bps7b5bpl";
};
buildInputs = [ pkgconfig readline libxml2 ];
meta = with stdenv.lib; {
2015-04-28 09:54:58 +01:00
description = "Configuration editing tool";
2014-11-06 10:25:39 +00:00
license = licenses.lgpl2;
homepage = http://augeas.net/;
maintainers = with maintainers; [offline];
platforms = with platforms; unix;
};
}