about summary refs log tree commit diff
path: root/pkgs/tools/misc/bkt/default.nix
blob: e359ab2fd332802ef80650725780696f2b0397f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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";
  };
}