Skip to content

Commit

Permalink
fix Flake (#1304)
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbecich authored Mar 23, 2024
1 parent 3ce2fe8 commit e36f969
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@
# https://community.flake.parts/haskell-flake/dependency#nixpkgs
tar = { super, ... }:
{ custom = _: super.tar_0_6_2_0; };
tls = { super, ... }:
{ custom = _: super.tls_2_0_1 // { check = false; }; };
# tls = { super, ... }:
# { custom = _: super.tls_2_0_1 // { check = false; }; };
tls.check = false;
tls-session-manager = { super, ... }:
{ custom = _: super.tls-session-manager_0_0_5; };
tasty = { super, ... }:
Expand All @@ -44,7 +45,7 @@
};
packages = {
# https://community.flake.parts/haskell-flake/dependency#path
# tls.source = "1.9.0";
tls.source = "2.0.1";
};
devShell = {
tools = hp: {
Expand Down

0 comments on commit e36f969

Please sign in to comment.