nixpkgs/pkgs/development/compilers/zz/default.nix

29 lines
722 B
Nix
Raw Normal View History

2020-03-04 09:20:00 +00:00
{ lib, rustPlatform, fetchFromGitHub, makeWrapper, z3 }:
rustPlatform.buildRustPackage rec {
2020-05-28 10:20:00 +01:00
pname = "zz";
version = "0.1";
2020-03-04 09:20:00 +00:00
src = fetchFromGitHub {
owner = "aep";
repo = "zz";
2020-05-28 10:20:00 +01:00
rev = version;
sha256 = "0kqrfm2r9wn0p2c3lcprsy03p9qhrwjs990va8qi59jp704l84ad";
2020-03-04 09:20:00 +00:00
};
nativeBuildInputs = [ makeWrapper ];
2020-05-28 10:20:00 +01:00
cargoSha256 = "0yllcqxyyhwr9h0z8q84l0ms8x6jrqhpg79ik4xng6h5yf4ab0pq";
2020-03-04 09:20:00 +00:00
postInstall = ''
wrapProgram $out/bin/zz --prefix PATH ":" "${lib.getBin z3}/bin"
'';
meta = with lib; {
description = "🍺🐙 ZetZ a zymbolic verifier and tranzpiler to bare metal C";
homepage = "https://github.com/aep/zz";
license = licenses.mit;
maintainers = [ maintainers.marsam ];
};
}