mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-18 00:49:52 +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 {
|
stdenv.mkDerivation rec {
|
||||||
pname = "applgrid";
|
pname = "applgrid";
|
||||||
|
@ -9,7 +9,8 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "1yw9wrk3vjv84kd3j4s1scfhinirknwk6xq0hvj7x2srx3h93q9p";
|
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 = [
|
patches = [
|
||||||
./bad_code.patch
|
./bad_code.patch
|
||||||
|
|
Loading…
Reference in a new issue