biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / rust / cargo-bundle / default.nix
blobdaf4bc230b8d0ac8a8a84ed5cdba56bcf6723dbc
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 , pkg-config
5 , stdenv
6 , darwin
7 , libxkbcommon
8 , wayland
9 }:
11 rustPlatform.buildRustPackage {
12   pname = "cargo-bundle";
13   # the latest stable release fails to build on darwin
14   version = "unstable-2023-08-18";
16   src = fetchFromGitHub {
17     owner = "burtonageo";
18     repo = "cargo-bundle";
19     rev = "c9f7a182d233f0dc4ad84e10b1ffa0d44522ea43";
20     hash = "sha256-n+c83pmCvFdNRAlcadmcZvYj+IRqUYeE8CJVWWYbWDQ=";
21   };
23   cargoHash = "sha256-Ea658jHomktmzXtU5wmd0bRX+i5n46hCvexYxYbjjUc=";
25   nativeBuildInputs = [
26     pkg-config
27   ];
29   buildInputs = lib.optionals stdenv.isDarwin [
30     darwin.apple_sdk.frameworks.AppKit
31   ] ++ lib.optionals stdenv.isLinux [
32     libxkbcommon
33     wayland
34   ];
36   meta = with lib; {
37     description = "Wrap rust executables in OS-specific app bundles";
38     mainProgram = "cargo-bundle";
39     homepage = "https://github.com/burtonageo/cargo-bundle";
40     license = with licenses; [ asl20 mit ];
41     maintainers = with maintainers; [ figsoda ];
42   };