nixpkgs/pkgs/tools/security/aide/default.nix
Joachim Fasting bf7ad2d84f meta.description fixups
Mostly scripted substitutions with a couple of subjective enhancements.
2015-04-30 18:17:42 +02:00

28 lines
728 B
Nix

{ stdenv, fetchurl, flex, bison, libmhash, zlib, acl, attr, libselinux }:
stdenv.mkDerivation rec {
name = "aide-${version}";
version = "0.16a2";
src = fetchurl {
url = "mirror://sourceforge/aide/devel/0.16a2/aide-${version}.tar.gz";
sha256 = "11qvp6l2x4ajq9485lmg722gfdikh8r2wqfw17m0jm68df0m295m";
};
buildInputs = [ flex bison libmhash zlib acl attr libselinux ];
configureFlags = [
"--with-posix-acl"
"--with-selinux"
"--with-xattr"
];
meta = with stdenv.lib; {
homepage = "http://aide.sourceforge.net/";
description = "A file and directory integrity checker";
license = licenses.free;
maintainers = [ maintainers.tstrobel ];
platforms = platforms.linux;
};
}