linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / misc / shell-hist / default.nix
blobc4c496b978f44f9b0fb092d7f0ac9fe17c898dad
1 { lib, fetchFromGitHub, rustPlatform }:
3 rustPlatform.buildRustPackage {
4   pname = "shell-hist";
5   version = "0.1.0";
7   src = fetchFromGitHub {
8     owner = "jamesmunns";
9     repo = "shell-hist";
10     rev = "158de8c3908b49530ecd76bf6e65c210f351ef82";
11     sha256 = "0kc128xnnp1d56if70vfv0w3qnwhljhbnvzwwb7hfm3x2m0vqrqf";
12   };
14   cargoSha256 = "0mfgax937na351qvi5n6s1ql9136djqiydzyfyax4684sp3kp613";
16   meta = with lib; {
17     description = "Inspect your shell history";
18     homepage = "https://github.com/jamesmunns/shell-hist";
19     license = with licenses; [ mit /* or */ asl20 ];
20     maintainers = [ maintainers.spacekookie ];
21   };