mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-08 14:40:07 +03:00
Merge pull request #185477 from someodd/fix/libjwt-typed-unbroken
libjwt-typed: unbreak with minor changes
This commit is contained in:
commit
6be915f542
@ -2357,6 +2357,10 @@ self: super: {
|
||||
# https://github.com/tree-sitter/haskell-tree-sitter/issues/298
|
||||
tree-sitter = doJailbreak super.tree-sitter;
|
||||
|
||||
# 2022-08-07: Bounds are too restrictive: https://github.com/marcin-rzeznicki/libjwt-typed/issues/2
|
||||
# Also, the tests fail.
|
||||
libjwt-typed = dontCheck (doJailbreak super.libjwt-typed);
|
||||
|
||||
# Test suite fails to compile
|
||||
# https://github.com/kuribas/mfsolve/issues/8
|
||||
mfsolve = dontCheck super.mfsolve;
|
||||
|
@ -2939,7 +2939,6 @@ broken-packages:
|
||||
- libhbb
|
||||
- libinfluxdb
|
||||
- libjenkins
|
||||
- libjwt-typed
|
||||
- libltdl
|
||||
- liboath-hs
|
||||
- liboleg
|
||||
|
@ -315,6 +315,9 @@ self: super: builtins.intersectAttrs super {
|
||||
greenclip = addExtraLibrary pkgs.xorg.libXdmcp super.greenclip;
|
||||
|
||||
# The cabal files for these libraries do not list the required system dependencies.
|
||||
libjwt-typed = overrideCabal (drv: {
|
||||
librarySystemDepends = [ pkgs.libjwt ];
|
||||
}) super.libjwt-typed;
|
||||
miniball = overrideCabal (drv: {
|
||||
librarySystemDepends = [ pkgs.miniball ];
|
||||
}) super.miniball;
|
||||
|
Loading…
Reference in New Issue
Block a user