lesspipe: Fix build on OpenBSD

For some reason resholve can figure out that `file` built for
FreeBSD and Linux do not execute arguments, but not for OpenBSD.
Explicitly tell it that there is no problem
This commit is contained in:
Artemis Tosini
2025-01-08 15:39:22 -07:00
committed by Audrey Dutcher
parent ee95856b16
commit a426ed3d09
+4
View File
@@ -167,6 +167,7 @@ stdenv.mkDerivation rec {
};
execer = [
"cannot:${iconv}/bin/iconv"
"cannot:${file}/bin/file"
];
}}
${resholve.phraseSolution "lesscomplete" {
@@ -216,6 +217,9 @@ stdenv.mkDerivation rec {
];
builtin = [ "setopt" ];
};
execer = [
"cannot:${file}/bin/file"
];
}}
'';