Worf: various updates: nvim-telescope, yabai, sketchybar, builders
This commit is contained in:
14
common/sketchybar-app-font.nix
Normal file
14
common/sketchybar-app-font.nix
Normal 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
|
||||
'';
|
||||
}
|
||||
Reference in New Issue
Block a user