depot/third_party/nixpkgs/pkgs/by-name/po/pokeget-rs/package.nix
Luke Granger-Brown f92e137cfb
Some checks failed
/ combine-systems (push) Blocked by required conditions
/ build (x86_64-linux) (push) Failing after 11m44s
/ build (aarch64-linux) (push) Failing after 11m50s
/ build (push) Failing after 16m42s
Merge commit '1e2ed035f4bebc9adad02b365508ad96f7df87c1' into HEAD
2025-03-02 02:23:32 +00:00

29 lines
664 B
Nix

{
lib,
rustPlatform,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage rec {
pname = "pokeget-rs";
version = "1.6.3";
src = fetchFromGitHub {
owner = "talwat";
repo = "pokeget-rs";
rev = version;
hash = "sha256-0dss+ZJ1hhQGpWySWhyF+T1T+G3BlnKfSosgCJa8MPE=";
fetchSubmodules = true;
};
useFetchCargoVendor = true;
cargoHash = "sha256-nP5NPBnqEaGo1QvhdMHSPtDjJqOxF+TodvqmMgTfQ8M=";
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 ];
};
}