mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
flip-link: init at 0.1.3
This commit is contained in:
parent
f4c4ddae04
commit
34ad94bd36
2 changed files with 24 additions and 0 deletions
22
pkgs/development/tools/flip-link/default.nix
Normal file
22
pkgs/development/tools/flip-link/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ lib, rustPlatform, fetchFromGitHub }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "flip-link";
|
||||
version = "0.1.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "knurling-rs";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0x6l5aps0aryf3iqiyk969zrq77bm95jvm6f0f5vqqqizxjd3yfl";
|
||||
};
|
||||
|
||||
cargoSha256 = "13rgpbwaz2b928rg15lbaszzjymph54pwingxpszp5paihx4iayr";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Adds zero-cost stack overflow protection to your embedded programs";
|
||||
homepage = "https://github.com/knurling-rs/flip-link";
|
||||
license = with licenses; [ asl20 mit ];
|
||||
maintainers = [ maintainers.FlorianFranzen ];
|
||||
};
|
||||
}
|
|
@ -4569,6 +4569,8 @@ in
|
|||
|
||||
flawfinder = callPackage ../development/tools/flawfinder { };
|
||||
|
||||
flip-link = callPackage ../development/tools/flip-link { };
|
||||
|
||||
flips = callPackage ../tools/compression/flips { };
|
||||
|
||||
fmbt = callPackage ../development/tools/fmbt {
|
||||
|
|
Loading…
Reference in a new issue