summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-common.nix
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-05-09 10:00:21 +0200
committersternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-05-09 12:05:18 +0200
commit2f2c1ca08e97762d371f4085a7228649d9baa639 (patch)
tree79a71241cdaabee586d6dc13fea9d62e4c131086 /pkgs/development/haskell-modules/configuration-common.nix
parent227cfc24fef11b4ad179c0cadcd9d9da5f785f2d (diff)
downloadnixpkgs-2f2c1ca08e97762d371f4085a7228649d9baa639.tar
nixpkgs-2f2c1ca08e97762d371f4085a7228649d9baa639.tar.gz
nixpkgs-2f2c1ca08e97762d371f4085a7228649d9baa639.tar.bz2
nixpkgs-2f2c1ca08e97762d371f4085a7228649d9baa639.tar.lz
nixpkgs-2f2c1ca08e97762d371f4085a7228649d9baa639.tar.xz
nixpkgs-2f2c1ca08e97762d371f4085a7228649d9baa639.tar.zst
nixpkgs-2f2c1ca08e97762d371f4085a7228649d9baa639.zip
haskell-ci: provide ShellCheck 0.7.1 to fix build
haskell-ci pins a specific version of ShellCheck as ShellCheck adds new
checks with new minor versions which may break CI checks.
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-common.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index d8f5348f5ad..0f2aa45b4bc 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1864,4 +1864,10 @@ self: super: {
   # 2021-05-09: Restrictive bound on hspec-golden. Dep removed in newer versions.
   tomland = assert super.tomland.version == "1.3.2.0"; doJailbreak super.tomland;
 
+  # 2021-05-09 haskell-ci pins ShellCheck 0.7.1
+  # https://github.com/haskell-CI/haskell-ci/issues/507
+  haskell-ci = super.haskell-ci.override {
+    ShellCheck = self.ShellCheck_0_7_1;
+  };
+
 } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super