libunwind: use native true executable for build

This commit is contained in:
Jörg Thalheim
2021-12-06 19:41:32 +01:00
parent c7fa870f5a
commit 2a2377f40e
@@ -1,4 +1,4 @@
{ stdenv, lib, fetchurl, fetchpatch, autoreconfHook, xz, coreutils }:
{ stdenv, lib, fetchurl, fetchpatch, autoreconfHook, xz, buildPackages }:
stdenv.mkDerivation rec {
pname = "libunwind";
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
# Without latex2man, no man pages are installed despite being
# prebuilt in the source tarball.
configureFlags = [ "LATEX2MAN=${coreutils}/bin/true" ];
configureFlags = [ "LATEX2MAN=${buildPackages.coreutils}/bin/true" ];
propagatedBuildInputs = [ xz ];