blob: 04e56f7bdb735e44bd226cfca9297bf30c0334f2 (
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/*.otf $out
'';
}
|