Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 24 lines 502 B view raw
1{ 2 lib, 3 buildFishPlugin, 4 fetchFromGitHub, 5}: 6 7buildFishPlugin rec { 8 pname = "puffer"; 9 version = "1.0.0"; 10 11 src = fetchFromGitHub { 12 owner = "nickeb96"; 13 repo = "puffer-fish"; 14 rev = "v${version}"; 15 hash = "sha256-2niYj0NLfmVIQguuGTA7RrPIcorJEPkxhH6Dhcy+6Bk="; 16 }; 17 18 meta = { 19 description = "Text Expansions for Fish"; 20 homepage = "https://github.com/nickeb96/puffer-fish"; 21 license = lib.licenses.mit; 22 maintainers = with lib.maintainers; [ quantenzitrone ]; 23 }; 24}