nixpkgs/pkgs/by-name/po/pokeget-rs/package.nix

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

28 lines
629 B
Nix
Raw Normal View History

2023-08-11 13:24:24 +01:00
{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "pokeget-rs";
2024-09-23 12:34:02 +01:00
version = "1.6.3";
2023-08-11 13:24:24 +01:00
src = fetchFromGitHub {
owner = "talwat";
repo = "pokeget-rs";
rev = version;
2024-09-23 12:34:02 +01:00
hash = "sha256-0dss+ZJ1hhQGpWySWhyF+T1T+G3BlnKfSosgCJa8MPE=";
2023-08-11 13:24:24 +01:00
fetchSubmodules = true;
};
2024-09-23 12:34:02 +01:00
cargoHash = "sha256-VYF2uhgxUFH/VAy/ttQOULRFFiPRf0D+0WfGlQyYDGc=";
2023-08-11 13:24:24 +01:00
meta = with lib; {
description = "Better rust version of pokeget";
homepage = "https://github.com/talwat/pokeget-rs";
license = licenses.mit;
mainProgram = "pokeget";
maintainers = with maintainers; [ aleksana ];
};
}