From 1ae613f4b8ff15cdf021cb7c65f808618e6de4c9 Mon Sep 17 00:00:00 2001 From: figsoda Date: Mon, 17 Apr 2023 15:51:37 -0400 Subject: [PATCH] peep: 0.1.4-post.2021-08-17 -> 0.1.6 Diff: https://github.com/ryochack/peep/compare/0eceafe16ff1f9c6d6784cca75b6f612c38901c4...v0.1.6 Changelog: https://github.com/ryochack/peep/releases/tag/v0.1.6 --- pkgs/tools/misc/peep/default.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/misc/peep/default.nix b/pkgs/tools/misc/peep/default.nix index 6fdacce9e5f..1ecad087ccf 100644 --- a/pkgs/tools/misc/peep/default.nix +++ b/pkgs/tools/misc/peep/default.nix @@ -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 ]; }; }