depot/third_party/nixpkgs/pkgs/tools/misc/peep/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

24 lines
723 B
Nix

{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "peep";
version = "0.1.6";
src = fetchFromGitHub {
owner = "ryochack";
repo = "peep";
rev = "v${version}";
hash = "sha256-6Y7ZI0kIPE7uMMOkXgm75JMEec090xZPBJFJr9DaswA=";
};
cargoHash = "sha256-CDWa03H8vWfhx2dwZU5rAV3fSwAGqCIPcvl+lTG4npE=";
meta = with lib; {
description = "CLI text viewer tool that works like less command on small pane within the terminal window";
homepage = "https://github.com/ryochack/peep";
changelog = "https://github.com/ryochack/peep/releases/tag/${src.rev}";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
mainProgram = "peep";
};
}