Aleix Roca Nonell
4316e7b12d
For now, we keep dontStrip for packages that already had it for systems without the separatedebuginfo support. Reviewed-By: Rodrigo Arias Mallo <rodrigo.arias@bsc.es> Tested-By: Rodrigo Arias Mallo <rodrigo.arias@bsc.es>
31 lines
551 B
Nix
31 lines
551 B
Nix
{
|
|
stdenv
|
|
, fetchFromGitHub
|
|
, automake
|
|
, autoconf
|
|
, libtool
|
|
, gnumake
|
|
, boost
|
|
, mpi
|
|
, gcc
|
|
, autoreconfHook
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "2.0";
|
|
pname = "tampi";
|
|
enableParallelBuilding = true;
|
|
separateDebugInfo = true;
|
|
buildInputs = [ autoreconfHook automake autoconf libtool gnumake boost mpi gcc ];
|
|
dontDisableStatic = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bsc-pm";
|
|
repo = "tampi";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-m0LDgP4pfUwavUaagcCsZ/ZHbnWBZdtHtGq108btGKM=";
|
|
};
|
|
|
|
hardeningDisable = [ "all" ];
|
|
}
|