about summary refs log tree commit diff
path: root/pkgs/by-name/bu/bulloak/package.nix
blob: f9bd96f565387347633661accdfc2baea9959643 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib
, fetchFromGitHub
, rustPlatform
}:

rustPlatform.buildRustPackage rec {
  pname = "bulloak";
  version = "0.5.4";

  src = fetchFromGitHub {
    owner = "alexfertel";
    repo = "bulloak";
    rev = "v${version}";
    hash = "sha256-lUTMQMBqCezuUsfvuYSCBFsokoY3bPoJDGWL90EjVqY=";
  };

  cargoHash = "sha256-LH96e/dBbv4J7g7wzh3/vL+PzZn779zUMBgio6w3rJw=";

  # tests run in CI on the source repo
  doCheck = false;

  meta = with lib; {
    description = "A Solidity test generator based on the Branching Tree Technique";
    homepage = "https://github.com/alexfertel/bulloak";
    license = with licenses; [ mit asl20 ];
    mainProgram = "bulloak";
    maintainers = with maintainers; [ beeb ];
  };
}