at master 28 lines 652 B view raw
1{ 2 lib, 3 buildFishPlugin, 4 fetchFromGitHub, 5 nix-update-script, 6}: 7 8buildFishPlugin rec { 9 pname = "macos"; 10 version = "7.2.0"; 11 12 src = fetchFromGitHub { 13 owner = "halostatue"; 14 repo = "fish-macos"; 15 tag = "v${version}"; 16 hash = "sha256-yTwN2ztdU+vk+AXEfsJUN7J4KqrbLSWHgA0q5rUT5CE="; 17 }; 18 19 passthru.updateScript = nix-update-script { }; 20 21 meta = { 22 description = "MacOS functions for Fish"; 23 homepage = "https://github.com/halostatue/fish-macos"; 24 changelog = "https://github.com/halostatue/fish-macos/blob/v${version}/CHANGELOG.md"; 25 license = lib.licenses.mit; 26 maintainers = [ lib.maintainers.samasaur ]; 27 }; 28}