3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/flip-link/default.nix

33 lines
1 KiB
Nix
Raw Normal View History

2021-05-15 13:06:45 +01:00
{ lib, stdenv, rustPlatform, fetchFromGitHub, libiconv }:
2021-04-29 19:07:02 +01:00
rustPlatform.buildRustPackage rec {
pname = "flip-link";
2022-05-05 00:31:57 +01:00
version = "0.1.6";
2021-04-29 19:07:02 +01:00
src = fetchFromGitHub {
owner = "knurling-rs";
repo = pname;
rev = "v${version}";
2022-05-05 00:31:57 +01:00
sha256 = "sha256-Sf2HlAfPlg8Er2g17AnRmUkvRhTw5AVPuL2B92hFvpA=";
2021-04-29 19:07:02 +01:00
};
2022-05-05 00:31:57 +01:00
cargoSha256 = "sha256-2VgsO2hUIvSPNQhR13+bGTxXa6xZXcK0amfiWv2EIxk=";
2021-04-29 19:07:02 +01:00
2021-05-15 13:06:45 +01:00
buildInputs = lib.optional stdenv.isDarwin libiconv;
2022-05-05 00:31:57 +01: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 19:07:02 +01:00
meta = with lib; {
description = "Adds zero-cost stack overflow protection to your embedded programs";
homepage = "https://github.com/knurling-rs/flip-link";
2022-05-05 00:31:57 +01: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 19:07:02 +01:00
};
}