base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / po / pokeget-rs / package.nix
blob08f84c9a78c9b2d9beab79bf2e9ab9ad83cf3c5d
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "pokeget-rs";
8   version = "1.6.3";
10   src = fetchFromGitHub {
11     owner = "talwat";
12     repo = "pokeget-rs";
13     rev = version;
14     hash = "sha256-0dss+ZJ1hhQGpWySWhyF+T1T+G3BlnKfSosgCJa8MPE=";
15     fetchSubmodules = true;
16   };
18   cargoHash = "sha256-VYF2uhgxUFH/VAy/ttQOULRFFiPRf0D+0WfGlQyYDGc=";
20   meta = with lib; {
21     description = "Better rust version of pokeget";
22     homepage = "https://github.com/talwat/pokeget-rs";
23     license = licenses.mit;
24     mainProgram = "pokeget";
25     maintainers = with maintainers; [ aleksana ];
26   };