fishPlugins.exercism-cli-fish-wrapper: init at 0-unstable-2024-11-29 (#368027)

This commit is contained in:
kirillrdy
2025-02-13 10:25:42 +11:00
committed by GitHub
2 changed files with 28 additions and 0 deletions
+2
View File
@@ -21,6 +21,8 @@ lib.makeScope newScope (self: with self; {
done = callPackage ./done.nix { };
exercism-cli-fish-wrapper = callPackage ./exercism-cli-fish-wrapper.nix { };
fifc = callPackage ./fifc.nix { };
fish-bd = callPackage ./fish-bd.nix { };
@@ -0,0 +1,26 @@
{
lib,
buildFishPlugin,
fetchFromGitHub,
unstableGitUpdater,
}:
buildFishPlugin {
pname = "exercism-cli-fish-wrapper";
version = "0-unstable-2024-11-29";
src = fetchFromGitHub {
owner = "glennj";
repo = "exercism-cli-fish-wrapper";
rev = "f25f76dcc9bf164c30a9292a16a2159c9350a146";
hash = "sha256-R9Vf8tlLytqvMlJdWGyTy1g0TUhOcp7tifz0Bxb4Gts=";
};
passthru.updateScript = unstableGitUpdater { };
meta = {
description = "Fish wrapper for the Exercism CLI";
homepage = "https://github.com/glennj/exercism-cli-fish-wrapper";
license = lib.licenses.unfree; # No upstream license
maintainers = with lib.maintainers; [ anomalocaris ];
};
}