2014-11-06 10:25:39 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, readline, libxml2 }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "augeas-${version}";
|
2018-02-06 14:19:01 +00:00
|
|
|
version = "1.10.1";
|
2014-11-06 10:25:39 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://download.augeas.net/${name}.tar.gz";
|
2018-02-06 14:19:01 +00:00
|
|
|
sha256 = "0k9nssn7lk58cl5zv3c8kv2zx9cm2yks3sj7q4fd6qdjz9m2bnsj";
|
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;
|
|
|
|
homepage = http://augeas.net/;
|
2017-03-01 19:38:11 +00:00
|
|
|
maintainers = with maintainers; [ offline ndowens ];
|
2015-11-17 20:29:29 +00:00
|
|
|
platforms = platforms.unix;
|
2014-11-06 10:25:39 +00:00
|
|
|
};
|
|
|
|
}
|