proton-caller: 2.2.3 -> 2.3.0 (#126501)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

authored by

Kho-Dialga
Sandro
and committed by
GitHub
f8fe3cbe 887d2646

+5 -13
+5 -13
pkgs/misc/emulators/proton-caller/default.nix
··· 1 - { lib, fetchFromGitHub, rustPlatform, installShellFiles }: 1 + { lib, fetchFromGitHub, rustPlatform }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "proton-caller"; 5 - version = "2.2.3"; 5 + version = "2.3.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "caverym"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "0968pmapg6157q4rvfp690l1sjnws8hm62lvm8kaaqysac339z7z"; 11 + sha256 = "1rj0f8jzmrvj6gz1rcdjmxdqk2i5cxhz9ji4217kwyb6h1h0jmdk"; 12 12 }; 13 13 14 - cargoSha256 = "1vp2vvgy8z350a59k1c3s5ww6w2wikiha4s7jkkz9khl0spn19a8"; 15 - 16 - nativeBuildInputs = [ installShellFiles ]; 17 - 18 - outputs = [ "out" "man" ]; 19 - 20 - postInstall = '' 21 - installManPage manual/proton-call.6 22 - ''; 14 + cargoSha256 = "165kzza1m8h37y1ir0d0hp0z645h4ihkyj83fii69f18gk47r3kg"; 23 15 24 16 meta = with lib; { 25 17 description = "Run Windows programs with Proton"; 26 18 changelog = "https://github.com/caverym/proton-caller/releases/tag/${version}"; 27 19 homepage = "https://github.com/caverym/proton-caller"; 28 - license = licenses.gpl3Only; 20 + license = licenses.mit; 29 21 maintainers = with maintainers; [ kho-dialga ]; 30 22 }; 31 23 }