nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildFishPlugin,
4 fetchFromGitHub,
5 unstableGitUpdater,
6}:
7buildFishPlugin {
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}