adns: rearrange furniture

Emily cf3ff2dd 9a071c95

+6 -5
+6 -5
pkgs/by-name/ad/adns/package.nix
··· 1 { 2 - stdenv, 3 lib, 4 fetchurl, 5 gnum4, 6 gitUpdater, ··· 22 23 configureFlags = lib.optional stdenv.hostPlatform.isStatic "--disable-dynamic"; 24 25 - preConfigure = lib.optionalString stdenv.hostPlatform.isDarwin "sed -i -e 's|-Wl,-soname=$(SHLIBSONAME)||' configure"; 26 - 27 # Autogenerated headers miss interdependencies in Makefile, fail parallel build: 28 # https://debbugs.gnu.org/cgi/bugreport.cgi?bug=51329 29 enableParallelBuilding = false; ··· 31 # https://www.mail-archive.com/nix-dev@cs.uu.nl/msg01347.html for details. 32 doCheck = false; 33 34 postInstall = 35 let 36 suffix = lib.versions.majorMinor version; ··· 39 install_name_tool -id $out/lib/libadns.so.${suffix} $out/lib/libadns.so.${suffix} 40 ''; 41 42 - # darwin executables fail, but I don't want to fail the 100-500 packages depending on this lib 43 - doInstallCheck = !stdenv.hostPlatform.isDarwin; 44 installCheckPhase = '' 45 set -eo pipefail 46
··· 1 { 2 lib, 3 + stdenv, 4 fetchurl, 5 gnum4, 6 gitUpdater, ··· 22 23 configureFlags = lib.optional stdenv.hostPlatform.isStatic "--disable-dynamic"; 24 25 # Autogenerated headers miss interdependencies in Makefile, fail parallel build: 26 # https://debbugs.gnu.org/cgi/bugreport.cgi?bug=51329 27 enableParallelBuilding = false; ··· 29 # https://www.mail-archive.com/nix-dev@cs.uu.nl/msg01347.html for details. 30 doCheck = false; 31 32 + # darwin executables fail, but I don't want to fail the 100-500 packages depending on this lib 33 + doInstallCheck = !stdenv.hostPlatform.isDarwin; 34 + 35 + preConfigure = lib.optionalString stdenv.hostPlatform.isDarwin "sed -i -e 's|-Wl,-soname=$(SHLIBSONAME)||' configure"; 36 + 37 postInstall = 38 let 39 suffix = lib.versions.majorMinor version; ··· 42 install_name_tool -id $out/lib/libadns.so.${suffix} $out/lib/libadns.so.${suffix} 43 ''; 44 45 installCheckPhase = '' 46 set -eo pipefail 47