summary refs log tree commit diff
path: root/pkgs/applications/science/logic/alt-ergo
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2020-04-01 17:30:35 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2020-04-08 10:23:48 +0200
commitf4ff33cce69f0bf56206bf3ee2e1230565c089e1 (patch)
tree04bd79537d538bea52412d9504883d49395abecb /pkgs/applications/science/logic/alt-ergo
parent94eb65a287d6f85bbed6c17f58d230852b6a862b (diff)
downloadnixpkgs-f4ff33cce69f0bf56206bf3ee2e1230565c089e1.tar
nixpkgs-f4ff33cce69f0bf56206bf3ee2e1230565c089e1.tar.gz
nixpkgs-f4ff33cce69f0bf56206bf3ee2e1230565c089e1.tar.bz2
nixpkgs-f4ff33cce69f0bf56206bf3ee2e1230565c089e1.tar.lz
nixpkgs-f4ff33cce69f0bf56206bf3ee2e1230565c089e1.tar.xz
nixpkgs-f4ff33cce69f0bf56206bf3ee2e1230565c089e1.tar.zst
nixpkgs-f4ff33cce69f0bf56206bf3ee2e1230565c089e1.zip
alt-ergo: 2.3.1 → 2.3.2
Diffstat (limited to 'pkgs/applications/science/logic/alt-ergo')
-rw-r--r--pkgs/applications/science/logic/alt-ergo/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/applications/science/logic/alt-ergo/default.nix b/pkgs/applications/science/logic/alt-ergo/default.nix
index ad931c23d53..e396f1c4a91 100644
--- a/pkgs/applications/science/logic/alt-ergo/default.nix
+++ b/pkgs/applications/science/logic/alt-ergo/default.nix
@@ -2,12 +2,11 @@
 
 let
   pname = "alt-ergo";
-  version = "2.3.1";
+  version = "2.3.2";
 
   src = fetchurl {
-    url    = "https://alt-ergo.ocamlpro.com/download_manager.php?target=${pname}-${version}.tar.gz";
-    name   = "${pname}-${version}.tar.gz";
-    sha256 = "124n836alqm13245hcnxixzc6a15rip919shfflvxqnl617mkmhg";
+    url = "https://alt-ergo.ocamlpro.com/http/alt-ergo-${version}/alt-ergo-${version}.tar.gz";
+    sha256 = "130hisjzkaslygipdaaqib92spzx9rapsd45dbh5ssczjn5qnhb9";
   };
 
   preConfigure = "patchShebangs ./configure";
@@ -20,7 +19,7 @@ let alt-ergo-lib = ocamlPackages.buildDunePackage rec {
   pname = "alt-ergo-lib";
   inherit version src preConfigure nativeBuildInputs;
   configureFlags = pname;
-  propagatedBuildInputs = with ocamlPackages; [ num ocplib-simplex zarith ];
+  propagatedBuildInputs = with ocamlPackages; [ num ocplib-simplex stdlib-shims zarith ];
 }; in
 
 let alt-ergo-parsers = ocamlPackages.buildDunePackage rec {