mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
proton-caller 2.2.3
fixed Changed license to gpl3Only and removed stdenv Removed doCheck = true in proton-caller Co-authored-by: legendofmiracles <30902201+legendofmiracles@users.noreply.github.com> version fixed fixed maintainers on proton-caller
This commit is contained in:
parent
c116c5f89f
commit
51ba5aa590
31
pkgs/misc/emulators/proton-caller/default.nix
Normal file
31
pkgs/misc/emulators/proton-caller/default.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{ lib, fetchFromGitHub, rustPlatform, installShellFiles }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "proton-caller";
|
||||
version = "2.2.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "caverym";
|
||||
repo = pname;
|
||||
rev = "version";
|
||||
sha256 = "0968pmapg6157q4rvfp690l1sjnws8hm62lvm8kaaqysac339z7z";
|
||||
};
|
||||
|
||||
cargoSha256 = "1vp2vvgy8z350a59k1c3s5ww6w2wikiha4s7jkkz9khl0spn19a8";
|
||||
|
||||
nativeBuildInputs = [ installShellFiles ];
|
||||
|
||||
outputs = [ "out" "man" ];
|
||||
|
||||
postInstall = ''
|
||||
installManPage manual/proton-call.6
|
||||
'';
|
||||
|
||||
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;
|
||||
maintainers = with maintainers; [ kho-dialga ];
|
||||
};
|
||||
}
|
@ -275,6 +275,8 @@ in
|
||||
|
||||
protoc-gen-twirp_typescript = callPackage ../development/tools/protoc-gen-twirp_typescript { };
|
||||
|
||||
proton-caller = callPackage ../misc/emulators/proton-caller { };
|
||||
|
||||
ptags = callPackage ../development/tools/misc/ptags { };
|
||||
|
||||
ptouch-print = callPackage ../misc/ptouch-print { };
|
||||
|
Loading…
Reference in New Issue
Block a user