2017-05-23 01:57:32 +01:00
|
|
|
{ stdenv, fetchurl, flex, bison, libmhash, zlib, acl, attr, libselinux, pcre }:
|
|
|
|
|
2014-10-23 00:29:14 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "aide-${version}";
|
2019-06-01 04:29:11 +01:00
|
|
|
version = "0.16.2";
|
2014-10-23 00:29:14 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-03-09 12:33:11 +00:00
|
|
|
url = "https://github.com/aide/aide/releases/download/v${version}/${name}.tar.gz";
|
2019-06-01 04:29:11 +01:00
|
|
|
sha256 = "15xp47sz7kk1ciffw3f5xw2jg2mb2lqrbr3q6p4bkbz5dap9iy8p";
|
2014-10-23 00:29:14 +01:00
|
|
|
};
|
|
|
|
|
2017-05-23 01:57:32 +01:00
|
|
|
buildInputs = [ flex bison libmhash zlib acl attr libselinux pcre ];
|
2014-10-23 00:29:14 +01:00
|
|
|
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-posix-acl"
|
|
|
|
"--with-selinux"
|
|
|
|
"--with-xattr"
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://aide.sourceforge.net/;
|
2015-04-30 16:05:14 +01:00
|
|
|
description = "A file and directory integrity checker";
|
2014-10-23 00:29:14 +01:00
|
|
|
license = licenses.free;
|
|
|
|
maintainers = [ maintainers.tstrobel ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|