Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
28 lines
572 B
Nix
28 lines
572 B
Nix
{
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
lib,
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "bkt";
|
|
version = "0.8.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dimo414";
|
|
repo = "bkt";
|
|
tag = version;
|
|
sha256 = "sha256-XQK7oZfutqCvFoGzMH5G5zoGvqB8YaXSdrwjS/SVTNU=";
|
|
};
|
|
|
|
cargoHash = "sha256-4CY2A6mPTfGhqUh+nNg6eaTIVwA9ZtgH5jHQDGHnK4c=";
|
|
|
|
meta = {
|
|
description = "Subprocess caching utility";
|
|
homepage = "https://github.com/dimo414/bkt";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.mangoiv ];
|
|
mainProgram = "bkt";
|
|
};
|
|
}
|