2023-08-11 12:24:24 +00:00
|
|
|
{ lib
|
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "pokeget-rs";
|
2024-03-23 13:15:43 +00:00
|
|
|
version = "1.4.2-2";
|
2023-08-11 12:24:24 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "talwat";
|
|
|
|
repo = "pokeget-rs";
|
|
|
|
rev = version;
|
2024-03-23 13:15:43 +00:00
|
|
|
hash = "sha256-RPdtwHJsXdjIAeJP/LPdJ7GjwdIngM3eZO/A8InTpXQ=";
|
2023-08-11 12:24:24 +00:00
|
|
|
fetchSubmodules = true;
|
|
|
|
};
|
|
|
|
|
2024-03-23 13:15:43 +00:00
|
|
|
cargoHash = "sha256-JeRSBG1HswttHOGyiNseFf2KiWkumrzEIw76A80nQHM=";
|
2023-08-11 12:24:24 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
2024-06-07 07:46:46 +00:00
|
|
|
description = "Better rust version of pokeget";
|
2023-08-11 12:24:24 +00:00
|
|
|
homepage = "https://github.com/talwat/pokeget-rs";
|
|
|
|
license = licenses.mit;
|
|
|
|
mainProgram = "pokeget";
|
|
|
|
maintainers = with maintainers; [ aleksana ];
|
|
|
|
};
|
|
|
|
}
|