Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 24 lines 539 B view raw
1{ 2 lib, 3 buildFishPlugin, 4 fetchFromGitHub, 5}: 6 7buildFishPlugin { 8 pname = "fishbang"; 9 version = "0-unstable-2025-01-10"; 10 11 src = fetchFromGitHub { 12 owner = "BrewingWeasel"; 13 repo = "fishbang"; 14 rev = "f8d2721ac5508dbda54a666ebf12f1492c478277"; 15 hash = "sha256-VHtjt3Xobvs0DTXJ1mFU8i84EEsNQv3yqbhjs7c1mNE="; 16 }; 17 18 meta = { 19 description = "Bash bang commands for fish"; 20 homepage = "https://github.com/BrewingWeasel/fishbang"; 21 license = lib.licenses.bsd3; 22 maintainers = [ lib.maintainers.marcel ]; 23 }; 24}