mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
e6f1253c05
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/augeas/versions
22 lines
593 B
Nix
22 lines
593 B
Nix
{ stdenv, fetchurl, pkgconfig, readline, libxml2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "augeas-${version}";
|
|
version = "1.12.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.augeas.net/${name}.tar.gz";
|
|
sha256 = "11ybhb13wkkilsn7b416a1dn61m1xrq0lbdpkhp5w61jrk4l469j";
|
|
};
|
|
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;
|
|
};
|
|
}
|