laurel: 0.7.0 -> 0.7.2 (#403627)

authored by Emily and committed by GitHub b410fabf d6feb923

+11 -3
+11 -3
pkgs/servers/monitoring/laurel/default.nix
··· 7 8 rustPlatform.buildRustPackage rec { 9 pname = "laurel"; 10 - version = "0.7.0"; 11 12 src = fetchFromGitHub { 13 owner = "threathunters-io"; 14 repo = "laurel"; 15 tag = "v${version}"; 16 - hash = "sha256-fToxRAcZOZvuuzaaWSjweqEwdUu3K2EKXY0K2Qixqpo="; 17 }; 18 19 useFetchCargoVendor = true; 20 - cargoHash = "sha256-i5wsS7y65sIvICfgViVIAbQU9f1E0EmspX+YVKDSKOU="; 21 22 postPatch = '' 23 # Upstream started to redirect aarch64-unknown-linux-gnu to aarch64-linux-gnu-gcc ··· 28 29 nativeBuildInputs = [ rustPlatform.bindgenHook ]; 30 buildInputs = [ acl ]; 31 32 meta = with lib; { 33 description = "Transform Linux Audit logs for SIEM usage";
··· 7 8 rustPlatform.buildRustPackage rec { 9 pname = "laurel"; 10 + version = "0.7.2"; 11 12 src = fetchFromGitHub { 13 owner = "threathunters-io"; 14 repo = "laurel"; 15 tag = "v${version}"; 16 + hash = "sha256-rOf7UtkMoYpReZr/2135QcpMEfYD80IY4zF0TwAWr4I="; 17 }; 18 19 useFetchCargoVendor = true; 20 + cargoHash = "sha256-Pfs4Bg6VZIiiXQu0ZKcDi9zeEYl08kOnWi3R2iaQG24="; 21 22 postPatch = '' 23 # Upstream started to redirect aarch64-unknown-linux-gnu to aarch64-linux-gnu-gcc ··· 28 29 nativeBuildInputs = [ rustPlatform.bindgenHook ]; 30 buildInputs = [ acl ]; 31 + 32 + checkFlags = [ 33 + # Nix' build sandbox does not allow setting ACLs: 34 + # https://github.com/NixOS/nix/blob/2.28.3/src/libstore/unix/build/local-derivation-goal.cc#L1760-L1769 35 + # Skip the tests that are failing with "Operation not supported (os error 95)" because of this: 36 + "--skip=rotate::test::existing" 37 + "--skip=rotate::test::fresh_file" 38 + ]; 39 40 meta = with lib; { 41 description = "Transform Linux Audit logs for SIEM usage";