haskellPackages.dhall-nix(pkgs)?: Fix build by pinning to stackage compatible versions
This commit is contained in:
parent
3fd9285a63
commit
0d30892a91
@ -49,6 +49,10 @@ default-package-overrides:
|
|||||||
# 2023-04-13: latest version requires ghc-events >= 0.19 but it's not on LTS yet
|
# 2023-04-13: latest version requires ghc-events >= 0.19 but it's not on LTS yet
|
||||||
- eventlog2html < 0.10
|
- eventlog2html < 0.10
|
||||||
|
|
||||||
|
# 2023-04-22: For dhall < 1.42 compatibility
|
||||||
|
- dhall-nixpkgs == 1.0.9
|
||||||
|
- dhall-nix == 1.1.25
|
||||||
|
|
||||||
extra-packages:
|
extra-packages:
|
||||||
- Cabal == 2.2.* # required for jailbreak-cabal etc.
|
- Cabal == 2.2.* # required for jailbreak-cabal etc.
|
||||||
- Cabal == 2.4.* # required for cabal-install etc.
|
- Cabal == 2.4.* # required for cabal-install etc.
|
||||||
|
@ -81090,8 +81090,10 @@ self: {
|
|||||||
}:
|
}:
|
||||||
mkDerivation {
|
mkDerivation {
|
||||||
pname = "dhall-nix";
|
pname = "dhall-nix";
|
||||||
version = "1.1.26";
|
version = "1.1.25";
|
||||||
sha256 = "1xgmmfp6bi3mnd9l335ks6xcgpfy2s2kgpcygi7i7p41f795zgma";
|
sha256 = "1541h6hym254dycq6h40rqn82qbk74d071k67hf62aqd9l2g4y6p";
|
||||||
|
revision = "1";
|
||||||
|
editedCabalFile = "05hcas28mbi1q3x5wpkapj57b7jw1q9npbhx1lyic3df7sqbjrnw";
|
||||||
isLibrary = true;
|
isLibrary = true;
|
||||||
isExecutable = true;
|
isExecutable = true;
|
||||||
libraryHaskellDepends = [
|
libraryHaskellDepends = [
|
||||||
@ -81107,7 +81109,57 @@ self: {
|
|||||||
maintainers = [ lib.maintainers.Gabriel439 ];
|
maintainers = [ lib.maintainers.Gabriel439 ];
|
||||||
}) {};
|
}) {};
|
||||||
|
|
||||||
|
"dhall-nix_1_1_26" = callPackage
|
||||||
|
({ mkDerivation, base, containers, data-fix, dhall, hnix
|
||||||
|
, lens-family-core, neat-interpolation, optparse-generic, text
|
||||||
|
}:
|
||||||
|
mkDerivation {
|
||||||
|
pname = "dhall-nix";
|
||||||
|
version = "1.1.26";
|
||||||
|
sha256 = "1xgmmfp6bi3mnd9l335ks6xcgpfy2s2kgpcygi7i7p41f795zgma";
|
||||||
|
isLibrary = true;
|
||||||
|
isExecutable = true;
|
||||||
|
libraryHaskellDepends = [
|
||||||
|
base containers data-fix dhall hnix lens-family-core
|
||||||
|
neat-interpolation text
|
||||||
|
];
|
||||||
|
executableHaskellDepends = [
|
||||||
|
base dhall hnix optparse-generic text
|
||||||
|
];
|
||||||
|
description = "Dhall to Nix compiler";
|
||||||
|
license = lib.licenses.bsd3;
|
||||||
|
hydraPlatforms = lib.platforms.none;
|
||||||
|
mainProgram = "dhall-to-nix";
|
||||||
|
maintainers = [ lib.maintainers.Gabriel439 ];
|
||||||
|
}) {};
|
||||||
|
|
||||||
"dhall-nixpkgs" = callPackage
|
"dhall-nixpkgs" = callPackage
|
||||||
|
({ mkDerivation, aeson, base, base16-bytestring, base64-bytestring
|
||||||
|
, bytestring, data-fix, dhall, foldl, hnix, lens-family-core
|
||||||
|
, megaparsec, mmorph, neat-interpolation, network-uri
|
||||||
|
, optparse-applicative, prettyprinter, text, transformers, turtle
|
||||||
|
}:
|
||||||
|
mkDerivation {
|
||||||
|
pname = "dhall-nixpkgs";
|
||||||
|
version = "1.0.9";
|
||||||
|
sha256 = "1j0i2qhizmzhz2l46xwklgkki6nqa6imzdqdfm6xy3gkfdlna753";
|
||||||
|
revision = "1";
|
||||||
|
editedCabalFile = "0140jhwf5mz9i5k1v0mbljhr77rgfvhbs5s3ak9naagnxszy725j";
|
||||||
|
isLibrary = false;
|
||||||
|
isExecutable = true;
|
||||||
|
executableHaskellDepends = [
|
||||||
|
aeson base base16-bytestring base64-bytestring bytestring data-fix
|
||||||
|
dhall foldl hnix lens-family-core megaparsec mmorph
|
||||||
|
neat-interpolation network-uri optparse-applicative prettyprinter
|
||||||
|
text transformers turtle
|
||||||
|
];
|
||||||
|
description = "Convert Dhall projects to Nix packages";
|
||||||
|
license = lib.licenses.bsd3;
|
||||||
|
mainProgram = "dhall-to-nixpkgs";
|
||||||
|
maintainers = [ lib.maintainers.Gabriel439 ];
|
||||||
|
}) {};
|
||||||
|
|
||||||
|
"dhall-nixpkgs_1_0_10" = callPackage
|
||||||
({ mkDerivation, aeson, base, base16-bytestring, base64-bytestring
|
({ mkDerivation, aeson, base, base16-bytestring, base64-bytestring
|
||||||
, bytestring, data-fix, dhall, foldl, hnix, lens-family-core
|
, bytestring, data-fix, dhall, foldl, hnix, lens-family-core
|
||||||
, megaparsec, mmorph, neat-interpolation, network-uri
|
, megaparsec, mmorph, neat-interpolation, network-uri
|
||||||
@ -81127,6 +81179,7 @@ self: {
|
|||||||
];
|
];
|
||||||
description = "Convert Dhall projects to Nix packages";
|
description = "Convert Dhall projects to Nix packages";
|
||||||
license = lib.licenses.bsd3;
|
license = lib.licenses.bsd3;
|
||||||
|
hydraPlatforms = lib.platforms.none;
|
||||||
mainProgram = "dhall-to-nixpkgs";
|
mainProgram = "dhall-to-nixpkgs";
|
||||||
maintainers = [ lib.maintainers.Gabriel439 ];
|
maintainers = [ lib.maintainers.Gabriel439 ];
|
||||||
}) {};
|
}) {};
|
||||||
|
Loading…
Reference in New Issue
Block a user