nixpkgs/pkgs/tools/system/augeas/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
677 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, readline, libxml2 }:
2014-11-06 11:25:39 +01:00
stdenv.mkDerivation rec {
pname = "augeas";
version = "1.12.0";
2014-11-06 11:25:39 +01:00
src = fetchurl {
url = "http://download.augeas.net/${pname}-${version}.tar.gz";
sha256 = "11ybhb13wkkilsn7b416a1dn61m1xrq0lbdpkhp5w61jrk4l469j";
2014-11-06 11:25:39 +01:00
};
nativeBuildInputs = [ pkg-config ];
2017-03-01 20:38:11 +01:00
buildInputs = [ readline libxml2 ];
2014-11-06 11:25:39 +01:00
enableParallelBuilding = true;
meta = with lib; {
2015-04-28 10:54:58 +02:00
description = "Configuration editing tool";
license = licenses.lgpl21Only;
2022-12-02 12:16:33 +01:00
homepage = "https://augeas.net/";
2023-01-11 23:02:18 +01:00
changelog = "https://augeas.net/news.html";
2019-12-26 22:28:10 +01:00
maintainers = with maintainers; [ offline ];
platforms = platforms.unix;
2014-11-06 11:25:39 +01:00
};
}