We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 917d403 commit 31e4917Copy full SHA for 31e4917
example/Haskell/Funflow/shell.nix
@@ -1,16 +1,15 @@
1
let
2
jupyterLibPath = ../../..;
3
nixpkgsPath = jupyterLibPath + "/nix";
4
+ jupyter = import jupyterLibPath {};
5
pkgs = import nixpkgsPath {};
- jupyter = import jupyterLibPath { pkgs=pkgs; };
6
-
7
- funflow = pkgs.haskell.lib.dontCheck pkgs.haskellPackages.funflow;
+ dontCheck = pkgs.haskell.lib.dontCheck;
8
9
ihaskellWithPackages = jupyter.kernels.iHaskellWith {
10
#extraIHaskellFlags = "--debug";
11
name = "Funflow";
12
packages = p: [
13
- funflow
+ (dontCheck (p.callHackage "funflow" "1.5.0" {}))
14
];
15
};
16
0 commit comments