about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/bu/bulloak/package.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/by-name/bu/bulloak/package.nix')
-rw-r--r--nixpkgs/pkgs/by-name/bu/bulloak/package.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/by-name/bu/bulloak/package.nix b/nixpkgs/pkgs/by-name/bu/bulloak/package.nix
new file mode 100644
index 000000000000..f9bd96f56538
--- /dev/null
+++ b/nixpkgs/pkgs/by-name/bu/bulloak/package.nix
@@ -0,0 +1,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 ];
+  };
+}