nixpkgs/pkgs/tools/security/aide/default.nix

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

30 lines
832 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, flex, bison, libmhash, zlib, acl, attr, libselinux, pcre2, pkg-config, libgcrypt }:
2017-05-23 00:57:32 +00:00
stdenv.mkDerivation rec {
pname = "aide";
version = "0.18.6";
src = fetchurl {
url = "https://github.com/aide/aide/releases/download/v${version}/${pname}-${version}.tar.gz";
sha256 = "sha256-j/Ns5H030MyYd2LV2WE0bUdd50u6ihgy/QBttu3TwQ4=";
};
buildInputs = [ flex bison libmhash zlib acl attr libselinux pcre2 libgcrypt ];
nativeBuildInputs = [ pkg-config ];
configureFlags = [
"--with-posix-acl"
"--with-selinux"
"--with-xattr"
];
meta = with lib; {
2020-10-19 18:58:07 +00:00
homepage = "https://aide.github.io/";
description = "A file and directory integrity checker";
2020-10-19 18:58:07 +00:00
license = licenses.gpl2Plus;
2023-11-19 09:20:08 +00:00
maintainers = with maintainers; [ happysalada ];
platforms = platforms.linux;
};
}