Files
nixpkgs/pkgs/shells/fish/plugins/transient-fish.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

24 lines
564 B
Nix

{
lib,
buildFishPlugin,
fetchFromGitHub,
}:
buildFishPlugin {
pname = "transient-fish";
version = "0-unstable-2024-03-10";
src = fetchFromGitHub {
owner = "zzhaolei";
repo = "transient.fish";
rev = "be0093f1799462a93953e69896496dee4d063fd6";
hash = "sha256-rEkCimnkxcydKRI2y4DxEM7FD7F2/cGTZJN2Edq/Acc=";
};
meta = {
description = "Fish plugin to enable a transient prompt";
homepage = "https://github.com/zzhaolei/transient.fish";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ iynaix ];
};
}