Files
nixpkgs/pkgs/shells/fish/plugins/sponge.nix
T
2025-11-08 12:27:35 +10:00

25 lines
611 B
Nix

{
lib,
buildFishPlugin,
fetchFromGitHub,
}:
buildFishPlugin rec {
pname = "sponge";
version = "1.1.0";
src = fetchFromGitHub {
owner = "meaningful-ooo";
repo = "sponge";
rev = version;
sha256 = "sha256-MdcZUDRtNJdiyo2l9o5ma7nAX84xEJbGFhAVhK+Zm1w=";
};
meta = {
description = "Keeps your fish shell history clean from typos, incorrectly used commands and everything you don't want to store due to privacy reasons";
homepage = "https://github.com/meaningful-ooo/sponge";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ quantenzitrone ];
};
}