mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
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:
parent
28ac9c2cf1
commit
f5c317d5ac
25
pkgs/tools/misc/bkt/default.nix
Normal file
25
pkgs/tools/misc/bkt/default.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user