Add compilers

This commit is contained in:
Rodrigo
2020-06-09 18:21:02 +02:00
parent 5a4068b497
commit 20e3f4d4f0
5 changed files with 44 additions and 14 deletions

View File

@@ -7,7 +7,7 @@
, gnumake
, boost
, mpi
, gcc }:
, gcc}:
let
inherit stdenv fetchurl;
@@ -16,11 +16,13 @@ in
{
hello = stdenv.mkDerivation rec {
name = "tampi-${version}";
enableParallelBuilding = true;
buildInputs = [ automake autoconf libtool gnumake boost mpi gcc ];
#hardeningDisable = [ "format" ];
preConfigure = ''
autoreconf -fiv
'';
configureFlags = [ "--disable-mpi-mt-check" ];
src = fetchurl {
url = "https://github.com/bsc-pm/tampi/archive/v${version}.tar.gz";
sha256 = "8608a74325939d2a6b56e82f7f6788efbc67731e2d64793bac69475f5b4b9704";