depot/third_party/nixpkgs/pkgs/tools/system/augeas/default.nix
Default email 6d4aeb4377 Project import generated by Copybara.
GitOrigin-RevId: 0f213d0fee84280d8c3a97f7469b988d6fe5fcdf
2023-01-11 08:51:40 +01:00

24 lines
677 B
Nix

{ lib, stdenv, fetchurl, pkg-config, readline, libxml2 }:
stdenv.mkDerivation rec {
pname = "augeas";
version = "1.12.0";
src = fetchurl {
url = "http://download.augeas.net/${pname}-${version}.tar.gz";
sha256 = "11ybhb13wkkilsn7b416a1dn61m1xrq0lbdpkhp5w61jrk4l469j";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ readline libxml2 ];
enableParallelBuilding = true;
meta = with lib; {
description = "Configuration editing tool";
license = licenses.lgpl21Only;
homepage = "https://augeas.net/";
changelog = "https://augeas.net/news.html";
maintainers = with maintainers; [ offline ];
platforms = platforms.unix;
};
}