Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at master 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-09-28"; 10 11 src = fetchFromGitHub { 12 owner = "glennj"; 13 repo = "exercism-cli-fish-wrapper"; 14 rev = "f6627c00324b2599239e3835af39adce04e1091c"; 15 hash = "sha256-bS1NN6oWi5j9uPwhuMApDRZlVYwOwlIC9NcdBZ9noL8="; 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}