aide: 0.17.4 -> 0.18.6
most notable changes in https://github.com/aide/aide/releases/tag/v0.18
This commit is contained in:
parent
ae1908845f
commit
a27e78c987
1 changed files with 5 additions and 4 deletions
|
@ -1,16 +1,17 @@
|
|||
{ lib, stdenv, fetchurl, flex, bison, libmhash, zlib, acl, attr, libselinux, pcre }:
|
||||
{ lib, stdenv, fetchurl, flex, bison, libmhash, zlib, acl, attr, libselinux, pcre2, pkg-config, libgcrypt }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "aide";
|
||||
version = "0.17.4";
|
||||
version = "0.18.6";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/aide/aide/releases/download/v${version}/${pname}-${version}.tar.gz";
|
||||
sha256 = "sha256-yBUFJG8//C52A21Dp3ISroKJW1iB2bniXBNhsam3qEY=";
|
||||
sha256 = "sha256-j/Ns5H030MyYd2LV2WE0bUdd50u6ihgy/QBttu3TwQ4=";
|
||||
};
|
||||
|
||||
buildInputs = [ flex bison libmhash zlib acl attr libselinux pcre ];
|
||||
buildInputs = [ flex bison libmhash zlib acl attr libselinux pcre2 libgcrypt ];
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
|
||||
configureFlags = [
|
||||
"--with-posix-acl"
|
||||
|
|
Loading…
Reference in a new issue