nixpkgs/pkgs/misc/emulators/proton-caller/default.nix

24 lines
663 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "proton-caller";
2021-09-14 22:47:15 +02:00
version = "2.3.2";
src = fetchFromGitHub {
owner = "caverym";
repo = pname;
2021-05-25 20:38:31 +02:00
rev = version;
2021-09-14 22:47:15 +02:00
sha256 = "sha256-k+cH86atuVoLCQ+I1zu08f4T+y0u8vnjo3VA+Otg+a4=";
};
2021-09-14 22:47:15 +02:00
cargoSha256 = "sha256-rkgg96IdIhVXZ5y/ECUxNPyPV9Nv5XGAtlxAkILry2s=";
meta = with lib; {
description = "Run Windows programs with Proton";
changelog = "https://github.com/caverym/proton-caller/releases/tag/${version}";
homepage = "https://github.com/caverym/proton-caller";
license = licenses.mit;
maintainers = with maintainers; [ kho-dialga ];
};
}