Merge pull request #329823 from ExpidusOS/fix/pkgsllvm/elfutils
[NixPkgs.git] / pkgs / by-name / bu / buckle / package.nix
blob390c78534b115c95f24b9a4e8ed979772997c366
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   rustPlatform,
6   darwin,
7 }:
9 rustPlatform.buildRustPackage rec {
10   pname = "buckle";
11   version = "1.1.0";
12   cargoHash = "sha256-O90/Xo9WjLVGFEkh6S6IyvanceRBJHneEret6W8e5Yc=";
14   src = fetchFromGitHub {
15     owner = "benbrittain";
16     repo = "buckle";
17     rev = "v${version}";
18     sha256 = "sha256-eWhcDzw+6I5N0dse5avwhcQ/y6YZ6b3QKyBwWBrA/xo=";
19   };
21   buildInputs = lib.optionals stdenv.isDarwin [
22     darwin.apple_sdk.frameworks.Security
23     darwin.apple_sdk.frameworks.SystemConfiguration
24   ];
26   checkFlags = [
27     # Both tests access the network.
28     "--skip=test_buck2_latest"
29     "--skip=test_buck2_specific_version"
30   ];
32   meta = with lib; {
33     description = "Buck2 launcher";
34     longDescription = ''
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.
40     '';
41     homepage = "https://github.com/benbrittain/buckle";
42     license = licenses.mit;
43     maintainers = with maintainers; [ cbarrete ];
44     mainProgram = "buckle";
45   };