Worf: various updates: nvim-telescope, yabai, sketchybar, builders

This commit is contained in:
2023-12-07 10:22:35 +01:00
committed by Felix Albrigtsen
parent 3030637f01
commit 99e61c719f
8 changed files with 433 additions and 12 deletions

View File

@@ -0,0 +1,14 @@
{ lib, stdenvNoCC, fetchurl }:
stdenvNoCC.mkDerivation rec {
name = "sketchybar-app-font";
version = "1.0.20";
src = fetchurl {
url = "https://github.com/kvndrsslr/sketchybar-app-font/releases/download/v${version}/sketchybar-app-font.ttf";
hash = "sha256-pf3SSxzlNIdbXXHfRauFCnrVUMOd5J9sSUE9MsfWrwo=";
};
phases = [ "installPhase" ];
installPhase = ''
install -Dm644 $src $out/share/fonts/sketchybar-app-font/Regular.ttf
'';
}