1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00
nixpkgs/pkgs/tools/system/augeas/default.nix

22 lines
592 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.8.1";
2014-11-06 10:25:39 +00:00
src = fetchurl {
url = "http://download.augeas.net/${name}.tar.gz";
sha256 = "1yf93fqwav1zsl8dpyfkf0g11w05mmfckqy6qsjy5zkklnspbkv5";
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 09:54:58 +01: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 ];
platforms = platforms.unix;
2014-11-06 10:25:39 +00:00
};
}