blob: 8db645c25420d553d6bcb0f7eee50ae547735155 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{ stdenv
, cm_unicode
}:
stdenv.mkDerivation {
name = "static-nomath-org";
src = ./.;
installPhase = ''
mv public $out
cp ${cm_unicode}/share/fonts/opentype/cmunvt.otf $out
'';
}
|