Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 24 lines 610 B view raw
1{ 2 lib, 3 buildFishPlugin, 4 fetchFromGitHub, 5}: 6 7buildFishPlugin rec { 8 pname = "sponge"; 9 version = "1.1.0"; 10 11 src = fetchFromGitHub { 12 owner = "meaningful-ooo"; 13 repo = pname; 14 rev = version; 15 sha256 = "sha256-MdcZUDRtNJdiyo2l9o5ma7nAX84xEJbGFhAVhK+Zm1w="; 16 }; 17 18 meta = with lib; { 19 description = "Keeps your fish shell history clean from typos, incorrectly used commands and everything you don't want to store due to privacy reasons"; 20 homepage = "https://github.com/meaningful-ooo/sponge"; 21 license = licenses.mit; 22 maintainers = with maintainers; [ quantenzitrone ]; 23 }; 24}