2023-08-22 20:05:09 +00:00
|
|
|
{ lib
|
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "pokeget-rs";
|
2024-04-21 15:54:59 +00:00
|
|
|
version = "1.4.2-2";
|
2023-08-22 20:05:09 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "talwat";
|
|
|
|
repo = "pokeget-rs";
|
|
|
|
rev = version;
|
2024-04-21 15:54:59 +00:00
|
|
|
hash = "sha256-RPdtwHJsXdjIAeJP/LPdJ7GjwdIngM3eZO/A8InTpXQ=";
|
2023-08-22 20:05:09 +00:00
|
|
|
fetchSubmodules = true;
|
|
|
|
};
|
|
|
|
|
2024-04-21 15:54:59 +00:00
|
|
|
cargoHash = "sha256-JeRSBG1HswttHOGyiNseFf2KiWkumrzEIw76A80nQHM=";
|
2023-08-22 20:05:09 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Better rust version of pokeget";
|
2023-08-22 20:05:09 +00:00
|
|
|
homepage = "https://github.com/talwat/pokeget-rs";
|
|
|
|
license = licenses.mit;
|
|
|
|
mainProgram = "pokeget";
|
|
|
|
maintainers = with maintainers; [ aleksana ];
|
|
|
|
};
|
|
|
|
}
|