mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
b6dd281f54
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/aide/versions
29 lines
750 B
Nix
29 lines
750 B
Nix
{ stdenv, fetchurl, flex, bison, libmhash, zlib, acl, attr, libselinux, pcre }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "aide-${version}";
|
|
version = "0.16.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/aide/aide/releases/download/v${version}/${name}.tar.gz";
|
|
sha256 = "15xp47sz7kk1ciffw3f5xw2jg2mb2lqrbr3q6p4bkbz5dap9iy8p";
|
|
};
|
|
|
|
buildInputs = [ flex bison libmhash zlib acl attr libselinux pcre ];
|
|
|
|
|
|
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;
|
|
};
|
|
}
|