Skip to content

Commit 31e4917

Browse files
committed
fix funflow
1 parent 917d403 commit 31e4917

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

example/Haskell/Funflow/shell.nix

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
let
22
jupyterLibPath = ../../..;
33
nixpkgsPath = jupyterLibPath + "/nix";
4+
jupyter = import jupyterLibPath {};
45
pkgs = import nixpkgsPath {};
5-
jupyter = import jupyterLibPath { pkgs=pkgs; };
6-
7-
funflow = pkgs.haskell.lib.dontCheck pkgs.haskellPackages.funflow;
6+
dontCheck = pkgs.haskell.lib.dontCheck;
87

98
ihaskellWithPackages = jupyter.kernels.iHaskellWith {
109
#extraIHaskellFlags = "--debug";
1110
name = "Funflow";
1211
packages = p: [
13-
funflow
12+
(dontCheck (p.callHackage "funflow" "1.5.0" {}))
1413
];
1514
};
1615

0 commit comments

Comments
 (0)