haskellPackages.dhall-nix: restrict to 1.1.23 for dhall 1.40

main
sternenseemann 2 years ago
parent ee745d0676
commit 1c85a665de
  1. 2
      pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml
  2. 25
      pkgs/development/haskell-modules/hackage-packages.nix

@ -84,6 +84,8 @@ default-package-overrides:
- hnix < 0.15
# needs http-client >= 0.7.11 which isn't part of Stackage LTS 18
- http-client-restricted < 0.0.5
# Needs dhall 1.41.*, Stackage Nightly has 1.40
- dhall-nix < 1.1.24
extra-packages:
- aeson < 2 # required by pantry-0.5.2

@ -75981,6 +75981,30 @@ self: {
}) {};
"dhall-nix" = callPackage
({ mkDerivation, base, containers, data-fix, dhall, hnix
, lens-family-core, neat-interpolation, optparse-generic, text
}:
mkDerivation {
pname = "dhall-nix";
version = "1.1.23";
sha256 = "17ajfkhxg4kjn6w7v3ymr6nsbqplvywkcwmfzybxqvmphh4zmfjb";
revision = "1";
editedCabalFile = "1grr0r30nbhi1d52vhmhp0rx2pas0wbg7m5npsqczfgd1d9p43dz";
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;
maintainers = with lib.maintainers; [ Gabriel439 ];
}) {};
"dhall-nix_1_1_24" = callPackage
({ mkDerivation, base, containers, data-fix, dhall, hnix
, lens-family-core, neat-interpolation, optparse-generic, text
}:
@ -75999,6 +76023,7 @@ self: {
];
description = "Dhall to Nix compiler";
license = lib.licenses.bsd3;
hydraPlatforms = lib.platforms.none;
maintainers = with lib.maintainers; [ Gabriel439 ];
}) {};

Loading…
Cancel
Save