lol
1{ lib, rustPlatform, fetchFromGitHub }:
2
3rustPlatform.buildRustPackage rec {
4 pname = "thumbs";
5 version = "0.7.1";
6
7 src = fetchFromGitHub {
8 owner = "fcsonline";
9 repo = "tmux-thumbs";
10 rev = version;
11 sha256 = "sha256-PH1nscmVhxJFupS7dlbOb+qEwG/Pa/2P6XFIbR/cfaQ=";
12 };
13
14 cargoSha256 = "sha256-6htKiXMMyYRFefJzvDnmdx3CJ3XL8zONhGlV2wcbr9g=";
15
16 patches = [ ./fix.patch ];
17
18 meta = with lib; {
19 homepage = "https://github.com/fcsonline/tmux-thumbs";
20 description = "A lightning fast version copy/pasting like vimium/vimperator";
21 license = licenses.mit;
22 maintainers = with maintainers; [ ghostbuster91 ];
23 };
24}