haskellPackages.hakyll-images: 1.3.0 -> 1.3.1

Allows us to re-enable its test suite.
This commit is contained in:
sterni 2026-06-04 14:42:55 +02:00
commit ff88fbaafd
2 changed files with 50 additions and 4 deletions

View file

@ -463,10 +463,6 @@ with haskellLib;
# https://github.com/input-output-hk/io-sim/issues/248
io-sim = dontCheck super.io-sim;
# Test suites broken by hakyll 4.16, but lib is still okay
# https://github.com/LaurentRDC/hakyll-images/issues/14
hakyll-images = dontCheck super.hakyll-images;
# Too strict upper bound on hakyll (<4.17)
# https://gitlab.com/lysxia/hakyll-alectryon/-/work_items/2
hakyll-alectryon = doJailbreak super.hakyll-alectryon;

View file

@ -0,0 +1,50 @@
{
mkDerivation,
base,
binary,
bytestring,
containers,
directory,
filepath,
hakyll,
HUnit-approx,
JuicyPixels,
JuicyPixels-extra,
lib,
tasty,
tasty-hunit,
vector,
}:
mkDerivation {
pname = "hakyll-images";
version = "1.3.1";
sha256 = "a4f55f08b10671795beab1e3d8496651e3c0a08799d26f36b6357480753e85a8";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
base
binary
bytestring
hakyll
JuicyPixels
JuicyPixels-extra
vector
];
testHaskellDepends = [
base
binary
bytestring
containers
directory
filepath
hakyll
HUnit-approx
JuicyPixels
JuicyPixels-extra
tasty
tasty-hunit
vector
];
homepage = "https://github.com/LaurentRDC/hakyll-images#readme";
description = "Hakyll utilities to work with images";
license = lib.licensesSpdx."BSD-3-Clause";
}