core/pkgs/by-name/li/libidn2/no-bootstrap-reference.nix

34 lines
1.1 KiB
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
{ stdenv, lib, libidn2, libunistring, runCommandLocal, patchelf }:
# Construct a copy of libidn2.* where all (transitive) libc references (in .bin)
# get replaced by a new one, so that there's no reference to bootstrap tools.
2024-05-13 21:24:10 +00:00
runCommandLocal "${libidn2.pname}-${libidn2.version}" {
outputs = [ "bin" "dev" "out" ];
passthru = {
inherit (libidn2) out info devdoc; # no need to touch these store paths
};
inherit (libidn2) meta;
} ''
cp -r '${libidn2.bin}' "$bin"
chmod +w "$bin"/bin/*
patchelf \
--set-interpreter '${stdenv.cc.bintools.dynamicLinker}' \
--set-rpath '${
lib.concatMapStringsSep ":" (p: lib.getLib p + "/lib") [
stdenv.cc.libc
libunistring
libidn2
]
}' \
"$bin"/bin/*
2024-05-02 00:46:19 +00:00
2024-05-13 21:24:10 +00:00
cp -r '${libidn2.dev}' "$dev"
chmod +w "$dev"/nix-support/propagated-build-inputs
substituteInPlace "$dev"/nix-support/propagated-build-inputs \
--replace '${libidn2.bin}' "$bin"
substituteInPlace "$dev"/lib/pkgconfig/libidn2.pc \
--replace '${libidn2.dev}' "$dev"
2024-05-02 00:46:19 +00:00
2024-05-13 21:24:10 +00:00
ln -s '${libidn2.out}' "$out" # it's hard to be without any $out
''
2024-05-02 00:46:19 +00:00