diff --git a/pkgs/tools/misc/pokeget-rs/default.nix b/pkgs/tools/misc/pokeget-rs/default.nix new file mode 100644 index 000000000000..9185f55d8044 --- /dev/null +++ b/pkgs/tools/misc/pokeget-rs/default.nix @@ -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 ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 82263ec20900..f3750012c7f8 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -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 { };