mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 01:03:25 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
28 lines
631 B
Nix
28 lines
631 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "pokeget-rs";
|
|
version = "1.4.2-2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "talwat";
|
|
repo = "pokeget-rs";
|
|
rev = version;
|
|
hash = "sha256-RPdtwHJsXdjIAeJP/LPdJ7GjwdIngM3eZO/A8InTpXQ=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
cargoHash = "sha256-JeRSBG1HswttHOGyiNseFf2KiWkumrzEIw76A80nQHM=";
|
|
|
|
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 ];
|
|
};
|
|
}
|