build-bazel-package: added rm of extra local folders for toolchain configuration...
[NixPkgs.git] / pkgs / by-name / sh / shell-hist / package.nix
blobf906d7a9b8100b7f5c03c00bd011937b969136a4
2   lib,
3   fetchFromGitHub,
4   rustPlatform,
5 }:
7 rustPlatform.buildRustPackage {
8   pname = "shell-hist";
9   version = "0.1.0";
11   src = fetchFromGitHub {
12     owner = "jamesmunns";
13     repo = "shell-hist";
14     rev = "158de8c3908b49530ecd76bf6e65c210f351ef82";
15     sha256 = "0kc128xnnp1d56if70vfv0w3qnwhljhbnvzwwb7hfm3x2m0vqrqf";
16   };
18   cargoHash = "sha256-V/smviEa7b+2vyY2dn9MpbITnXw0HpOtPF/RPYB2TKw=";
20   meta = with lib; {
21     description = "Inspect your shell history";
22     homepage = "https://github.com/jamesmunns/shell-hist";
23     license = with licenses; [
24       mit # or
25       asl20
26     ];
27     maintainers = [ maintainers.spacekookie ];
28     mainProgram = "shell-hist";
29   };