File tree Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Original file line number Diff line number Diff 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 { } ;
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments