Unverified Commit 2471d397 authored by kirillrdy's avatar kirillrdy Committed by GitHub
Browse files

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

parents 0bc90f26 033bec6c
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -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 { };
+26 −0
Original line number Diff line number Diff line
{
  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 ];
  };
}