mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
haskellPackages.libmpd: remove upper bound on time
This commit is contained in:
parent
1201cc569c
commit
d13378ffd1
1 changed files with 7 additions and 0 deletions
|
@ -1029,4 +1029,11 @@ self: super: {
|
|||
|
||||
# Tests fail with "Couldn't launch intero process."
|
||||
intero = dontCheck super.intero;
|
||||
|
||||
# libmpd has an upper-bound on time which doesn't seem to be a real build req
|
||||
libmpd = dontCheck (overrideCabal super.libmpd (drv: {
|
||||
postPatch = (drv.postPatch or "") + ''
|
||||
substituteInPlace ./libmpd.cabal --replace "time >=1.5 && <1.6" "time >=1.5"
|
||||
'';
|
||||
}));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue