1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-26 07:31:20 +00:00

strace: mpers check always

this fix pkgsStatic on x86 build where we don't support 32bit yet.
This commit is contained in:
Jörg Thalheim 2021-01-06 09:11:55 +01:00
parent 2af38d76fe
commit 3364d09e4c
No known key found for this signature in database
GPG key ID: 003F2096411B5F92

View file

@ -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/";