Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 24 lines 544 B view raw
1{ 2 lib, 3 buildFishPlugin, 4 fetchFromGitHub, 5}: 6 7buildFishPlugin rec { 8 pname = "async-prompt"; 9 version = "1.2.0"; 10 11 src = fetchFromGitHub { 12 owner = "acomagu"; 13 repo = "fish-async-prompt"; 14 rev = "v${version}"; 15 hash = "sha256-B7Ze0a5Zp+5JVsQUOv97mKHh5wiv3ejsDhJMrK7YOx4="; 16 }; 17 18 meta = with lib; { 19 description = "Make your prompt asynchronous to improve the reactivity"; 20 homepage = "https://github.com/acomagu/fish-async-prompt"; 21 license = licenses.mit; 22 maintainers = with maintainers; [ figsoda ]; 23 }; 24}