Unverified Commit f5c317d5 authored by mangoiv's avatar mangoiv
Browse files

bkt: init at version 0.6.1

- packages https://github.com/dimo414/bkt
- release notes for version 0.6.1 can be found at https://github.com/dimo414/bkt/releases/tag/0.6.1
parent 28ac9c2c
Loading
Loading
Loading
Loading
+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
@@ -3120,6 +3120,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 { };