2022-02-27 20:34:45 +00:00
|
|
|
{ lib, rustPlatform, fetchFromGitHub }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "thumbs";
|
|
|
|
version = "0.7.1";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "fcsonline";
|
|
|
|
repo = "tmux-thumbs";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "sha256-PH1nscmVhxJFupS7dlbOb+qEwG/Pa/2P6XFIbR/cfaQ=";
|
|
|
|
};
|
|
|
|
|
|
|
|
cargoSha256 = "sha256-6htKiXMMyYRFefJzvDnmdx3CJ3XL8zONhGlV2wcbr9g=";
|
|
|
|
|
2023-02-26 05:06:17 +00:00
|
|
|
patches = [ ./fix.patch ];
|
|
|
|
|
2022-02-27 20:34:45 +00:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/fcsonline/tmux-thumbs";
|
|
|
|
description = "A lightning fast version copy/pasting like vimium/vimperator";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ ghostbuster91 ];
|
|
|
|
};
|
|
|
|
}
|