hoppet: fix sandboxed build

Changed files
+6 -1
pkgs
development
libraries
physics
hoppet
+6 -1
pkgs/development/libraries/physics/hoppet/default.nix
···
-
{ stdenv, fetchurl, gfortran }:
stdenv.mkDerivation rec {
name = "hoppet-${version}";
···
};
buildInputs = [ gfortran ];
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "Higher Order Perturbative Parton Evolution Toolkit";
···
+
{ stdenv, fetchurl, gfortran, perl }:
stdenv.mkDerivation rec {
name = "hoppet-${version}";
···
};
buildInputs = [ gfortran ];
+
nativeBuildInputs = [ perl ];
enableParallelBuilding = true;
+
+
preConfigure = ''
+
patchShebangs .
+
'';
meta = with stdenv.lib; {
description = "Higher Order Perturbative Parton Evolution Toolkit";