1
0
Fork 0
forked from NixOS/nixpkgs

fishPlugins.macos: 7.0.0 -> 7.0.1; add updateScript (#405119)

This commit is contained in:
Felix Bargfeldt 2025-05-26 22:15:08 +02:00 committed by GitHub
commit 08ed12d61f
Signed by: github
GPG key ID: B5690EEEBB952194

View file

@ -2,19 +2,22 @@
lib, lib,
buildFishPlugin, buildFishPlugin,
fetchFromGitHub, fetchFromGitHub,
nix-update-script,
}: }:
buildFishPlugin rec { buildFishPlugin rec {
pname = "macos"; pname = "macos";
version = "7.0.0"; version = "7.0.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "halostatue"; owner = "halostatue";
repo = "fish-macos"; repo = "fish-macos";
tag = "v${version}"; tag = "v${version}";
hash = "sha256-o5VBeoA62KRDcnJXdXzllF1FMaSLMW1rxhaRC4rzWrg="; hash = "sha256-E5HfcGEP5YnUXY50eSPPtLxXL9N7nDInlAw91dNehhc=";
}; };
passthru.updateScript = nix-update-script { };
meta = { meta = {
description = "MacOS functions for Fish"; description = "MacOS functions for Fish";
homepage = "https://github.com/halostatue/fish-macos"; homepage = "https://github.com/halostatue/fish-macos";