Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
46 lines
1.1 KiB
Nix
46 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
libiconv,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "flip-link";
|
|
version = "0.1.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "knurling-rs";
|
|
repo = "flip-link";
|
|
rev = "v${version}";
|
|
hash = "sha256-Nw43I8EIlNGPptsLVxFBapFp6qdFoUOEicHc9FTcm2g=";
|
|
};
|
|
|
|
cargoHash = "sha256-LYIgMKXaXN5gh+MvHf03za7qPJ8N8Ww7ykWB5TYOqkw=";
|
|
|
|
buildInputs = lib.optional stdenv.hostPlatform.isDarwin libiconv;
|
|
|
|
checkFlags = [
|
|
# requires embedded toolchains
|
|
"--skip should_link_example_firmware::case_1_normal"
|
|
"--skip should_link_example_firmware::case_2_custom_linkerscript"
|
|
"--skip should_verify_memory_layout"
|
|
];
|
|
|
|
meta = {
|
|
description = "Adds zero-cost stack overflow protection to your embedded programs";
|
|
mainProgram = "flip-link";
|
|
homepage = "https://github.com/knurling-rs/flip-link";
|
|
changelog = "https://github.com/knurling-rs/flip-link/blob/v${version}/CHANGELOG.md";
|
|
license = with lib.licenses; [
|
|
asl20 # or
|
|
mit
|
|
];
|
|
maintainers = with lib.maintainers; [
|
|
FlorianFranzen
|
|
newam
|
|
];
|
|
};
|
|
}
|