nix-jupyter-env/default.nix
2016-03-07 12:15:31 +00:00

9 lines
338 B
Nix

{ mkDerivation, base, stdenv, bin-package-db }:
mkDerivation {
pname = "jupyter-env";
version = "0.1.0.0";
src = ./.;
libraryHaskellDepends = [ base ];
description = "Example environment for running a Jupyter environment in Nix that includes ipython and ihaskell (contributions welcome)";
license = stdenv.lib.licenses.mit;
}