nixpkgs/pkgs/tools/misc/pokeget-rs/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
631 B
Nix
Raw Normal View History

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