Skip to content

Commit

Permalink
bulloak: migrate to new apple sdk, elide "with lib"
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahec committed Nov 6, 2024
1 parent 87f57d2 commit 012de1e
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions pkgs/by-name/bu/bulloak/package.nix
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{ lib
, fetchFromGitHub
, rustPlatform
, fetchurl
, stdenv
, darwin
{
lib,
fetchFromGitHub,
rustPlatform,
fetchurl,
stdenv,
apple-sdk_11,
}:

let
Expand Down Expand Up @@ -42,19 +43,22 @@ rustPlatform.buildRustPackage rec {

cargoHash = "sha256-lj/wmLu4cBjDjzMD8DlIz+6Rnag0h+zWiE7lfcTC7lY=";

buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ darwin.apple_sdk.frameworks.SystemConfiguration ];
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ apple-sdk_11 ];

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

# provide the list of solc versions to the `svm-rs-builds` dependency
SVM_RELEASES_LIST_JSON = solc-versions.${stdenv.hostPlatform.system};

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

0 comments on commit 012de1e

Please sign in to comment.