summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/system/augeas/default.nix
blob: d026ce05a77c1a44567835feab3423c4f9309de6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ 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 ];

  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;
  };
}