nixpkgs/pkgs/development/tools/flip-link/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
1.0 KiB
Nix
Raw Normal View History

2021-05-15 15:06:45 +03:00
{ lib, stdenv, rustPlatform, fetchFromGitHub, libiconv }:
2021-04-29 21:07:02 +03:00
rustPlatform.buildRustPackage rec {
pname = "flip-link";
2022-05-05 02:31:57 +03:00
version = "0.1.6";
2021-04-29 21:07:02 +03:00
src = fetchFromGitHub {
owner = "knurling-rs";
repo = pname;
rev = "v${version}";
2022-05-05 02:31:57 +03:00
sha256 = "sha256-Sf2HlAfPlg8Er2g17AnRmUkvRhTw5AVPuL2B92hFvpA=";
2021-04-29 21:07:02 +03:00
};
2022-05-05 02:31:57 +03:00
cargoSha256 = "sha256-2VgsO2hUIvSPNQhR13+bGTxXa6xZXcK0amfiWv2EIxk=";
2021-04-29 21:07:02 +03:00
2021-05-15 15:06:45 +03:00
buildInputs = lib.optional stdenv.isDarwin libiconv;
2022-05-05 02:31:57 +03: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 21:07:02 +03: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 02:31:57 +03: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 21:07:02 +03:00
};
}