pokeget-rs: init at 1.2.0

This commit is contained in:
aleksana 2023-08-11 20:24:24 +08:00
parent 85eb9355b5
commit b67b3bbf12
2 changed files with 29 additions and 0 deletions

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 ];
};
}

View File

@ -32176,6 +32176,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 { };