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

25 lines
707 B
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";
2021-05-22 06:43:16 +03:00
version = "0.1.4";
2021-04-29 21:07:02 +03:00
src = fetchFromGitHub {
owner = "knurling-rs";
repo = pname;
rev = "v${version}";
2021-05-22 06:43:16 +03:00
sha256 = "sha256-LE0cWS6sOb9/VvGloezNnePHGldnpfNTdCFUv3F/nwE=";
2021-04-29 21:07:02 +03:00
};
2021-05-22 06:43:16 +03:00
cargoSha256 = "sha256-8WBMF5stMB4JXvYwa5yHVFV+3utDuMFJNTZ4fZFDftw=";
2021-04-29 21:07:02 +03:00
2021-05-15 15:06:45 +03:00
buildInputs = lib.optional stdenv.isDarwin libiconv;
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";
license = with licenses; [ asl20 mit ];
maintainers = [ maintainers.FlorianFranzen ];
};
}