2014-11-06 10:25:39 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, readline, libxml2 }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "augeas";
|
2019-04-14 07:37:07 +00:00
|
|
|
version = "1.12.0";
|
2014-11-06 10:25:39 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "http://download.augeas.net/${pname}-${version}.tar.gz";
|
2019-04-14 07:37:07 +00:00
|
|
|
sha256 = "11ybhb13wkkilsn7b416a1dn61m1xrq0lbdpkhp5w61jrk4l469j";
|
2014-11-06 10:25:39 +00:00
|
|
|
};
|
2017-03-01 19:38:11 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ readline libxml2 ];
|
2014-11-06 10:25:39 +00:00
|
|
|
|
|
|
|
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;
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://augeas.net/";
|
2019-12-26 21:28:10 +00:00
|
|
|
maintainers = with maintainers; [ offline ];
|
2015-11-17 20:29:29 +00:00
|
|
|
platforms = platforms.unix;
|
2014-11-06 10:25:39 +00:00
|
|
|
};
|
|
|
|
}
|