Unverified Commit 4f8d9de9 authored by Ilan Joselevich's avatar Ilan Joselevich Committed by GitHub
Browse files

Merge pull request #218803 from MangoIV/mangoiv/add-bkt

bkt: init at version 0.6.1
parents 8ffd7bb5 f5c317d5
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -9670,6 +9670,12 @@
    githubId = 346094;
    name = "Michael Alyn Miller";
  };
  mangoiv = {
    email = "contact@mangoiv.com";
    github = "mangoiv";
    githubId = 40720523;
    name = "MangoIV";
  };
  manojkarthick = {
    email = "smanojkarthick@gmail.com";
    github = "manojkarthick";
+25 −0
Original line number Diff line number Diff line
{ rustPlatform
, fetchFromGitHub
, lib
}: rustPlatform.buildRustPackage rec {

  pname = "bkt";
  version = "0.6.1";

  src = fetchFromGitHub {
    owner = "dimo414";
    repo = pname;
    rev = version;
    sha256 = "sha256-NgNXuTpI1EzgmxKRsqzxTOlQi75BHCcbjFnouhnfDDM=";
  };

  cargoSha256 = "sha256-PvcKviyXtiHQCHgJLGR2Mr+mPpTd06eKWQ5h6eGdl40=";

  meta = {
    description = "A subprocess caching utility";
    homepage = "https://github.com/dimo414/bkt";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.mangoiv ];
    mainProgram = "bkt";
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -3158,6 +3158,8 @@ with pkgs;
  bklk = callPackage ../applications/misc/bklk { };
  bkt = callPackage ../tools/misc/bkt {  };
  bkyml = callPackage ../tools/misc/bkyml { };
  blockbench-electron = callPackage ../applications/graphics/blockbench-electron { };