nixpkgs/pkgs/tools/misc/bkt/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

26 lines
567 B
Nix

{ rustPlatform
, fetchFromGitHub
, lib
}: rustPlatform.buildRustPackage rec {
pname = "bkt";
version = "0.8.0";
src = fetchFromGitHub {
owner = "dimo414";
repo = pname;
rev = version;
sha256 = "sha256-XQK7oZfutqCvFoGzMH5G5zoGvqB8YaXSdrwjS/SVTNU=";
};
cargoHash = "sha256-Pl+a+ZpxaguRloH8R7x4FmYpTwTUwFrYy7AS/5K3L+8=";
meta = {
description = "Subprocess caching utility";
homepage = "https://github.com/dimo414/bkt";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.mangoiv ];
mainProgram = "bkt";
};
}