pkgs: Do all version requirements as overrides in all-packages

This commit is contained in:
Tyson Whitehead
2018-07-18 13:21:33 -04:00
parent 6118f8b275
commit 444bcbe26f
8 changed files with 22 additions and 25 deletions

View File

@@ -9,12 +9,12 @@
# nlopt (only provides libnlopt_cxx which requires c++ compiler for linking)
#
{ stdenv, fetchurl, overrideCC, gcc5, gfortran5, perl, openmpi
{ stdenv, fetchurl, gfortran, perl, openmpi
, libxc3, blas, liblapack, gsl, fftw, netcdffortran
, arpack, libyaml }:
let
common = version: sha256: (overrideCC stdenv gcc5).mkDerivation rec {
common = version: sha256: stdenv.mkDerivation rec {
inherit version;
name = "octopus-${version}";
@@ -24,7 +24,7 @@ let
};
buildInputs = [
gfortran5
gfortran
perl
openmpi
libxc3