summary refs log tree commit diff
path: root/pkgs/development/libraries/physics
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2019-01-12 12:15:44 +0100
committerVladimír Čunát <vcunat@gmail.com>2019-01-12 12:19:34 +0100
commitbde8efe792b5be621a1fdc169a3b717b5a5b5cc2 (patch)
tree93b8d1a2b18224578db4cab7ada60d28692f3e89 /pkgs/development/libraries/physics
parent3d730814998c6f7ac8bfb753b9514a0df4a9d183 (diff)
parent6359e9baf01a7bdc37f18a6eda7b6953e95318f0 (diff)
downloadnixpkgs-bde8efe792b5be621a1fdc169a3b717b5a5b5cc2.tar
nixpkgs-bde8efe792b5be621a1fdc169a3b717b5a5b5cc2.tar.gz
nixpkgs-bde8efe792b5be621a1fdc169a3b717b5a5b5cc2.tar.bz2
nixpkgs-bde8efe792b5be621a1fdc169a3b717b5a5b5cc2.tar.lz
nixpkgs-bde8efe792b5be621a1fdc169a3b717b5a5b5cc2.tar.xz
nixpkgs-bde8efe792b5be621a1fdc169a3b717b5a5b5cc2.tar.zst
nixpkgs-bde8efe792b5be621a1fdc169a3b717b5a5b5cc2.zip
Merge branch 'master' into staging-next
A couple thousand rebuilds have accumulated on master.
Diffstat (limited to 'pkgs/development/libraries/physics')
-rw-r--r--pkgs/development/libraries/physics/hoppet/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgs/development/libraries/physics/hoppet/default.nix b/pkgs/development/libraries/physics/hoppet/default.nix
index 55714afbdce..9c379f6a347 100644
--- a/pkgs/development/libraries/physics/hoppet/default.nix
+++ b/pkgs/development/libraries/physics/hoppet/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, gfortran }:
+{ stdenv, fetchurl, gfortran, perl }:
 
 stdenv.mkDerivation rec {
   name = "hoppet-${version}";
@@ -10,9 +10,14 @@ stdenv.mkDerivation rec {
   };
 
   buildInputs = [ gfortran ];
+  nativeBuildInputs = [ perl ];
 
   enableParallelBuilding = true;
 
+  preConfigure = ''
+    patchShebangs .
+  '';
+
   meta = with stdenv.lib; {
     description = "Higher Order Perturbative Parton Evolution Toolkit";
     license     = licenses.gpl2;