nixpkgs/pkgs/tools/misc/vrc-get/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
782 B
Nix
Raw Normal View History

2024-04-07 08:23:48 +00:00
{ fetchCrate, lib, rustPlatform, pkg-config, stdenv, Security, SystemConfiguration }:
2023-07-11 13:16:37 +00:00
rustPlatform.buildRustPackage rec {
pname = "vrc-get";
2024-04-07 08:23:48 +00:00
version = "1.8.0";
2023-07-11 13:16:37 +00:00
2024-04-07 08:23:48 +00:00
src = fetchCrate {
inherit pname version;
hash = "sha256-+xbHw1DpFmapjsFoUvxUqTok8TKMebMw3gYjO/rx/iU=";
2023-07-11 13:16:37 +00:00
};
nativeBuildInputs = [ pkg-config ];
2024-04-07 08:23:48 +00:00
buildInputs = lib.optionals stdenv.isDarwin [ Security SystemConfiguration ];
2023-07-11 13:16:37 +00:00
2024-04-07 08:23:48 +00:00
cargoHash = "sha256-iuLhDcii+wXDNUsUMo8lj4kfJve5RAz7FT5Pxs9yFPQ=";
2023-07-11 13:16:37 +00:00
meta = with lib; {
description = "Command line client of VRChat Package Manager, the main feature of VRChat Creator Companion (VCC)";
2024-04-07 08:23:48 +00:00
homepage = "https://github.com/vrc-get/vrc-get";
2023-07-11 13:16:37 +00:00
license = licenses.mit;
maintainers = with maintainers; [ bddvlpr ];
2023-11-27 01:17:53 +00:00
mainProgram = "vrc-get";
2023-07-11 13:16:37 +00:00
};
}