Skip to content

Commit

Permalink
why3: 1.7.2 → 1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vbgl committed Jan 24, 2025
1 parent c111a25 commit f35451f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
3 changes: 2 additions & 1 deletion pkgs/applications/science/logic/why3/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
rubber,
hevea,
emacs,
version ? "1.7.2",
version ? "1.8.0",
ideSupport ? true,
wrapGAppsHook3,
}:
Expand All @@ -21,6 +21,7 @@ stdenv.mkDerivation rec {
url = "https://why3.gitlabpages.inria.fr/releases/${pname}-${version}.tar.gz";
hash =
{
"1.8.0" = "sha256-gDe4OI0AuoYmJSCg/SMRQYcgelX/SM28ClQfKhnw88E=";
"1.7.2" = "sha256-VaSG/FiO2MDdSSFXGJJrIylQx0LPwtT8AF7TpPVZhCQ=";
"1.6.0" = "sha256-hFvM6kHScaCtcHCc6Vezl9CR7BFbiKPoTEh7kj0ZJxw=";
}
Expand Down
14 changes: 10 additions & 4 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2222,7 +2222,11 @@ with pkgs;
easyaudiosync = qt6Packages.callPackage ../applications/audio/easyaudiosync {};

easycrypt = callPackage ../applications/science/logic/easycrypt {
why3 = pkgs.why3.override { ideSupport = false; };
why3 = pkgs.why3.override {
ideSupport = false;
version = "1.7.2";
coqPackages = { coq = null; flocq = null; };
};
};

easycrypt-runtest = callPackage ../applications/science/logic/easycrypt/runtest.nix { };
Expand Down Expand Up @@ -7953,6 +7957,10 @@ with pkgs;
ocamlPackages = ocaml-ng.ocamlPackages_4_14;
};

framac = callPackage ../by-name/fr/framac/package.nix {
why3 = why3.override { version = "1.7.2"; coqPackages = coqPackages_8_18; };
};

fswatch = callPackage ../development/tools/misc/fswatch {
inherit (darwin.apple_sdk.frameworks) CoreServices;
autoreconfHook = buildPackages.autoreconfHook269;
Expand Down Expand Up @@ -17234,9 +17242,7 @@ with pkgs;
stdenv = gccStdenv;
};

why3 = callPackage ../applications/science/logic/why3 {
coqPackages = coqPackages_8_18;
};
why3 = callPackage ../applications/science/logic/why3 { };

yices = callPackage ../applications/science/logic/yices {
gmp-static = gmp.override { withStatic = true; };
Expand Down
4 changes: 3 additions & 1 deletion pkgs/top-level/ocaml-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -962,7 +962,9 @@ let
lambda-term = callPackage ../development/ocaml-modules/lambda-term { };

lambdapi = callPackage ../development/ocaml-modules/lambdapi {
why3 = pkgs.why3.override { ocamlPackages = self; };
why3 = pkgs.why3.override { ocamlPackages = self;
version = "1.7.2"; coqPackages = pkgs.coqPackages_8_18;
};
};

lambdasoup = callPackage ../development/ocaml-modules/lambdasoup { };
Expand Down

0 comments on commit f35451f

Please sign in to comment.