summary refs log tree commit diff
path: root/pkgs/misc
diff options
context:
space:
mode:
authorKho-Dialga <55767703+Kho-Dialga@users.noreply.github.com>2021-06-10 13:13:24 -0600
committerGitHub <noreply@github.com>2021-06-10 21:13:24 +0200
commitf8fe3cbe9cc11eb5946b480d5bf45e1ffe235218 (patch)
treef9a5d5ed5faece0acbbfcdeb4f3851ad35d92155 /pkgs/misc
parent887d26463f8b144c4e1c6984fe843a73bba0298c (diff)
downloadnixpkgs-f8fe3cbe9cc11eb5946b480d5bf45e1ffe235218.tar
nixpkgs-f8fe3cbe9cc11eb5946b480d5bf45e1ffe235218.tar.gz
nixpkgs-f8fe3cbe9cc11eb5946b480d5bf45e1ffe235218.tar.bz2
nixpkgs-f8fe3cbe9cc11eb5946b480d5bf45e1ffe235218.tar.lz
nixpkgs-f8fe3cbe9cc11eb5946b480d5bf45e1ffe235218.tar.xz
nixpkgs-f8fe3cbe9cc11eb5946b480d5bf45e1ffe235218.tar.zst
nixpkgs-f8fe3cbe9cc11eb5946b480d5bf45e1ffe235218.zip
proton-caller: 2.2.3 -> 2.3.0 (#126501)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Diffstat (limited to 'pkgs/misc')
-rw-r--r--pkgs/misc/emulators/proton-caller/default.nix18
1 files changed, 5 insertions, 13 deletions
diff --git a/pkgs/misc/emulators/proton-caller/default.nix b/pkgs/misc/emulators/proton-caller/default.nix
index f8295c6c5b4..a69c1b3763e 100644
--- a/pkgs/misc/emulators/proton-caller/default.nix
+++ b/pkgs/misc/emulators/proton-caller/default.nix
@@ -1,31 +1,23 @@
-{ lib, fetchFromGitHub, rustPlatform, installShellFiles }:
+{ lib, fetchFromGitHub, rustPlatform }:
 
 rustPlatform.buildRustPackage rec {
   pname = "proton-caller";
-  version = "2.2.3";
+  version = "2.3.0";
 
   src = fetchFromGitHub {
     owner = "caverym";
     repo = pname;
     rev = version;
-    sha256 = "0968pmapg6157q4rvfp690l1sjnws8hm62lvm8kaaqysac339z7z";
+    sha256 = "1rj0f8jzmrvj6gz1rcdjmxdqk2i5cxhz9ji4217kwyb6h1h0jmdk";
   };
 
-  cargoSha256 = "1vp2vvgy8z350a59k1c3s5ww6w2wikiha4s7jkkz9khl0spn19a8";
-
-  nativeBuildInputs = [ installShellFiles ];
-
-  outputs = [ "out" "man" ];
-
-  postInstall = ''
-    installManPage manual/proton-call.6
-  '';
+  cargoSha256 = "165kzza1m8h37y1ir0d0hp0z645h4ihkyj83fii69f18gk47r3kg";
 
   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.gpl3Only;
+    license = licenses.mit;
     maintainers = with maintainers; [ kho-dialga ];
   };
 }