blob: a8881824d88f2a5e1461420791578d8e768058d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{
lib,
buildFishPlugin,
fetchFromGitHub,
unstableGitUpdater,
}:
buildFishPlugin {
pname = "exercism-cli-fish-wrapper";
version = "0-unstable-2026-05-04";
src = fetchFromGitHub {
owner = "glennj";
repo = "exercism-cli-fish-wrapper";
rev = "dcf821898828b53e36f40943719546d41f8434b4";
hash = "sha256-UupN+Pj1eUx5YXDcfU94lnQdvpDsA0D+AQYuX+WGI14=";
};
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 ];
};
}
|