nixpkgs/pkgs/tools/misc/peep/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
666 B
Nix
Raw Normal View History

2020-03-17 22:18:57 +00:00
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "peep";
version = "0.1.4-post.2021-08-17";
2020-03-17 22:18:57 +00:00
src = fetchFromGitHub {
owner = "ryochack";
repo = "peep";
rev = "0eceafe16ff1f9c6d6784cca75b6f612c38901c4";
sha256 = "sha256-HtyT9kFS7derPhiBzICHIz3AvYVcYpUj1OW+t5RivRs=";
2020-03-17 22:18:57 +00:00
};
cargoSha256 = "sha256-sHsmHCMuHc56Mkqk2NUtZgC0RGyqhPvW1fKHkEAhqYk=";
2020-03-17 22:18:57 +00:00
meta = with lib; {
description = "The CLI text viewer tool that works like less command on small pane within the terminal window";
license = licenses.mit;
homepage = "https://github.com/ryochack/peep";
maintainers = with maintainers; [ ];
2020-03-17 22:18:57 +00:00
};
}