mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 07:00:43 +00:00
applgrid: fix build
This commit is contained in:
parent
bd0c4dd6ab
commit
89074b4a15
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, gfortran, hoppet, lhapdf, root5 }:
|
||||
{ stdenv, fetchurl, gfortran, hoppet, lhapdf, root5, zlib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "applgrid";
|
||||
|
@ -9,7 +9,8 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "1yw9wrk3vjv84kd3j4s1scfhinirknwk6xq0hvj7x2srx3h93q9p";
|
||||
};
|
||||
|
||||
buildInputs = [ gfortran hoppet lhapdf root5 ];
|
||||
# For some reason zlib was only needed after bump to gfortran8
|
||||
buildInputs = [ gfortran hoppet lhapdf root5 zlib ];
|
||||
|
||||
patches = [
|
||||
./bad_code.patch
|
||||
|
|
Loading…
Reference in a new issue