added space-grotesk

This commit is contained in:
kenji
2025-08-11 20:15:12 -05:00
parent 600db74e94
commit 9d0697ae8c
4 changed files with 67 additions and 12 deletions
+23
View File
@@ -0,0 +1,23 @@
{
stdenv,
fetchFromGitHub,
...
}:
stdenv.mkDerivation {
pname = "space-grotesk";
version = "2.0.0";
src = fetchFromGitHub {
owner = "floriankarsten";
repo = "space-grotesk";
rev = "2.0.0";
sha256 = "";
};
installPhase = ''
runHook preInstall
install -Dm644 $src/fonts/*.otf -t $out/share/fonts/opentype
runHook postInstall
'';
}