coqPackages.interval: 3.3.0 -> 3.4.0

This commit is contained in:
Vincent Laporte 2019-02-08 09:40:55 +00:00 committed by Vincent Laporte
parent 9461a108bc
commit 1613f3db27

View file

@ -1,12 +1,24 @@
{ stdenv, fetchurl, which, coq, coquelicot, flocq, mathcomp { stdenv, fetchurl, which, coq, coquelicot, flocq, mathcomp
, bignums ? null }: , bignums ? null }:
let params =
if stdenv.lib.versionAtLeast coq.coq-version "8.7" then {
version = "3.4.0";
uid = "37524";
sha256 = "023j9sd64brqvjdidqkn5m8d7a93zd9r86ggh573z9nkjm2m7vvg";
} else {
version = "3.3.0";
uid = "37077";
sha256 = "08fdcf3hbwqphglvwprvqzgkg0qbimpyhnqsgv3gac4y1ap0f903";
}
; in
stdenv.mkDerivation { stdenv.mkDerivation {
name = "coq${coq.coq-version}-interval-3.3.0"; name = "coq${coq.coq-version}-interval-${params.version}";
src = fetchurl { src = fetchurl {
url = "https://gforge.inria.fr/frs/download.php/file/37077/interval-3.3.0.tar.gz"; url = "https://gforge.inria.fr/frs/download.php/file/${params.uid}/interval-${params.version}.tar.gz";
sha256 = "08fdcf3hbwqphglvwprvqzgkg0qbimpyhnqsgv3gac4y1ap0f903"; inherit (params) sha256;
}; };
nativeBuildInputs = [ which ]; nativeBuildInputs = [ which ];
@ -26,7 +38,7 @@ stdenv.mkDerivation {
}; };
passthru = { passthru = {
compatibleCoqVersions = v: builtins.elem v [ "8.5" "8.6" "8.7" ]; compatibleCoqVersions = v: builtins.elem v [ "8.5" "8.6" "8.7" "8.8" ];
}; };