forked from mirrors/nixpkgs
mpir: add patch to account for sed update
This commit is contained in:
parent
f4bff9d633
commit
0f86750d1d
|
@ -1,12 +1,21 @@
|
||||||
{stdenv, fetchurl, m4}:
|
{ stdenv, fetchurl, fetchpatch, m4 }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "mpir-${version}";
|
name = "mpir-${version}";
|
||||||
version = "2.7.2";
|
version = "2.7.2";
|
||||||
buildInputs = [m4];
|
|
||||||
|
buildInputs = [ m4 ];
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://mpir.org/mpir-${version}.tar.bz2";
|
url = "http://mpir.org/mpir-${version}.tar.bz2";
|
||||||
sha256 = "1v25dx7cah2vxwzgq78hpzqkryrfxhwx3mcj3jjq3xxljlsw7m57";
|
sha256 = "1v25dx7cah2vxwzgq78hpzqkryrfxhwx3mcj3jjq3xxljlsw7m57";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [ (fetchpatch {
|
||||||
|
url = "https://github.com/wbhart/mpir/commit/fdb590023f7ca4b2e881a2e9573718e7ed180f03.patch";
|
||||||
|
sha256 = "152pdqpf8xxr4ky25f9zrvfb66i1wzy6a5b91h4zmpqjdffqf1iw";
|
||||||
|
}) ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
inherit version;
|
inherit version;
|
||||||
description = ''A highly optimised library for bignum arithmetic forked from GMP'';
|
description = ''A highly optimised library for bignum arithmetic forked from GMP'';
|
||||||
|
|
Loading…
Reference in a new issue