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

22 lines
556 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}";
2016-06-10 02:23:44 +00:00
version = "1.5.0";
2014-11-06 10:25:39 +00:00
src = fetchurl {
url = "http://download.augeas.net/${name}.tar.gz";
2016-06-10 02:23:44 +00:00
sha256 = "0gzpafrflkr0incq58vjkabfncrpc97d7mdgglkr57iyzvkbcfr2";
2014-11-06 10:25:39 +00:00
};
buildInputs = [ pkgconfig readline libxml2 ];
meta = with stdenv.lib; {
2015-04-28 08:54:58 +00: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 = platforms.unix;
2014-11-06 10:25:39 +00:00
};
}