summary refs log tree commit diff
path: root/pkgs/development/libraries/physics
diff options
context:
space:
mode:
authorDmitry Kalinkin <dmitry.kalinkin@gmail.com>2019-02-18 12:42:40 -0500
committerDmitry Kalinkin <dmitry.kalinkin@gmail.com>2019-02-19 10:19:25 -0500
commit78d041f6a96cfc56f24cdb96f1941ec97523636c (patch)
treeb0857e0304d89891fe25ca978cd1296b9cce50ee /pkgs/development/libraries/physics
parent0ea514f58f539fa8cd928eb4a0f9197871230189 (diff)
downloadnixpkgs-78d041f6a96cfc56f24cdb96f1941ec97523636c.tar
nixpkgs-78d041f6a96cfc56f24cdb96f1941ec97523636c.tar.gz
nixpkgs-78d041f6a96cfc56f24cdb96f1941ec97523636c.tar.bz2
nixpkgs-78d041f6a96cfc56f24cdb96f1941ec97523636c.tar.lz
nixpkgs-78d041f6a96cfc56f24cdb96f1941ec97523636c.tar.xz
nixpkgs-78d041f6a96cfc56f24cdb96f1941ec97523636c.tar.zst
nixpkgs-78d041f6a96cfc56f24cdb96f1941ec97523636c.zip
rivet: 2.6.2 -> 2.7.0
Diffstat (limited to 'pkgs/development/libraries/physics')
-rw-r--r--pkgs/development/libraries/physics/rivet/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/physics/rivet/default.nix b/pkgs/development/libraries/physics/rivet/default.nix
index 30f8ad8e8a3..01214878cd8 100644
--- a/pkgs/development/libraries/physics/rivet/default.nix
+++ b/pkgs/development/libraries/physics/rivet/default.nix
@@ -2,11 +2,11 @@
 
 stdenv.mkDerivation rec {
   name = "rivet-${version}";
-  version = "2.6.2";
+  version = "2.7.0";
 
   src = fetchurl {
     url = "https://www.hepforge.org/archive/rivet/Rivet-${version}.tar.bz2";
-    sha256 = "0yp3mllr2b4bhsmixjmmpl2n4x78bgw74a9xy2as4f10q3alkplx";
+    sha256 = "12mlj2j1glidjhiaxlr25qz2vfb865wip1vwwg8vlyd3yzisf533";
   };
 
   patches = [
@@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
     substituteInPlace analyses/Makefile.in \
       --replace "!(tmp)" ""
     substituteInPlace bin/rivet-buildplugin.in \
-      --replace '"which"' '"${which}/bin/which"' \
+      --replace 'which' '"${which}/bin/which"' \
       --replace 'mycxx=' 'mycxx=${stdenv.cc}/bin/${if stdenv.cc.isClang or false then "clang++" else "g++"}  #' \
       --replace 'mycxxflags="' "mycxxflags=\"-std=c++11 $NIX_CFLAGS_COMPILE $NIX_CXXSTDLIB_COMPILE $NIX_CFLAGS_LINK "
   '';