nixpkgs/pkgs/development/libraries/mpir/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

25 lines
695 B
Nix

{ stdenv, fetchurl, fetchpatch, m4, which, yasm }:
stdenv.mkDerivation rec {
name = "mpir-${version}";
version = "3.0.0";
nativeBuildInputs = [ m4 which yasm ];
src = fetchurl {
url = "http://mpir.org/mpir-${version}.tar.bz2";
sha256 = "1fvmhrqdjs925hzr2i8bszm50h00gwsh17p2kn2pi51zrxck9xjj";
};
meta = {
inherit version;
description = ''A highly optimised library for bignum arithmetic forked from GMP'';
license = stdenv.lib.licenses.lgpl3Plus;
maintainers = [stdenv.lib.maintainers.raskin];
platforms = stdenv.lib.platforms.linux;
downloadPage = "http://mpir.org/downloads.html";
homepage = http://mpir.org/;
updateWalker = true;
};
}