nix-jupyter-env/default.nix

10 lines
338 B
Nix
Raw Normal View History

2016-03-07 12:15:31 +00:00
{ 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;
}