haskellPackages.stunclient: fix build error due to changing exports in deps

This commit is contained in:
obadz 2016-08-11 16:41:06 +01:00
parent 256394be60
commit daf44055cd

View file

@ -983,4 +983,11 @@ self: super: {
})];
});
# remove if a version > 0.1.0.1 ever gets released
stunclient = overrideCabal super.stunclient (drv: {
postPatch = (drv.postPatch or "") + ''
substituteInPlace source/Network/Stun/MappedAddress.hs --replace "import Network.Endian" ""
'';
});
}