mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 19:02:57 +00:00
hoppet: fix sandboxed build
This commit is contained in:
parent
6ac4267ef3
commit
8f92eff731
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, gfortran }:
|
{ stdenv, fetchurl, gfortran, perl }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "hoppet-${version}";
|
name = "hoppet-${version}";
|
||||||
@ -10,9 +10,14 @@ stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ gfortran ];
|
buildInputs = [ gfortran ];
|
||||||
|
nativeBuildInputs = [ perl ];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
patchShebangs .
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Higher Order Perturbative Parton Evolution Toolkit";
|
description = "Higher Order Perturbative Parton Evolution Toolkit";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
|
Loading…
Reference in New Issue
Block a user