haskellPackages.libmpd: remove upper bound on time

This commit is contained in:
obadz 2016-06-08 19:13:52 +01:00
parent 1201cc569c
commit d13378ffd1

View file

@ -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"
'';
}));
}