Skip to content

Commit 6daa57b

Browse files
committed
Update the nix file
1 parent e8e9b50 commit 6daa57b

File tree

1 file changed

+15
-7
lines changed

1 file changed

+15
-7
lines changed

default.nix

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
# nix-shell --argstr compiler "ghc8107"
55

66
{ nixpkgs ? import (builtins.fetchTarball
7-
"https://github.com/NixOS/nixpkgs/archive/refs/tags/22.05.tar.gz") { }
8-
, compiler ? "ghc922" }:
7+
"https://github.com/NixOS/nixpkgs/archive/refs/tags/22.11.tar.gz") { }
8+
, compiler ? "default" }:
99
let
1010
utils = let
1111
src = fetchGit {
@@ -30,12 +30,20 @@ let
3030
(with nixpkgs.haskell.lib;
3131
self: super: {
3232
packdiff = utils.local super "packdiff" ./. "" inShell;
33-
streamly = utils.composewell super "streamly"
34-
"8240f5f870fe47623df99514aed6a542f80c9641";
35-
streamly-core = utils.composewellDir super "streamly"
36-
"8240f5f870fe47623df99514aed6a542f80c9641" "/core";
33+
streamly =
34+
super.callHackageDirect
35+
{ pkg = "streamly";
36+
ver = "0.9.0";
37+
sha256 = "1ab5n253krgccc66j7ch1lx328b1d8mhkfz4szl913chr9pmbv3q";
38+
} {};
39+
streamly-core =
40+
super.callHackageDirect
41+
{ pkg = "streamly-core";
42+
ver = "0.1.0";
43+
sha256 = "00lfgvicap41rxapzjcml0qxry1lx8501jarhjxrcpxy1plrb146";
44+
} {};
3745
streamly-process = utils.composewell super "streamly-process"
38-
"65e3ae489637099d0189a1ba184bb08a5c16de48";
46+
"d80b860d9d8ea98e4f7f63390442b3155c34dd08";
3947
});
4048
});
4149

0 commit comments

Comments
 (0)