blob: ee9c2f2e4c8b4b76b9a857a98e19c63fecd0242c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{
lib,
buildFishPlugin,
fetchFromGitHub,
nix-update-script,
}:
buildFishPlugin rec {
pname = "macos";
version = "7.2.0";
src = fetchFromGitHub {
owner = "halostatue";
repo = "fish-macos";
tag = "v${version}";
hash = "sha256-yTwN2ztdU+vk+AXEfsJUN7J4KqrbLSWHgA0q5rUT5CE=";
};
passthru.updateScript = nix-update-script { };
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 ];
};
}
|