tampi: add gitlab repo in tampiGit
This commit is contained in:
parent
ec21ba98b5
commit
a227084e39
26
bsc/tampi/git.nix
Normal file
26
bsc/tampi/git.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{
|
||||
stdenv
|
||||
, fetchurl
|
||||
, automake
|
||||
, autoconf
|
||||
, libtool
|
||||
, gnumake
|
||||
, boost
|
||||
, mpi
|
||||
, gcc
|
||||
, autoreconfHook
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "tampi";
|
||||
version = "${src.shortRev}";
|
||||
enableParallelBuilding = true;
|
||||
buildInputs = [ autoreconfHook automake autoconf libtool gnumake boost mpi gcc ];
|
||||
dontDisableStatic = true;
|
||||
configureFlags = [ "--disable-mpi-mt-check" "CXXFLAGS=-DOMPI_SKIP_MPICXX=1" ];
|
||||
|
||||
src = builtins.fetchGit {
|
||||
url = "ssh://git@bscpm02.bsc.es/interoperability/tampi";
|
||||
ref = "master";
|
||||
};
|
||||
}
|
@ -82,7 +82,9 @@ let
|
||||
|
||||
extrae = callPackage ./bsc/extrae/default.nix { };
|
||||
|
||||
tampi = callPackage ./bsc/tampi/default.nix { };
|
||||
tampi = self.bsc.tampiRelease;
|
||||
tampiRelease = callPackage ./bsc/tampi/default.nix { };
|
||||
tampiGit = callPackage ./bsc/tampi/git.nix { };
|
||||
|
||||
mcxxGit = callPackage ./bsc/mcxx/default.nix {
|
||||
bison = self.bison_3_5;
|
||||
|
Loading…
Reference in New Issue
Block a user