mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-11 18:32:23 +08:00
fishPlugins.macos: init at 7.0.0 (#391656)
This commit is contained in:
@@ -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 { };
|
||||
|
||||
25
pkgs/shells/fish/plugins/macos.nix
Normal file
25
pkgs/shells/fish/plugins/macos.nix
Normal 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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user