libmpc: 1.0.3 -> 1.1.0

I also saw #33946, though I'm not sure what to make of it...
This commit is contained in:
Vladimír Čunát 2018-02-03 10:14:42 +01:00
parent a267ae4b24
commit 193ebca1e5
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA

View File

@ -1,23 +1,20 @@
{ stdenv, fetchurl
, gmp, mpfr
, buildPlatform, hostPlatform
}:
let
version = "1.0.3";
version = "1.1.0";
in
stdenv.mkDerivation rec {
name = "libmpc-${version}"; # to avoid clash with the MPD client
src = fetchurl {
url = "https://ftp.gnu.org/gnu/mpc/mpc-${version}.tar.gz";
sha256 = "1hzci2zrrd7v3g1jk35qindq05hbl0bhjcyyisq9z209xb3fqzb1";
url = "mirror://gnu/mpc/mpc-${version}.tar.gz";
sha256 = "0biwnhjm3rx3hc0rfpvyniky4lpzsvdcwhmcn7f0h4iw2hwcb1b9";
};
buildInputs = [ gmp mpfr ];
CFLAGS = "-I${gmp.dev}/include";
doCheck = true; # not cross;
meta = {