Merge bscpkgs into jungle #189

Manually merged
rarias merged 1013 commits from merge-bscpkgs into master 2025-10-07 16:12:34 +02:00
6 changed files with 7 additions and 1 deletions
Showing only changes of commit 4316e7b12d - Show all commits

View File

@@ -87,6 +87,7 @@ in
# Keep debug symbols in the debug variant of the library
dontStrip = enableDebug;
separateDebugInfo = true;
buildInputs = [
autoconf

View File

@@ -51,6 +51,7 @@ in
enableParallelBuilding = true;
dontStrip = true;
separateDebugInfo = true;
configureFlags = [
"--with-nosv=${nosv}"

View File

@@ -42,6 +42,7 @@ in
inherit (source) src version;
hardeningDisable = [ "all" ];
dontStrip = true;
separateDebugInfo = true;
configureFlags = [ "--with-ovni=${ovni}" ];
buildInputs = [
autoreconfHook

View File

@@ -38,6 +38,8 @@ in
stdenv.mkDerivation rec {
pname = "ovni";
inherit (source) src version;
dontStrip = true;
separateDebugInfo = true;
postPatch = ''
patchShebangs --build test/
'';
@@ -47,7 +49,6 @@ in
preCheck = ''
export CTEST_OUTPUT_ON_FAILURE=1
'';
dontStrip = true;
doCheck = true;
checkTarget = "test";
hardeningDisable = [ "all" ];

View File

@@ -16,6 +16,7 @@ stdenv.mkDerivation rec {
pname = "tagaspi";
version = src.shortRev;
enableParallelBuilding = true;
separateDebugInfo = true;
buildInputs = [
autoreconfHook

View File

@@ -15,6 +15,7 @@ stdenv.mkDerivation rec {
version = "2.0";
pname = "tampi";
enableParallelBuilding = true;
separateDebugInfo = true;
buildInputs = [ autoreconfHook automake autoconf libtool gnumake boost mpi gcc ];
dontDisableStatic = true;