summary refs log tree commit diff
path: root/pkgs/development/libraries/mpfi
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2021-01-20 08:01:42 +0000
committerR. RyanTM <ryantm-bot@ryantm.com>2021-01-20 08:01:42 +0000
commitbd9f2cc0b5ec9a3f3e24c53c3fd86a07dcc0a18f (patch)
tree254572c1dfe987f4f31c2e3fb56ec2d84ecd6d04 /pkgs/development/libraries/mpfi
parent35b89f31e380d428dcb83563812d69cdcf11178c (diff)
downloadnixpkgs-bd9f2cc0b5ec9a3f3e24c53c3fd86a07dcc0a18f.tar
nixpkgs-bd9f2cc0b5ec9a3f3e24c53c3fd86a07dcc0a18f.tar.gz
nixpkgs-bd9f2cc0b5ec9a3f3e24c53c3fd86a07dcc0a18f.tar.bz2
nixpkgs-bd9f2cc0b5ec9a3f3e24c53c3fd86a07dcc0a18f.tar.lz
nixpkgs-bd9f2cc0b5ec9a3f3e24c53c3fd86a07dcc0a18f.tar.xz
nixpkgs-bd9f2cc0b5ec9a3f3e24c53c3fd86a07dcc0a18f.tar.zst
nixpkgs-bd9f2cc0b5ec9a3f3e24c53c3fd86a07dcc0a18f.zip
mpfi: 1.5.3 -> 1.5.4
Diffstat (limited to 'pkgs/development/libraries/mpfi')
-rw-r--r--pkgs/development/libraries/mpfi/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/mpfi/default.nix b/pkgs/development/libraries/mpfi/default.nix
index 88617e9a740..f8f8d2391af 100644
--- a/pkgs/development/libraries/mpfi/default.nix
+++ b/pkgs/development/libraries/mpfi/default.nix
@@ -1,14 +1,14 @@
 {stdenv, fetchurl, mpfr}:
 stdenv.mkDerivation rec {
   pname = "mpfi";
-  version = "1.5.3";
+  version = "1.5.4";
   file_nr = "37331";
   src = fetchurl {
     # NOTE: the file_nr is whats important here. The actual package name (including the version)
     # is ignored. To find out the correct file_nr, go to https://gforge.inria.fr/projects/mpfi/
     # and click on Download in the section "Latest File Releases".
     url = "https://gforge.inria.fr/frs/download.php/file/${file_nr}/mpfi-${version}.tar.bz2";
-    sha256 = "0bqr8yibl7jbrp0bw7xk1lm7nis7rv26jsz6y8ycvih8n9bx90r3";
+    sha256 = "sha256-I4PUV7IIxs088uZracTOR0d7Kg2zH77AzUseuqJHGS8=";
   };
   buildInputs = [mpfr];
   meta = {