Unverified Commit 2cef51e6 authored by figsoda's avatar figsoda Committed by GitHub
Browse files

Merge pull request #226700 from figsoda/peep

parents 792dad7b 1ae613f4
Loading
Loading
Loading
Loading
+7 −6
Original line number Diff line number Diff line
@@ -2,21 +2,22 @@

rustPlatform.buildRustPackage rec {
  pname = "peep";
  version = "0.1.4-post.2021-08-17";
  version = "0.1.6";

  src = fetchFromGitHub {
    owner = "ryochack";
    repo = "peep";
    rev = "0eceafe16ff1f9c6d6784cca75b6f612c38901c4";
    sha256 = "sha256-HtyT9kFS7derPhiBzICHIz3AvYVcYpUj1OW+t5RivRs=";
    rev = "v${version}";
    hash = "sha256-6Y7ZI0kIPE7uMMOkXgm75JMEec090xZPBJFJr9DaswA=";
  };

  cargoSha256 = "sha256-sHsmHCMuHc56Mkqk2NUtZgC0RGyqhPvW1fKHkEAhqYk=";
  cargoHash = "sha256-CDWa03H8vWfhx2dwZU5rAV3fSwAGqCIPcvl+lTG4npE=";

  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; [ ];
    changelog = "https://github.com/ryochack/peep/releases/tag/${src.rev}";
    license = licenses.mit;
    maintainers = with maintainers; [ figsoda ];
  };
}