3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #156407 from cdepillabout/arbtt

This commit is contained in:
Ellie Hermaszewska 2022-01-24 13:12:19 +08:00 committed by GitHub
commit 632bf6624d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1110,14 +1110,16 @@ self: super: {
# https://github.com/elliottt/hsopenid/issues/15
openid = markBroken super.openid;
# The test suite needs the packages's executables in $PATH to succeed.
arbtt = overrideCabal (drv: {
# Version constraints on test dependency tasty-golden need to be relaxed:
# https://github.com/nomeata/arbtt/pull/146
arbtt = doJailbreak (overrideCabal (drv: {
# The test suite needs the packages's executables in $PATH to succeed.
preCheck = ''
for i in $PWD/dist/build/*; do
export PATH="$i:$PATH"
done
'';
}) super.arbtt;
}) super.arbtt);
# https://github.com/erikd/hjsmin/issues/32
hjsmin = dontCheck super.hjsmin;