From b70ab2350ad51c60fe7a3a411e6511224058e2f7 Mon Sep 17 00:00:00 2001 From: Ben Wolsieffer Date: Mon, 26 Oct 2020 20:33:43 -0400 Subject: [PATCH] liburing: fix cross-compilation --- pkgs/development/libraries/liburing/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/libraries/liburing/default.nix b/pkgs/development/libraries/liburing/default.nix index 1839c0ec187c..938846ace54f 100644 --- a/pkgs/development/libraries/liburing/default.nix +++ b/pkgs/development/libraries/liburing/default.nix @@ -28,6 +28,9 @@ stdenv.mkDerivation rec { ) ''; + # Doesn't recognize platform flags + configurePlatforms = []; + outputs = [ "out" "bin" "dev" "man" ]; postInstall =