Fix bloomfilter package on 32 bits
The git-annex derivation depends on bloomfilter and it's currently broken on i686 because of this. Upstream bloomfilter pull request already sent, this is for the meantime.
This commit is contained in:
parent
7acfec9e47
commit
a78ae3bea4
1 changed files with 4 additions and 0 deletions
|
@ -9,6 +9,10 @@ cabal.mkDerivation (self: {
|
||||||
version = "2.0.0.0";
|
version = "2.0.0.0";
|
||||||
sha256 = "07fif8i5rinysli1mpi92k405kvw8va7w9v9w4wd5bylb87zy77f";
|
sha256 = "07fif8i5rinysli1mpi92k405kvw8va7w9v9w4wd5bylb87zy77f";
|
||||||
buildDepends = [ deepseq ];
|
buildDepends = [ deepseq ];
|
||||||
|
# https://github.com/bos/bloomfilter/pull/8
|
||||||
|
preConfigure = ''
|
||||||
|
sed -i -e "s/0xffffffff/0x7fffffff/" Data/BloomFilter/Easy.hs
|
||||||
|
'';
|
||||||
testDepends = [
|
testDepends = [
|
||||||
QuickCheck random testFramework testFrameworkQuickcheck2
|
QuickCheck random testFramework testFrameworkQuickcheck2
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue