Added `boot.modprobeConfig.useUbuntuModuleBlacklist`. (#290330)
[NixPkgs.git] / pkgs / by-name / th / thumbs / package.nix
blobb4c795bc8cf816a5d53c2d121bbe23962467f264
1 { lib, rustPlatform, fetchFromGitHub }:
3 rustPlatform.buildRustPackage rec {
4   pname = "thumbs";
5   version = "0.8.0";
7   src = fetchFromGitHub {
8     owner = "fcsonline";
9     repo = "tmux-thumbs";
10     rev = version;
11     sha256 = "sha256-XMz1ZOTz2q1Dt4QdxG83re9PIsgvxTTkytESkgKxhGM=";
12   };
14   cargoHash = "sha256-PfTx6PcW5DESShfr9Ekhbq1asZ0xUGM4Vi9EwmoDv+s";
16   patches = [ ./fix.patch ];
18   meta = with lib; {
19     homepage = "https://github.com/fcsonline/tmux-thumbs";
20     description = "Lightning fast version of tmux-fingers written in Rust, copy/pasting tmux like vimium/vimperator";
21     license = licenses.mit;
22     maintainers = with maintainers; [ ghostbuster91 ];
23   };