mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
f2bf0dbd4e
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
28 lines
873 B
Nix
28 lines
873 B
Nix
{ lib, buildFishPlugin, fetchFromGitHub }:
|
|
|
|
# Due to a quirk in tide breaking wrapFish, we need to add additional commands in the config.fish
|
|
# Refer to the following comment to get you setup: https://github.com/NixOS/nixpkgs/pull/201646#issuecomment-1320893716
|
|
buildFishPlugin rec {
|
|
pname = "tide";
|
|
version = "6.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "IlanCosman";
|
|
repo = "tide";
|
|
rev = "v${version}";
|
|
hash = "sha256-oLD7gYFCIeIzBeAW1j62z5FnzWAp3xSfxxe7kBtTLgA=";
|
|
};
|
|
|
|
#buildFishplugin will only move the .fish files, but tide has a tide configure function
|
|
postInstall = ''
|
|
cp -R functions/tide $out/share/fish/vendor_functions.d/
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "The ultimate Fish prompt";
|
|
homepage = "https://github.com/IlanCosman/tide";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.jocelynthode ];
|
|
};
|
|
}
|
|
|