mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
755b915a15
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/'
26 lines
567 B
Nix
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";
|
|
};
|
|
}
|