fishPlugins.macos: init at 7.0.0 (#391656)

This commit is contained in:
Gaétan Lepage
2025-03-28 22:22:45 +01:00
committed by GitHub
2 changed files with 27 additions and 0 deletions

View File

@@ -54,6 +54,8 @@ lib.makeScope newScope (self: with self; {
hydro = callPackage ./hydro.nix { };
macos = callPackage ./macos.nix { };
nvm = callPackage ./nvm.nix { };
pisces = callPackage ./pisces.nix { };

View File

@@ -0,0 +1,25 @@
{
lib,
buildFishPlugin,
fetchFromGitHub,
}:
buildFishPlugin rec {
pname = "macos";
version = "7.0.0";
src = fetchFromGitHub {
owner = "halostatue";
repo = "fish-macos";
tag = "v${version}";
hash = "sha256-o5VBeoA62KRDcnJXdXzllF1FMaSLMW1rxhaRC4rzWrg=";
};
meta = {
description = "MacOS functions for Fish";
homepage = "https://github.com/halostatue/fish-macos";
changelog = "https://github.com/halostatue/fish-macos/blob/v${version}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.samasaur ];
};
}