mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
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.
This commit is contained in:
parent
227cfc24fe
commit
2f2c1ca08e
3 changed files with 35 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -104,6 +104,7 @@ extra-packages:
|
|||
- gi-gdk == 3.0.24 # 2021-05-07: For haskell-gi 0.25 without gtk4
|
||||
- gi-gtk < 4.0 # 2021-05-07: For haskell-gi 0.25 without gtk4
|
||||
- gi-gdkx11 == 3.0.11 # 2021-05-07: For haskell-gi 0.25 without gtk4
|
||||
- ShellCheck == 0.7.1 # 2021-05-09: haskell-ci 0.12.1 pins this version
|
||||
|
||||
package-maintainers:
|
||||
peti:
|
||||
|
|
|
@ -16918,6 +16918,34 @@ self: {
|
|||
license = lib.licenses.mpl20;
|
||||
}) {};
|
||||
|
||||
"ShellCheck_0_7_1" = callPackage
|
||||
({ mkDerivation, aeson, array, base, bytestring, containers
|
||||
, deepseq, Diff, directory, filepath, mtl, parsec, process
|
||||
, QuickCheck, regex-tdfa
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "ShellCheck";
|
||||
version = "0.7.1";
|
||||
sha256 = "06m4wh891nah3y0br4wh3adpsb16zawkb2ijgf1vcz61fznj6ps1";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
libraryHaskellDepends = [
|
||||
aeson array base bytestring containers deepseq Diff directory
|
||||
filepath mtl parsec process QuickCheck regex-tdfa
|
||||
];
|
||||
executableHaskellDepends = [
|
||||
aeson array base bytestring containers deepseq Diff directory
|
||||
filepath mtl parsec QuickCheck regex-tdfa
|
||||
];
|
||||
testHaskellDepends = [
|
||||
aeson array base bytestring containers deepseq Diff directory
|
||||
filepath mtl parsec QuickCheck regex-tdfa
|
||||
];
|
||||
description = "Shell script analysis tool";
|
||||
license = lib.licenses.gpl3Only;
|
||||
hydraPlatforms = lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"ShellCheck" = callPackage
|
||||
({ mkDerivation, aeson, array, base, bytestring, containers
|
||||
, deepseq, Diff, directory, filepath, mtl, parsec, process
|
||||
|
|
Loading…
Reference in a new issue