bscpkgs/garlic/apps/bigsort/genseq.nix

44 lines
761 B
Nix
Raw Normal View History

2020-11-20 22:38:26 +08:00
{
stdenv
, cc
, mpi
}:
with stdenv.lib;
stdenv.mkDerivation rec {
name = "genseq";
src = builtins.fetchGit {
2020-12-07 20:47:17 +08:00
url = "ssh://git@bscpm03.bsc.es/dalvare1/bigsort.git";
2020-11-20 22:38:26 +08:00
ref = "garlic/mpi+send+omp+task";
};
postUnpack = "sourceRoot=$sourceRoot/GenSeq";
# FIXME: Remove the ../commons/Makefile as is not useful here, we only need
# the CPP_SRC and OBJ variables.
postPatch = ''
sed -i '1cCPP_SRC = $(wildcard *.cpp)' Makefile
sed -i '2cOBJ = $(CPP_SRC:.cpp=.o)' Makefile
'';
buildInputs = [
cc
mpi
];
makeFlags = [
2020-12-04 01:06:51 +08:00
"I_MPI_CXX=${cc.CXX}"
2020-11-20 22:38:26 +08:00
"CPP_BIN=mpicxx"
];
enableParallelBuilding = true;
installPhase = ''
mkdir -p $out/bin
cp genseq $out/bin/genseq
'';
programPath = "/bin/genseq";
}