python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / shell-hist / default.nix
blob48e8667cc7e87389c2de9fe10c45045f30b15108
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 = "1b2cfs03vlaz7jnr67ilgjfi7cm59izpcdi6pyvbzv8s46z2dysp";
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   };