aboutsummaryrefslogtreecommitdiffstats
path: root/nomath-org.nix
blob: b48c8b256b6a4ccc0a2d1a33d9c7c4ae8f62c6b2 (plain)
1
2
3
4
5
6
7
8
9
{ stdenv }:
stdenv.mkDerivation {
  name = "nomath-org";
  src = ./.;
  installPhase = ''
    mkdir -p $out
    cp src/index.html $out
  '';
}