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:
parent
a267ae4b24
commit
193ebca1e5
@ -1,23 +1,20 @@
|
|||||||
{ stdenv, fetchurl
|
{ stdenv, fetchurl
|
||||||
, gmp, mpfr
|
, gmp, mpfr
|
||||||
, buildPlatform, hostPlatform
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "1.0.3";
|
version = "1.1.0";
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "libmpc-${version}"; # to avoid clash with the MPD client
|
name = "libmpc-${version}"; # to avoid clash with the MPD client
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://ftp.gnu.org/gnu/mpc/mpc-${version}.tar.gz";
|
url = "mirror://gnu/mpc/mpc-${version}.tar.gz";
|
||||||
sha256 = "1hzci2zrrd7v3g1jk35qindq05hbl0bhjcyyisq9z209xb3fqzb1";
|
sha256 = "0biwnhjm3rx3hc0rfpvyniky4lpzsvdcwhmcn7f0h4iw2hwcb1b9";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ gmp mpfr ];
|
buildInputs = [ gmp mpfr ];
|
||||||
|
|
||||||
CFLAGS = "-I${gmp.dev}/include";
|
|
||||||
|
|
||||||
doCheck = true; # not cross;
|
doCheck = true; # not cross;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user