Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 26 lines 557 B view raw
1{ 2 lib, 3 buildFishPlugin, 4 fetchFromGitHub, 5}: 6let 7 self = buildFishPlugin { 8 pname = "spark"; 9 version = "1.2.0"; 10 11 src = fetchFromGitHub { 12 owner = "jorgebucaran"; 13 repo = "spark.fish"; 14 rev = "refs/tags/${self.version}"; 15 hash = "sha256-AIFj7lz+QnqXGMBCfLucVwoBR3dcT0sLNPrQxA5qTuU="; 16 }; 17 18 meta = { 19 description = "Sparklines for Fish"; 20 homepage = "https://github.com/jorgebucaran/spark.fish"; 21 license = lib.licenses.mit; 22 maintainers = with lib.maintainers; [ theobori ]; 23 }; 24 }; 25in 26self