Skip to content

Commit

Permalink
exercism-cli-fish-wrapper: init at 0-unstable-2024-11-29
Browse files Browse the repository at this point in the history
  • Loading branch information
Anomalocaridid committed Dec 24, 2024
1 parent 0697226 commit 9c668ec
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkgs/shells/fish/plugins/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down
26 changes: 26 additions & 0 deletions pkgs/shells/fish/plugins/exercism-cli-fish-wrapper.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}

0 comments on commit 9c668ec

Please sign in to comment.