mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
5d0bff94ca
This solves the following build error: ~~~ error: linker `aarch64-linux-gnu-gcc` not found | = note: No such file or directory (os error 2) ~~~ Which happens on aarch64-linux and armv7-linux because upstream redirects the linker for that platform in https://github.com/threathunters-io/laurel/blob/v0.6.3/.cargo/config.toml Since there is nothing else besides linker redirects in there, we simply delete the whole file.
39 lines
1.0 KiB
Nix
39 lines
1.0 KiB
Nix
{ acl
|
|
, fetchFromGitHub
|
|
, lib
|
|
, rustPlatform
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "laurel";
|
|
version = "0.6.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "threathunters-io";
|
|
repo = "laurel";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-vasu4ffSdiyeXGV8JUZYL3I/04UvZ/mOImdE45la9y8=";
|
|
};
|
|
|
|
cargoHash = "sha256-uQs+BUBWdbSoE3UqrSjqImVm5uwYf7XiTFtGG1BcFZI=";
|
|
|
|
postPatch = ''
|
|
# Upstream started to redirect aarch64-unknown-linux-gnu to aarch64-linux-gnu-gcc
|
|
# for their CI which breaks compiling on aarch64 in nixpkgs:
|
|
# error: linker `aarch64-linux-gnu-gcc` not found
|
|
rm .cargo/config.toml
|
|
'';
|
|
|
|
nativeBuildInputs = [ rustPlatform.bindgenHook ];
|
|
buildInputs = [ acl ];
|
|
|
|
meta = with lib; {
|
|
description = "Transform Linux Audit logs for SIEM usage";
|
|
homepage = "https://github.com/threathunters-io/laurel";
|
|
changelog = "https://github.com/threathunters-io/laurel/releases/tag/v${version}";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ emilylange ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|