Commit b67b3bbf authored by aleksana's avatar aleksana
Browse files

pokeget-rs: init at 1.2.0

parent 85eb9355
Loading
Loading
Loading
Loading
+27 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };