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

bkt: init at version 0.6.1
This commit is contained in:
Ilan Joselevich 2023-05-27 12:00:20 +03:00 committed by GitHub
commit 4f8d9de9a6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 33 additions and 0 deletions

View file

@ -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";

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

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