Merge pull request #142425 from dalpd/ghc-vis-disable-profiling
haskellPackages.ghc-vis: Disable library profiling
This commit is contained in:
commit
bec8a364df
4 changed files with 3 additions and 3 deletions
|
@ -49,6 +49,7 @@ self: super: {
|
||||||
# These packages (and their reverse deps) cannot be built with profiling enabled.
|
# These packages (and their reverse deps) cannot be built with profiling enabled.
|
||||||
ghc-heap-view = disableLibraryProfiling super.ghc-heap-view;
|
ghc-heap-view = disableLibraryProfiling super.ghc-heap-view;
|
||||||
ghc-datasize = disableLibraryProfiling super.ghc-datasize;
|
ghc-datasize = disableLibraryProfiling super.ghc-datasize;
|
||||||
|
ghc-vis = disableLibraryProfiling super.ghc-vis;
|
||||||
|
|
||||||
# This test keeps being aborted because it runs too quietly for too long
|
# This test keeps being aborted because it runs too quietly for too long
|
||||||
Lazy-Pbkdf2 = if pkgs.stdenv.isi686 then dontCheck super.Lazy-Pbkdf2 else super.Lazy-Pbkdf2;
|
Lazy-Pbkdf2 = if pkgs.stdenv.isi686 then dontCheck super.Lazy-Pbkdf2 else super.Lazy-Pbkdf2;
|
||||||
|
|
|
@ -1655,7 +1655,6 @@ broken-packages:
|
||||||
- ghc-tcplugin-api
|
- ghc-tcplugin-api
|
||||||
- ghc-time-alloc-prof
|
- ghc-time-alloc-prof
|
||||||
- ghc-usage
|
- ghc-usage
|
||||||
- ghc-vis
|
|
||||||
- gh-labeler
|
- gh-labeler
|
||||||
- giak
|
- giak
|
||||||
- Gifcurry
|
- Gifcurry
|
||||||
|
|
|
@ -154,6 +154,7 @@ package-maintainers:
|
||||||
- spago
|
- spago
|
||||||
- termonad
|
- termonad
|
||||||
dalpd:
|
dalpd:
|
||||||
|
- ghc-vis
|
||||||
- svgcairo
|
- svgcairo
|
||||||
domenkozar:
|
domenkozar:
|
||||||
- cachix
|
- cachix
|
||||||
|
|
|
@ -105065,8 +105065,7 @@ self: {
|
||||||
];
|
];
|
||||||
description = "Live visualization of data structures in GHCi";
|
description = "Live visualization of data structures in GHCi";
|
||||||
license = lib.licenses.bsd3;
|
license = lib.licenses.bsd3;
|
||||||
hydraPlatforms = lib.platforms.none;
|
maintainers = with lib.maintainers; [ dalpd ];
|
||||||
broken = true;
|
|
||||||
}) {};
|
}) {};
|
||||||
|
|
||||||
"ghcflags" = callPackage
|
"ghcflags" = callPackage
|
||||||
|
|
Loading…
Reference in a new issue