forked from mirrors/nixpkgs
Merge pull request #119791 from polygon/mpir
mpir: Add --enable-fat build option
This commit is contained in:
commit
bf7940d1a8
|
@ -7,11 +7,11 @@ stdenv.mkDerivation rec {
|
|||
nativeBuildInputs = [ m4 which yasm ];
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://mpir.org/mpir-${version}.tar.bz2";
|
||||
url = "https://mpir.org/mpir-${version}.tar.bz2";
|
||||
sha256 = "1fvmhrqdjs925hzr2i8bszm50h00gwsh17p2kn2pi51zrxck9xjj";
|
||||
};
|
||||
|
||||
configureFlags = [ "--enable-cxx" ];
|
||||
configureFlags = [ "--enable-cxx" "--enable-fat" ];
|
||||
|
||||
meta = {
|
||||
inherit version;
|
||||
|
@ -19,8 +19,8 @@ stdenv.mkDerivation rec {
|
|||
license = lib.licenses.lgpl3Plus;
|
||||
maintainers = [lib.maintainers.raskin];
|
||||
platforms = lib.platforms.unix;
|
||||
downloadPage = "http://mpir.org/downloads.html";
|
||||
homepage = "http://mpir.org/";
|
||||
downloadPage = "https://mpir.org/downloads.html";
|
||||
homepage = "https://mpir.org/";
|
||||
updateWalker = true;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue