2021-05-15 12:06:45 +00:00
|
|
|
{ lib, stdenv, rustPlatform, fetchFromGitHub, libiconv }:
|
2021-04-29 18:07:02 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "flip-link";
|
2024-08-15 01:08:03 +00:00
|
|
|
version = "0.1.9";
|
2021-04-29 18:07:02 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "knurling-rs";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2024-08-15 01:08:03 +00:00
|
|
|
hash = "sha256-slidPVL0LAUtmCI2rlAwfGVUmB4WRF9bHqQhdgbO2oc=";
|
2021-04-29 18:07:02 +00:00
|
|
|
};
|
|
|
|
|
2024-08-15 01:08:03 +00:00
|
|
|
cargoHash = "sha256-x3JnqztoLol5dNMact/qMveQuvcMTg/jqHxW0lksB7Y=";
|
2021-04-29 18:07:02 +00:00
|
|
|
|
2021-05-15 12:06:45 +00:00
|
|
|
buildInputs = lib.optional stdenv.hostPlatform.isDarwin libiconv;
|
|
|
|
|
2022-05-04 23:31:57 +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-04-29 18:07:02 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Adds zero-cost stack overflow protection to your embedded programs";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "flip-link";
|
2021-04-29 18:07:02 +00:00
|
|
|
homepage = "https://github.com/knurling-rs/flip-link";
|
2022-05-04 23:31:57 +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-04-29 18:07:02 +00:00
|
|
|
};
|
|
|
|
}
|