lol

Merge pull request #304784 from zlepper/remove-bash-runtime-dep-from-libicu

icu: refactor to avoid runtime dependency on bash

authored by

7c6f434c and committed by
GitHub
76317806 638b802e

+4
+2
nixos/doc/manual/release-notes/rl-2405.section.md
··· 453 453 454 454 - The `erlang-ls` package no longer ships the `els_dap` binary as of v0.51.0. 455 455 456 + - `icu` no longer includes `install-sh` and `mkinstalldirs` in the shared folder. 457 + 456 458 ## Other Notable Changes {#sec-release-24.05-notable-changes} 457 459 458 460 <!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. -->
+2
pkgs/development/libraries/icu/make-icu.nix
··· 75 75 { from = "\${pkglibdir}/pkgdata.inc"; to = "${placeholder "dev"}/lib/icu/pkgdata.inc"; } # --incpkgdatafile 76 76 ]; 77 77 in '' 78 + rm $out/share/icu/${version}/install-sh $out/share/icu/${version}/mkinstalldirs # Avoid having a runtime dependency on bash 79 + 78 80 substituteInPlace "$dev/bin/icu-config" \ 79 81 ${lib.concatMapStringsSep " " (r: "--replace '${r.from}' '${r.to}'") replacements} 80 82 '');