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