Merge pull request #121471 from Kho-Dialga/master

authored by Sandro and committed by GitHub 77efb5b8 e6b0f036

+39
+6
maintainers/maintainer-list.nix
··· 5196 githubId = 546087; 5197 name = "Kristoffer K. Føllesdal"; 5198 }; 5199 khumba = { 5200 email = "bog@khumba.net"; 5201 github = "khumba";
··· 5196 githubId = 546087; 5197 name = "Kristoffer K. Føllesdal"; 5198 }; 5199 + kho-dialga = { 5200 + email = "ivandashenyou@gmail.com"; 5201 + github = "kho-dialga"; 5202 + githubId = 55767703; 5203 + name = "Iván Brito"; 5204 + }; 5205 khumba = { 5206 email = "bog@khumba.net"; 5207 github = "khumba";
+31
pkgs/misc/emulators/proton-caller/default.nix
···
··· 1 + { lib, fetchFromGitHub, rustPlatform, installShellFiles }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "proton-caller"; 5 + version = "2.2.3"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "caverym"; 9 + repo = pname; 10 + rev = "version"; 11 + sha256 = "0968pmapg6157q4rvfp690l1sjnws8hm62lvm8kaaqysac339z7z"; 12 + }; 13 + 14 + cargoSha256 = "1vp2vvgy8z350a59k1c3s5ww6w2wikiha4s7jkkz9khl0spn19a8"; 15 + 16 + nativeBuildInputs = [ installShellFiles ]; 17 + 18 + outputs = [ "out" "man" ]; 19 + 20 + postInstall = '' 21 + installManPage manual/proton-call.6 22 + ''; 23 + 24 + meta = with lib; { 25 + description = "Run Windows programs with Proton"; 26 + changelog = "https://github.com/caverym/proton-caller/releases/tag/${version}"; 27 + homepage = "https://github.com/caverym/proton-caller"; 28 + license = licenses.gpl3Only; 29 + maintainers = with maintainers; [ kho-dialga ]; 30 + }; 31 + }
+2
pkgs/top-level/all-packages.nix
··· 313 314 protoc-gen-twirp_typescript = callPackage ../development/tools/protoc-gen-twirp_typescript { }; 315 316 ptags = callPackage ../development/tools/misc/ptags { }; 317 318 ptouch-print = callPackage ../misc/ptouch-print { };
··· 313 314 protoc-gen-twirp_typescript = callPackage ../development/tools/protoc-gen-twirp_typescript { }; 315 316 + proton-caller = callPackage ../misc/emulators/proton-caller { }; 317 + 318 ptags = callPackage ../development/tools/misc/ptags { }; 319 320 ptouch-print = callPackage ../misc/ptouch-print { };