Skip to content

Commit e36f969

Browse files
authored
fix Flake (#1304)
1 parent 3ce2fe8 commit e36f969

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

flake.nix

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,9 @@
3131
# https://community.flake.parts/haskell-flake/dependency#nixpkgs
3232
tar = { super, ... }:
3333
{ custom = _: super.tar_0_6_2_0; };
34-
tls = { super, ... }:
35-
{ custom = _: super.tls_2_0_1 // { check = false; }; };
34+
# tls = { super, ... }:
35+
# { custom = _: super.tls_2_0_1 // { check = false; }; };
36+
tls.check = false;
3637
tls-session-manager = { super, ... }:
3738
{ custom = _: super.tls-session-manager_0_0_5; };
3839
tasty = { super, ... }:
@@ -44,7 +45,7 @@
4445
};
4546
packages = {
4647
# https://community.flake.parts/haskell-flake/dependency#path
47-
# tls.source = "1.9.0";
48+
tls.source = "2.0.1";
4849
};
4950
devShell = {
5051
tools = hp: {

0 commit comments

Comments
 (0)