blob: 805e8e535da43e89d6571d63e6ae6e4e7c216d92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{ lib
, stdenv
, cm_unicode
}:
stdenv.mkDerivation {
name = "nomath-org";
src = ./.;
installPhase = ''
mkdir -p $out
cp src/index.html $out
cp ${cm_unicode}/share/fonts/opentype/cmunvt.otf $out
'';
}
|