summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorMichael Raitza <michael.raitza@tu-dresden.de>2020-10-02 11:58:46 +0200
committerJörg Thalheim <joerg@thalheim.io>2020-11-17 16:12:21 +0100
commit62a34589b8cf2da71f3e7fdb5b5003b83710d00e (patch)
treef7e7c52397543752efe05d0a2dfd5da768d90cb5 /pkgs
parentc6372e3758ec41aed8f264e37b1da4d84e52491b (diff)
openafs_1_8: Cleanup build and fix build issues
Parallel building is broken, leading to failing builds in very rare cases. (volint.h not yet built while alredy needed when compiling volser.)
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/servers/openafs/1.8/default.nix21
1 files changed, 12 insertions, 9 deletions
diff --git a/pkgs/servers/openafs/1.8/default.nix b/pkgs/servers/openafs/1.8/default.nix
index 07f5560ff20a..4189ff9d0140 100644
--- a/pkgs/servers/openafs/1.8/default.nix
+++ b/pkgs/servers/openafs/1.8/default.nix
@@ -1,13 +1,15 @@
{ stdenv, buildPackages, fetchurl, which, autoconf, automake, flex
-, yacc , glibc, perl, kerberos, libxslt, docbook_xsl
, docbook_xml_dtd_43 , libtool_2, removeReferencesTo
-, ncurses # Extra ncurses utilities. Only needed for debugging.
+, yacc , glibc, perl, kerberos, libxslt, docbook_xsl, file
+, ncurses # Extra ncurses utilities. Needed for debugging and monitoring.
, tsmbac ? null # Tivoli Storage Manager Backup Client from IBM
}:
with (import ./srcs.nix { inherit fetchurl; });
+let
+ inherit (stdenv.lib) optional optionalString optionals;
-stdenv.mkDerivation {
+in stdenv.mkDerivation {
pname = "openafs";
inherit version srcs;
@@ -17,11 +19,11 @@ stdenv.mkDerivation {
buildInputs = [ kerberos ncurses ];
- patches = [ ./bosserver.patch ./cross-build.patch ] ++ stdenv.lib.optional (tsmbac != null) ./tsmbac.patch;
+ patches = [ ./bosserver.patch ./cross-build.patch ] ++ optional (tsmbac != null) ./tsmbac.patch;
outputs = [ "out" "dev" "man" "doc" "server" ];
- enableParallelBuilding = true;
+ enableParallelBuilding = false;
setOutputFlags = false;
@@ -44,19 +46,20 @@ stdenv.mkDerivation {
./regen.sh
+
configureFlagsArray=(
"--with-gssapi"
"--sysconfdir=/etc"
"--localstatedir=/var"
"--disable-kernel-module"
"--disable-fuse-client"
- "--with-html-xsl=${docbook_xsl}/share/xml/docbook-xsl/html/chunk.xsl"
- ${stdenv.lib.optionalString (tsmbac != null) "--enable-tivoli-tsm"}
- ${stdenv.lib.optionalString (ncurses == null) "--disable-gtx"}
+ "--with-docbook-stylesheets=${docbook_xsl}/share/xml/docbook-xsl"
+ ${optionalString (tsmbac != null) "--enable-tivoli-tsm"}
+ ${optionalString (ncurses == null) "--disable-gtx"}
"--disable-linux-d_splice-alias-extra-iput"
"--libexecdir=$server/libexec"
)
- '' + stdenv.lib.optionalString (tsmbac != null) ''
+ '' + optionalString (tsmbac != null) ''
export XBSA_CFLAGS="-Dxbsa -DNEW_XBSA -I${tsmbac}/lib64/sample -DXBSA_TSMLIB=\\\"${tsmbac}/lib64/libApiTSM64.so\\\""
export XBSA_XLIBS="-ldl"
'';