mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
haskellPackages.hakyll-images: 1.3.0 -> 1.3.1
Allows us to re-enable its test suite.
This commit is contained in:
parent
fd6a40e7b5
commit
ff88fbaafd
2 changed files with 50 additions and 4 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue