2020-03-17 22:18:57 +00:00
|
|
|
{ lib, rustPlatform, fetchFromGitHub }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "peep";
|
|
|
|
version = "0.1.4";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ryochack";
|
|
|
|
repo = "peep";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0c0fphnhq9vg9jjnkl35k56jbcnyz2ballsnkbm2xrh8vbyvk1av";
|
|
|
|
};
|
|
|
|
|
|
|
|
cargoPatches = [ ./0001-Add-Cargo.lock-by-running-cargo-vendor.patch ];
|
2021-05-07 12:00:49 +01:00
|
|
|
cargoSha256 = "12jqhvf8kdi17c442hl8sfpgxhni07x59khjwyyn54bnwc5h3zf9";
|
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";
|
2021-08-27 21:09:49 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2020-03-17 22:18:57 +00:00
|
|
|
};
|
|
|
|
}
|