Merge pull request #248524 from Aleksanaa/pokeget-rs

pokeget-rs: init at 1.2.0
This commit is contained in:
OTABI Tomoya
2023-08-13 08:57:35 +09:00
committed by GitHub
2 changed files with 29 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "pokeget-rs";
version = "1.2.0";
src = fetchFromGitHub {
owner = "talwat";
repo = "pokeget-rs";
rev = version;
hash = "sha256-0HWv0o0wmcRomLQul99RjGAF+/qKBK6SGeNOFRTHiCc=";
fetchSubmodules = true;
};
cargoHash = "sha256-nsF6rInbM1Eshi2B4AYxkHj+DBrPc2doCtZSeBfs5b0=";
meta = with lib; {
description = "A better rust version of pokeget";
homepage = "https://github.com/talwat/pokeget-rs";
license = licenses.mit;
mainProgram = "pokeget";
maintainers = with maintainers; [ aleksana ];
};
}
+2
View File
@@ -32380,6 +32380,8 @@ with pkgs;
pmbootstrap = python3Packages.callPackage ../tools/misc/pmbootstrap { };
pokeget-rs = callPackage ../tools/misc/pokeget-rs { };
popura = callPackage ../tools/networking/popura { };
pureref = callPackage ../applications/graphics/pureref { };