mirror of
https://git.feal.no/felixalb/nixos-config.git
synced 2024-12-22 12:07:29 +01:00
15 lines
454 B
Nix
15 lines
454 B
Nix
|
{ 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
|
||
|
'';
|
||
|
}
|