haskell-arbtt: add build products into $PATH for the check phase
Fixes https://github.com/NixOS/nixpkgs/pull/57585.
This commit is contained in:
parent
4708d3f84b
commit
7c04e3eb75
@ -1027,6 +1027,11 @@ self: super: {
|
|||||||
testSystemDepends = (drv.testSystemDepends or []) ++ [pkgs.which];
|
testSystemDepends = (drv.testSystemDepends or []) ++ [pkgs.which];
|
||||||
preCheck = ''export PATH="$PWD/dist/build/alex:$PATH"'';
|
preCheck = ''export PATH="$PWD/dist/build/alex:$PATH"'';
|
||||||
});
|
});
|
||||||
|
arbtt = overrideCabal super.arbtt (drv: {
|
||||||
|
preCheck = ''
|
||||||
|
for n in $PWD/dist/build/*; do PATH+=":$n"; done
|
||||||
|
'';
|
||||||
|
});
|
||||||
|
|
||||||
# This package refers to the wrong library (itself in fact!)
|
# This package refers to the wrong library (itself in fact!)
|
||||||
vulkan = super.vulkan.override { vulkan = pkgs.vulkan-loader; };
|
vulkan = super.vulkan.override { vulkan = pkgs.vulkan-loader; };
|
||||||
@ -1156,8 +1161,6 @@ self: super: {
|
|||||||
|
|
||||||
xmonad-extras = doJailbreak super.xmonad-extras;
|
xmonad-extras = doJailbreak super.xmonad-extras;
|
||||||
|
|
||||||
arbtt = doJailbreak super.arbtt;
|
|
||||||
|
|
||||||
# https://github.com/danfran/cabal-macosx/issues/13
|
# https://github.com/danfran/cabal-macosx/issues/13
|
||||||
cabal-macosx = dontCheck super.cabal-macosx;
|
cabal-macosx = dontCheck super.cabal-macosx;
|
||||||
|
|
||||||
|
@ -2823,7 +2823,6 @@ broken-packages:
|
|||||||
- arbor-monad-metric
|
- arbor-monad-metric
|
||||||
- arbor-monad-metric-datadog
|
- arbor-monad-metric-datadog
|
||||||
- arbor-postgres
|
- arbor-postgres
|
||||||
- arbtt
|
|
||||||
- archiver
|
- archiver
|
||||||
- archlinux
|
- archlinux
|
||||||
- archlinux-web
|
- archlinux-web
|
||||||
|
@ -29814,8 +29814,6 @@ self: {
|
|||||||
];
|
];
|
||||||
description = "Automatic Rule-Based Time Tracker";
|
description = "Automatic Rule-Based Time Tracker";
|
||||||
license = stdenv.lib.licenses.gpl2;
|
license = stdenv.lib.licenses.gpl2;
|
||||||
hydraPlatforms = stdenv.lib.platforms.none;
|
|
||||||
broken = true;
|
|
||||||
}) {};
|
}) {};
|
||||||
|
|
||||||
"arcgrid" = callPackage
|
"arcgrid" = callPackage
|
||||||
|
Loading…
x
Reference in New Issue
Block a user