···1{
2 lib,
3- stdenv,
4 fetchFromGitHub,
5 rustPlatform,
6- darwin,
7}:
89rustPlatform.buildRustPackage rec {
···17 rev = "v${version}";
18 hash = "sha256-eWhcDzw+6I5N0dse5avwhcQ/y6YZ6b3QKyBwWBrA/xo=";
19 };
20-21- buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
22- darwin.apple_sdk.frameworks.Security
23- darwin.apple_sdk.frameworks.SystemConfiguration
24- ];
2526 checkFlags = [
27 # Both tests access the network.
···29 "--skip=test_buck2_specific_version"
30 ];
3132- meta = with lib; {
33 description = "Buck2 launcher";
34 longDescription = ''
35 Buckle is a launcher for [Buck2](https://buck2.build). It manages
···39 enforcing the prelude is upgraded in sync.
40 '';
41 homepage = "https://github.com/benbrittain/buckle";
42- license = licenses.mit;
43- maintainers = with maintainers; [ cbarrete ];
44 mainProgram = "buckle";
45 };
46}
···1{
2 lib,
03 fetchFromGitHub,
4 rustPlatform,
05}:
67rustPlatform.buildRustPackage rec {
···15 rev = "v${version}";
16 hash = "sha256-eWhcDzw+6I5N0dse5avwhcQ/y6YZ6b3QKyBwWBrA/xo=";
17 };
000001819 checkFlags = [
20 # Both tests access the network.
···22 "--skip=test_buck2_specific_version"
23 ];
2425+ meta = {
26 description = "Buck2 launcher";
27 longDescription = ''
28 Buckle is a launcher for [Buck2](https://buck2.build). It manages
···32 enforcing the prelude is upgraded in sync.
33 '';
34 homepage = "https://github.com/benbrittain/buckle";
35+ license = lib.licenses.mit;
36+ maintainers = with lib.maintainers; [ cbarrete ];
37 mainProgram = "buckle";
38 };
39}
+12-11
pkgs/by-name/bu/bulloak/package.nix
···1-{ lib
2-, fetchFromGitHub
3-, rustPlatform
4-, fetchurl
5-, stdenv
6-, darwin
7}:
89let
···4243 cargoHash = "sha256-lj/wmLu4cBjDjzMD8DlIz+6Rnag0h+zWiE7lfcTC7lY=";
4445- buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ darwin.apple_sdk.frameworks.SystemConfiguration ];
46-47 # tests run in CI on the source repo
48 doCheck = false;
4950 # provide the list of solc versions to the `svm-rs-builds` dependency
51 SVM_RELEASES_LIST_JSON = solc-versions.${stdenv.hostPlatform.system};
5253- meta = with lib; {
54 description = "Solidity test generator based on the Branching Tree Technique";
55 homepage = "https://github.com/alexfertel/bulloak";
56- license = with licenses; [ mit asl20 ];
00057 mainProgram = "bulloak";
58- maintainers = with maintainers; [ beeb ];
59 };
60}
···1+{
2+ lib,
3+ fetchFromGitHub,
4+ rustPlatform,
5+ fetchurl,
6+ stdenv,
7}:
89let
···4243 cargoHash = "sha256-lj/wmLu4cBjDjzMD8DlIz+6Rnag0h+zWiE7lfcTC7lY=";
440045 # tests run in CI on the source repo
46 doCheck = false;
4748 # provide the list of solc versions to the `svm-rs-builds` dependency
49 SVM_RELEASES_LIST_JSON = solc-versions.${stdenv.hostPlatform.system};
5051+ meta = {
52 description = "Solidity test generator based on the Branching Tree Technique";
53 homepage = "https://github.com/alexfertel/bulloak";
54+ license = with lib.licenses; [
55+ mit
56+ asl20
57+ ];
58 mainProgram = "bulloak";
59+ maintainers = with lib.maintainers; [ beeb ];
60 };
61}