9 rustPlatform.buildRustPackage rec {
12 cargoHash = "sha256-O90/Xo9WjLVGFEkh6S6IyvanceRBJHneEret6W8e5Yc=";
14 src = fetchFromGitHub {
15 owner = "benbrittain";
18 sha256 = "sha256-eWhcDzw+6I5N0dse5avwhcQ/y6YZ6b3QKyBwWBrA/xo=";
21 buildInputs = lib.optionals stdenv.isDarwin [
22 darwin.apple_sdk.frameworks.Security
23 darwin.apple_sdk.frameworks.SystemConfiguration
27 # Both tests access the network.
28 "--skip=test_buck2_latest"
29 "--skip=test_buck2_specific_version"
33 description = "Buck2 launcher";
35 Buckle is a launcher for [Buck2](https://buck2.build). It manages
36 Buck2 on a per-project basis. This enables a project or team to do
37 seamless upgrades of their build system tooling. It is designed to
38 be minimally intrusive. Buckle only manages fetching Buck2 and
39 enforcing the prelude is upgraded in sync.
41 homepage = "https://github.com/benbrittain/buckle";
42 license = licenses.mit;
43 maintainers = with maintainers; [ cbarrete ];
44 mainProgram = "buckle";