···1010 };
11111212 sourceRoot = "ncbi-blast-${version}+-src/c++";
1313-1414- configureFlags = [
1313+1414+ configureFlags = [
1515 # With flat Makefile we can use all_projects in order not to build extra.
1616 # These extra cause clang to hang on Darwin.
1717 "--with-flat-makefile"
1818- "--without-makefile-auto-update"
1818+ "--without-makefile-auto-update"
1919 "--with-dll" # build dynamic libraries (static are default)
2020 ];
2121-2121+2222 makeFlags = [ "all_projects=app/" ];
23232424 preConfigure = ''
···2222 tar --strip-components=1 -xjf "$src" -C "$out"
23232424 interpreter="$(cat "$NIX_CC"/nix-support/dynamic-linker)"
2525- for a in "$out"/bin/*; do
2525+ for a in "$out"/bin/*; do
2626 patchelf --set-interpreter "$interpreter" "$a"
2727 patchelf --set-rpath "$out/lib:${boehmgc.out}/lib" "$a"
2828 done
2929- for a in "$out"/lib/*.so; do
2929+ for a in "$out"/lib/*.so; do
3030 patchelf --set-rpath "$out/lib:${boehmgc.out}/lib" "$a"
3131 done
3232 sed -i -e "s|\-lgc|\-L${boehmgc.out}\/lib -lgc|" $out/lib/config.jam
···38383939 # Wrap emulator so that it can load required libraries at runtime
4040 wrapProgram $out/libexec/android-sdk/emulator/emulator \
4141- --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [
4141+ --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [
4242 pkgs.dbus
4343 pkgs.systemd
4444 ]} \
+2-2
pkgs/development/mobile/xcodeenv/build-app.nix
···5858 # Be sure that the Xcode wrapper has priority over everything else.
5959 # When using buildInputs this does not seem to be the case.
6060 export PATH=${xcodewrapper}/bin:$PATH
6161-6161+6262 ${stdenv.lib.optionalString release ''
6363 export HOME=/Users/$(whoami)
6464 keychainName="$(basename $out)"
···6969 security unlock-keychain -p "" $keychainName
70707171 # Import the certificate into the keychain
7272- security import ${certificateFile} -k $keychainName -P "${certificatePassword}" -A
7272+ security import ${certificateFile} -k $keychainName -P "${certificatePassword}" -A
73737474 # Grant the codesign utility permissions to read from the keychain
7575 security set-key-partition-list -S apple-tool:,apple: -s -k "" $keychainName
···49495050 installPhase = ''
5151 $makeCmd INSTALL_DIR=$out install
5252- '';
5252+ '';
53535454 meta = with stdenv.lib; {
5555 description = "Ancillary tools for the D programming language compiler";
···1616 rm bin/mn.bat
1717 cp -r . $out
1818 wrapProgram $out/bin/mn \
1919- --prefix JAVA_HOME : ${jdk}
1919+ --prefix JAVA_HOME : ${jdk}
2020 installShellCompletion --bash --name mn.bash bin/mn_completion
2121 runHook postInstall
2222 '';
···2626 longDescription = ''
2727 Micronaut is a modern, JVM-based, full stack microservices framework
2828 designed for building modular, easily testable microservice applications.
2929- Reflection-based IoC frameworks load and cache reflection data for
3030- every single field, method, and constructor in your code, whereas with
3131- Micronaut, your application startup time and memory consumption are
2929+ Reflection-based IoC frameworks load and cache reflection data for
3030+ every single field, method, and constructor in your code, whereas with
3131+ Micronaut, your application startup time and memory consumption are
3232 not bound to the size of your codebase.
3333 '';
3434 homepage = "https://micronaut.io/";