Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 23 lines 575 B view raw
1{ 2 lib, 3 buildFishPlugin, 4 fetchFromGitHub, 5}: 6buildFishPlugin { 7 pname = "bang-bang"; 8 version = "0-unstable-2023-07-23"; 9 10 src = fetchFromGitHub { 11 owner = "oh-my-fish"; 12 repo = "plugin-bang-bang"; 13 rev = "ec991b80ba7d4dda7a962167b036efc5c2d79419"; 14 hash = "sha256-oPPCtFN2DPuM//c48SXb4TrFRjJtccg0YPXcAo0Lxq0="; 15 }; 16 17 meta = { 18 description = "Bash style history substitution for Oh My Fish"; 19 homepage = "https://github.com/oh-my-fish/plugin-bang-bang"; 20 license = lib.licenses.mit; 21 maintainers = with lib.maintainers; [ theobori ]; 22 }; 23}