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
This commit is contained in:
mangoiv 2023-05-23 11:30:19 +02:00
parent 28ac9c2cf1
commit f5c317d5ac
No known key found for this signature in database
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ 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";
};
}

View file

@ -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 { };