linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / misc / peep / default.nix
blob161ea3f75e635c247d0fdda6b5fb89a4ca1a7909
1 { lib, rustPlatform, fetchFromGitHub }:
3 rustPlatform.buildRustPackage rec {
4   pname = "peep";
5   version = "0.1.4";
7   src = fetchFromGitHub {
8     owner = "ryochack";
9     repo = "peep";
10     rev = "v${version}";
11     sha256 = "0c0fphnhq9vg9jjnkl35k56jbcnyz2ballsnkbm2xrh8vbyvk1av";
12   };
14   cargoPatches = [ ./0001-Add-Cargo.lock-by-running-cargo-vendor.patch ];
15   cargoSha256 = "15qc9a4zpnq7lbcaji1mkik93qkx366misczbi1mipiq5w7sgn0l";
17   meta = with lib; {
18     description = "The CLI text viewer tool that works like less command on small pane within the terminal window";
19     license = licenses.mit;
20     homepage = "https://github.com/ryochack/peep";
21     maintainers = with maintainers; [ ma27 ];
22   };