fishPlugins.exercism-cli-fish-wrapper: init at 0-unstable-2024-11-29

+28
+2
pkgs/shells/fish/plugins/default.nix
··· 21 22 done = callPackage ./done.nix { }; 23 24 fifc = callPackage ./fifc.nix { }; 25 26 fish-bd = callPackage ./fish-bd.nix { };
··· 21 22 done = callPackage ./done.nix { }; 23 24 + exercism-cli-fish-wrapper = callPackage ./exercism-cli-fish-wrapper.nix { }; 25 + 26 fifc = callPackage ./fifc.nix { }; 27 28 fish-bd = callPackage ./fish-bd.nix { };
+26
pkgs/shells/fish/plugins/exercism-cli-fish-wrapper.nix
···
··· 1 + { 2 + lib, 3 + buildFishPlugin, 4 + fetchFromGitHub, 5 + unstableGitUpdater, 6 + }: 7 + buildFishPlugin { 8 + pname = "exercism-cli-fish-wrapper"; 9 + version = "0-unstable-2024-11-29"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "glennj"; 13 + repo = "exercism-cli-fish-wrapper"; 14 + rev = "f25f76dcc9bf164c30a9292a16a2159c9350a146"; 15 + hash = "sha256-R9Vf8tlLytqvMlJdWGyTy1g0TUhOcp7tifz0Bxb4Gts="; 16 + }; 17 + 18 + passthru.updateScript = unstableGitUpdater { }; 19 + 20 + meta = { 21 + description = "Fish wrapper for the Exercism CLI"; 22 + homepage = "https://github.com/glennj/exercism-cli-fish-wrapper"; 23 + license = lib.licenses.unfree; # No upstream license 24 + maintainers = with lib.maintainers; [ anomalocaris ]; 25 + }; 26 + }