File tree Expand file tree Collapse file tree 4 files changed +56
-37
lines changed Expand file tree Collapse file tree 4 files changed +56
-37
lines changed Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ repository cardano-haskell-packages
12
12
13
13
-- See CONTRIBUTING.md for information about when and how to update these.
14
14
index-state :
15
- , hackage.haskell.org 2025-05-27T12:29 :12Z
16
- , cardano-haskell-packages 2025-05-28T12:02 :33Z
15
+ , hackage.haskell.org 2025-06-11T21:55 :55Z
16
+ , cardano-haskell-packages 2025-06-12T11:07 :25Z
17
17
18
18
packages : **/*.cabal
19
19
Original file line number Diff line number Diff line change 63
63
inherit ( inputs . aiken . packages . ${ system } ) aiken ;
64
64
apply-refact = final . haskell-nix . tool compiler "apply-refact" "0.15.0.0" ;
65
65
cabal-install = final . haskell-nix . tool compiler "cabal-install" "3.10.3.0" ;
66
- cabal-plan = final . haskell-nix . tool compiler "cabal-plan" "0.7.5.0" ;
66
+ cabal-plan = final . haskell-nix . tool compiler "cabal-plan" { version = "0.7.5.0" ; cabalProjectLocal = "package cabal-plan \n flags: +exe" ; } ;
67
67
cabal-fmt = config . treefmt . programs . cabal-fmt . package ;
68
68
fourmolu = config . treefmt . programs . fourmolu . package ;
69
- haskell-language-server = final . haskell-nix . tool compiler "haskell-language-server" "2.9 .0.0" ;
69
+ haskell-language-server = final . haskell-nix . tool compiler "haskell-language-server" "2.11 .0.0" ;
70
70
weeder = final . haskell-nix . tool compiler "weeder" "2.9.0" ;
71
71
inherit ( inputs . cardano-node . packages . ${ system } ) cardano-cli ;
72
72
inherit ( inputs . cardano-node . packages . ${ system } ) cardano-node ;
Original file line number Diff line number Diff line change 65
65
pkgs . systemd
66
66
] ;
67
67
68
- haskellNixShell = hsPkgs . shellFor {
68
+ haskellNixShell = ( hsPkgs . shellFor {
69
69
buildInputs = libs ++ buildInputs ;
70
70
71
71
withHoogle = true ;
72
72
73
73
# Always create missing golden files
74
- CREATE_MISSING_GOLDEN = 1 ;
75
-
76
- # Force a UTF-8 locale because many Haskell programs and tests
77
- # assume this.
78
- LANG = "en_US.UTF-8" ;
79
-
80
- GIT_SSL_CAINFO = "${ pkgs . cacert } /etc/ssl/certs/ca-bundle.crt" ;
81
-
82
74
shellHook = ''
83
75
if ! which cardano-node > /dev/null 2>&1; then
84
76
echo "WARNING: 'cardano-node' not found"
87
79
echo "WARNING: 'cardano-cli' not found"
88
80
fi
89
81
'' ;
82
+ } ) . overrideAttrs {
83
+
84
+ CREATE_MISSING_GOLDEN = 1 ;
85
+
86
+ # Force a UTF-8 locale because many Haskell programs and tests
87
+ # assume this.
88
+ LANG = "en_US.UTF-8" ;
89
+
90
+ GIT_SSL_CAINFO = "${ pkgs . cacert } /etc/ssl/certs/ca-bundle.crt" ;
91
+
90
92
} ;
91
93
92
94
# A "cabal-only" shell which does not use haskell.nix
You can’t perform that action at this time.
0 commit comments