Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 23 lines 548 B view raw
1{ 2 lib, 3 buildFishPlugin, 4 fetchFromGitHub, 5}: 6buildFishPlugin rec { 7 pname = "fzf"; 8 version = "0.16.6-unstable-2021-05-12"; 9 10 src = fetchFromGitHub { 11 owner = "jethrokuan"; 12 repo = pname; 13 rev = "479fa67d7439b23095e01b64987ae79a91a4e283"; 14 sha256 = "sha256-28QW/WTLckR4lEfHv6dSotwkAKpNJFCShxmKFGQQ1Ew="; 15 }; 16 17 meta = with lib; { 18 description = "Ef-fish-ient fish keybindings for fzf"; 19 homepage = "https://github.com/jethrokuan/fzf"; 20 license = licenses.mit; 21 maintainers = with maintainers; [ Scrumplex ]; 22 }; 23}