mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 12:53:05 +00:00
146ee44c70
Without specifying otherwise, aide will look in $out/etc for its configuration file and database. Since this is immutable, changing it to /etc allows it to be usable.
32 lines
880 B
Nix
32 lines
880 B
Nix
{ lib, stdenv, fetchurl, flex, bison, libmhash, zlib, acl, attr, libselinux, pcre2, pkg-config, libgcrypt }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "aide";
|
|
version = "0.18.8";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/aide/aide/releases/download/v${version}/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-FmYtxjLRfixWMLgBdS+XkSqOIml8Bl694XXxzDe4OmA=";
|
|
};
|
|
|
|
buildInputs = [ flex bison libmhash zlib acl attr libselinux pcre2 libgcrypt ];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
configureFlags = [
|
|
"--with-posix-acl"
|
|
"--with-selinux"
|
|
"--with-xattr"
|
|
"--sysconfdir=/etc"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://aide.github.io/";
|
|
description = "File and directory integrity checker";
|
|
mainProgram = "aide";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ happysalada ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|