aboutsummaryrefslogtreecommitdiffstats
path: root/nomath-org.nix
diff options
context:
space:
mode:
authorLibravatar Alexander Foremny <aforemny@posteo.de>2024-03-01 09:52:04 +0100
committerLibravatar Alexander Foremny <aforemny@posteo.de>2024-03-01 09:52:04 +0100
commitc9c7a0017c3afdd25cac349d5e1cd73b03d1b4c0 (patch)
tree15d0155ceb4a89067cc71b274e807b32cef36150 /nomath-org.nix
parent40c5224ff080d9ce01fdc8f6a8cf4673a63d121f (diff)
get base.css from static.nomath.org
Diffstat (limited to 'nomath-org.nix')
-rw-r--r--nomath-org.nix6
1 files changed, 1 insertions, 5 deletions
diff --git a/nomath-org.nix b/nomath-org.nix
index 805e8e5..b48c8b2 100644
--- a/nomath-org.nix
+++ b/nomath-org.nix
@@ -1,13 +1,9 @@
-{ lib
-, stdenv
-, cm_unicode
-}:
+{ stdenv }:
stdenv.mkDerivation {
name = "nomath-org";
src = ./.;
installPhase = ''
mkdir -p $out
cp src/index.html $out
- cp ${cm_unicode}/share/fonts/opentype/cmunvt.otf $out
'';
}