ccsymbols: use installFonts

This commit is contained in:
Sigmanificient
2026-05-19 01:27:41 +02:00
parent 762ebf5a1b
commit adef4cf5ea
+9 -8
View File
@@ -2,6 +2,7 @@
lib,
stdenvNoCC,
fetchurl,
installFonts,
unzip,
}:
@@ -16,15 +17,15 @@ stdenvNoCC.mkDerivation rec {
sourceRoot = ".";
nativeBuildInputs = [ unzip ];
outputs = [
"out"
"webfont"
];
installPhase = ''
runHook preInstall
install -Dm644 CCSymbols.* -t $out/share/fonts/ccsymbols
runHook postInstall
'';
nativeBuildInputs = [
installFonts
unzip
];
passthru = { inherit pname version; };