mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
f5c317d5ac
- 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
25 lines
571 B
Nix
25 lines
571 B
Nix
{ 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";
|
|
};
|
|
}
|