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

29 lines
748 B
Nix
Raw Normal View History

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