Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 21 lines 536 B view raw
1{ 2 lib, 3 buildFishPlugin, 4 fetchFromGitHub, 5}: 6buildFishPlugin { 7 pname = "gruvbox"; 8 version = "0-unstable-2021-10-12"; 9 src = fetchFromGitHub { 10 owner = "jomik"; 11 repo = "fish-gruvbox"; 12 rev = "80a6f3a7b31beb6f087b0c56cbf3470204759d1c"; 13 hash = "sha256-vL2/Nm9Z9cdaptx8sJqbX5AnRtfd68x4ZKWdQk5Cngo="; 14 }; 15 meta = { 16 description = "Gruvbox theme for fish shell"; 17 homepage = "https://github.com/Jomik/fish-gruvbox"; 18 license = lib.licenses.mit; 19 maintainers = with lib.maintainers; [ msladecek ]; 20 }; 21}