2021-05-20 23:08:51 +00:00
|
|
|
{ lib, stdenv, rustPlatform, fetchFromGitHub, libiconv }:
|
2021-05-03 20:48:10 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "flip-link";
|
2024-09-19 14:19:46 +00:00
|
|
|
version = "0.1.9";
|
2021-05-03 20:48:10 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "knurling-rs";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2024-09-19 14:19:46 +00:00
|
|
|
hash = "sha256-slidPVL0LAUtmCI2rlAwfGVUmB4WRF9bHqQhdgbO2oc=";
|
2021-05-03 20:48:10 +00:00
|
|
|
};
|
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
cargoHash = "sha256-x3JnqztoLol5dNMact/qMveQuvcMTg/jqHxW0lksB7Y=";
|
2021-05-03 20:48:10 +00:00
|
|
|
|
2024-09-26 11:04:55 +00:00
|
|
|
buildInputs = lib.optional stdenv.hostPlatform.isDarwin libiconv;
|
2021-05-20 23:08:51 +00:00
|
|
|
|
2022-05-18 14:49:53 +00:00
|
|
|
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"
|
|
|
|
];
|
|
|
|
|
2021-05-03 20:48:10 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Adds zero-cost stack overflow protection to your embedded programs";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "flip-link";
|
2021-05-03 20:48:10 +00:00
|
|
|
homepage = "https://github.com/knurling-rs/flip-link";
|
2022-05-18 14:49:53 +00:00
|
|
|
changelog = "https://github.com/knurling-rs/flip-link/blob/v${version}/CHANGELOG.md";
|
|
|
|
license = with licenses; [ asl20 /* or */ mit ];
|
|
|
|
maintainers = with maintainers; [ FlorianFranzen newam ];
|
2021-05-03 20:48:10 +00:00
|
|
|
};
|
|
|
|
}
|