Skip to content

Commit a1438f1

Browse files
authored
fishPlugins.macos: init at 7.0.0 (#391656)
2 parents fbb9c25 + dff8031 commit a1438f1

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

pkgs/shells/fish/plugins/default.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ lib.makeScope newScope (self: with self; {
5454

5555
hydro = callPackage ./hydro.nix { };
5656

57+
macos = callPackage ./macos.nix { };
58+
5759
nvm = callPackage ./nvm.nix { };
5860

5961
pisces = callPackage ./pisces.nix { };

pkgs/shells/fish/plugins/macos.nix

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
lib,
3+
buildFishPlugin,
4+
fetchFromGitHub,
5+
}:
6+
7+
buildFishPlugin rec {
8+
pname = "macos";
9+
version = "7.0.0";
10+
11+
src = fetchFromGitHub {
12+
owner = "halostatue";
13+
repo = "fish-macos";
14+
tag = "v${version}";
15+
hash = "sha256-o5VBeoA62KRDcnJXdXzllF1FMaSLMW1rxhaRC4rzWrg=";
16+
};
17+
18+
meta = {
19+
description = "MacOS functions for Fish";
20+
homepage = "https://github.com/halostatue/fish-macos";
21+
changelog = "https://github.com/halostatue/fish-macos/blob/v${version}/CHANGELOG.md";
22+
license = lib.licenses.mit;
23+
maintainers = [ lib.maintainers.samasaur ];
24+
};
25+
}

0 commit comments

Comments
 (0)