biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / emulators / proton-caller / default.nix
blobe0fd948eb86668c7b7bf3c76bf08359b44dc332f
1 { lib, fetchFromGitHub, rustPlatform }:
3 rustPlatform.buildRustPackage rec {
4   pname = "proton-caller";
5   version = "3.1.2";
7   src = fetchFromGitHub {
8     owner = "caverym";
9     repo = pname;
10     rev = version;
11     sha256 = "sha256-srzahBMihkEP9/+7oRij5POHkCcH6QBh4kGz42Pz0nM=";
12   };
14   cargoHash = "sha256-LBXCcFqqscCGgtTzt/gr7Lz0ExT9kAWrXPuPuKzKt0E=";
16   meta = with lib; {
17     description = "Run Windows programs with Proton";
18     changelog = "https://github.com/caverym/proton-caller/releases/tag/${version}";
19     homepage = "https://github.com/caverym/proton-caller";
20     license = licenses.mit;
21     maintainers = with maintainers; [ kho-dialga ];
22     mainProgram = "proton-call";
23   };