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

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

29 lines
729 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, flex, bison, libmhash, zlib, acl, attr, libselinux, pcre }:
2017-05-23 02:57:32 +02:00
stdenv.mkDerivation rec {
pname = "aide";
2022-01-23 21:54:27 +01:00
version = "0.17.4";
src = fetchurl {
url = "https://github.com/aide/aide/releases/download/v${version}/${pname}-${version}.tar.gz";
2022-01-23 21:54:27 +01:00
sha256 = "sha256-yBUFJG8//C52A21Dp3ISroKJW1iB2bniXBNhsam3qEY=";
};
2017-05-23 02:57:32 +02:00
buildInputs = [ flex bison libmhash zlib acl attr libselinux pcre ];
configureFlags = [
"--with-posix-acl"
"--with-selinux"
"--with-xattr"
];
meta = with lib; {
2020-10-19 20:58:07 +02:00
homepage = "https://aide.github.io/";
description = "A file and directory integrity checker";
2020-10-19 20:58:07 +02:00
license = licenses.gpl2Plus;
maintainers = [ ];
platforms = platforms.linux;
};
}