freeimpi: disable hardcoded uid check (#436009)

This commit is contained in:
7c6f434c
2025-08-25 13:32:09 +00:00
committed by GitHub
+5 -1
View File
@@ -25,7 +25,11 @@ stdenv.mkDerivation rec {
libgpg-error
];
configureFlags = lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
configureFlags = [
# Device permissions are set by udev/kernel, so don't restrict them unnecessarily
"--with-dont-check-for-root"
]
++ lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
"ac_cv_file__dev_urandom=true"
"ac_cv_file__dev_random=true"
];