python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / aide / default.nix
blobb34be9a37710df94d7ca2a4735f40c3b9d6a77fc
1 { lib, stdenv, fetchurl, flex, bison, libmhash, zlib, acl, attr, libselinux, pcre }:
3 stdenv.mkDerivation rec {
4   pname = "aide";
5   version = "0.17.4";
7   src = fetchurl {
8     url = "https://github.com/aide/aide/releases/download/v${version}/${pname}-${version}.tar.gz";
9     sha256 = "sha256-yBUFJG8//C52A21Dp3ISroKJW1iB2bniXBNhsam3qEY=";
10   };
12   buildInputs = [ flex bison libmhash zlib acl attr libselinux pcre ];
15   configureFlags = [
16     "--with-posix-acl"
17     "--with-selinux"
18     "--with-xattr"
19     ];
21   meta = with lib; {
22     homepage = "https://aide.github.io/";
23     description = "A file and directory integrity checker";
24     license = licenses.gpl2Plus;
25     maintainers = [ ];
26     platforms = platforms.linux;
27   };