My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/applications/science/math/wolfram-engine/notebook.nix

9 lines
299 B

{ lib, stdenv, writeScriptBin, jupyter, wolfram-for-jupyter-kernel }:
let
wolfram-jupyter = jupyter.override { definitions = { wolfram = wolfram-for-jupyter-kernel.definition; }; };
in
writeScriptBin "wolfram-notebook" ''
#! ${stdenv.shell}
${wolfram-jupyter}/bin/jupyter-notebook
''