mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
pokeget-rs: init at 1.2.0
This commit is contained in:
parent
85eb9355b5
commit
b67b3bbf12
27
pkgs/tools/misc/pokeget-rs/default.nix
Normal file
27
pkgs/tools/misc/pokeget-rs/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ lib
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "pokeget-rs";
|
||||
version = "1.2.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "talwat";
|
||||
repo = "pokeget-rs";
|
||||
rev = version;
|
||||
hash = "sha256-0HWv0o0wmcRomLQul99RjGAF+/qKBK6SGeNOFRTHiCc=";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
cargoHash = "sha256-nsF6rInbM1Eshi2B4AYxkHj+DBrPc2doCtZSeBfs5b0=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "A better rust version of pokeget";
|
||||
homepage = "https://github.com/talwat/pokeget-rs";
|
||||
license = licenses.mit;
|
||||
mainProgram = "pokeget";
|
||||
maintainers = with maintainers; [ aleksana ];
|
||||
};
|
||||
}
|
@ -32176,6 +32176,8 @@ with pkgs;
|
||||
|
||||
pmbootstrap = python3Packages.callPackage ../tools/misc/pmbootstrap { };
|
||||
|
||||
pokeget-rs = callPackage ../tools/misc/pokeget-rs { };
|
||||
|
||||
popura = callPackage ../tools/networking/popura { };
|
||||
|
||||
pureref = callPackage ../applications/graphics/pureref { };
|
||||
|
Loading…
Reference in New Issue
Block a user