Merge pull request #268113 from beeb/bulloak

bulloak: init at 0.5.4

authored by

Pol Dellaiera and committed by
GitHub
fbe817fc 4db6d0ab

+29
+29
pkgs/by-name/bu/bulloak/package.nix
··· 1 + { lib 2 + , fetchFromGitHub 3 + , rustPlatform 4 + }: 5 + 6 + rustPlatform.buildRustPackage rec { 7 + pname = "bulloak"; 8 + version = "0.5.4"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "alexfertel"; 12 + repo = "bulloak"; 13 + rev = "v${version}"; 14 + hash = "sha256-lUTMQMBqCezuUsfvuYSCBFsokoY3bPoJDGWL90EjVqY="; 15 + }; 16 + 17 + cargoHash = "sha256-LH96e/dBbv4J7g7wzh3/vL+PzZn779zUMBgio6w3rJw="; 18 + 19 + # tests run in CI on the source repo 20 + doCheck = false; 21 + 22 + meta = with lib; { 23 + description = "A Solidity test generator based on the Branching Tree Technique"; 24 + homepage = "https://github.com/alexfertel/bulloak"; 25 + license = with licenses; [ mit asl20 ]; 26 + mainProgram = "bulloak"; 27 + maintainers = with maintainers; [ beeb ]; 28 + }; 29 + }