Merge pull request #109108 from Mic92/static-strace
pkgsStatic.strace: fix build
This commit is contained in:
commit
70bff07817
@ -21,7 +21,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=${coreutils}/bin/true" ];
|
||||
|
||||
propagatedBuildInputs = [ xz ];
|
||||
|
||||
|
@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
postPatch = "patchShebangs --host strace-graph";
|
||||
|
||||
configureFlags = stdenv.lib.optional (!stdenv.hostPlatform.isx86) "--enable-mpers=check";
|
||||
configureFlags = [ "--enable-mpers=check" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://strace.io/";
|
||||
|
@ -310,7 +310,7 @@ lib.makeScope pkgs.newScope (self: with self; {
|
||||
})
|
||||
];
|
||||
postPhpize = ''substituteInPlace configure --replace 'as_fn_error $? "Cannot locate header file libintl.h" "$LINENO" 5' ':' '';
|
||||
configureFlags = "--with-gettext=${gettext}"; }
|
||||
configureFlags = [ "--with-gettext=${gettext}" ]; }
|
||||
{ name = "gmp";
|
||||
buildInputs = [ gmp ];
|
||||
configureFlags = [ "--with-gmp=${gmp.dev}" ]; }
|
||||
|
Loading…
Reference in New Issue
Block a user