mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
21 lines
592 B
Nix
21 lines
592 B
Nix
{ stdenv, fetchurl, pkgconfig, readline, libxml2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "augeas-${version}";
|
|
version = "1.8.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.augeas.net/${name}.tar.gz";
|
|
sha256 = "1iac5lwi1q10r343ii9v5p2fdplvh06yv9svsi8zz6cd2c2fjp2i";
|
|
};
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ readline libxml2 ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Configuration editing tool";
|
|
license = licenses.lgpl2;
|
|
homepage = http://augeas.net/;
|
|
maintainers = with maintainers; [ offline ndowens ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|