Merge pull request #248524 from Aleksanaa/pokeget-rs

pokeget-rs: init at 1.2.0

authored by OTABI Tomoya and committed by GitHub 9aa5a78e 857f57ff

+29
+27
pkgs/tools/misc/pokeget-rs/default.nix
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + }: 5 + 6 + rustPlatform.buildRustPackage rec { 7 + pname = "pokeget-rs"; 8 + version = "1.2.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "talwat"; 12 + repo = "pokeget-rs"; 13 + rev = version; 14 + hash = "sha256-0HWv0o0wmcRomLQul99RjGAF+/qKBK6SGeNOFRTHiCc="; 15 + fetchSubmodules = true; 16 + }; 17 + 18 + cargoHash = "sha256-nsF6rInbM1Eshi2B4AYxkHj+DBrPc2doCtZSeBfs5b0="; 19 + 20 + meta = with lib; { 21 + description = "A better rust version of pokeget"; 22 + homepage = "https://github.com/talwat/pokeget-rs"; 23 + license = licenses.mit; 24 + mainProgram = "pokeget"; 25 + maintainers = with maintainers; [ aleksana ]; 26 + }; 27 + }
+2
pkgs/top-level/all-packages.nix
··· 32380 32380 32381 32381 pmbootstrap = python3Packages.callPackage ../tools/misc/pmbootstrap { }; 32382 32382 32383 + pokeget-rs = callPackage ../tools/misc/pokeget-rs { }; 32384 + 32383 32385 popura = callPackage ../tools/networking/popura { }; 32384 32386 32385 32387 pureref = callPackage ../applications/graphics/pureref { };