Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 26 lines 690 B view raw
1{ 2 lib, 3 buildFishPlugin, 4 fetchFromGitHub, 5 unstableGitUpdater, 6}: 7buildFishPlugin { 8 pname = "exercism-cli-fish-wrapper"; 9 version = "0-unstable-2025-07-14"; 10 11 src = fetchFromGitHub { 12 owner = "glennj"; 13 repo = "exercism-cli-fish-wrapper"; 14 rev = "bb03e058d4e9c5d5918e27ae7e046fff2c91adb0"; 15 hash = "sha256-taIZSyaObVmnjp6ME/QgGKlWZoeOmgRVRLYC0bb8XWk="; 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}