We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 67f803d + e337131 commit ae25233Copy full SHA for ae25233
pkgs/os-specific/linux/firmware/linux-firmware/default.nix
@@ -1,6 +1,5 @@
1
{ stdenvNoCC
2
, fetchzip
3
-, findutils
4
, lib
5
, python3
6
, rdfind
@@ -13,7 +12,7 @@ let
13
12
# in a perfectly pristine tree, so we can fake just enough of git to run it.
14
gitStub = writeShellScriptBin "git" ''
15
if [ "$1" == "ls-files" ]; then
16
- ${lib.getExe findutils} -type f -printf "%P\n"
+ find -type f -printf "%P\n"
17
else
18
echo "Git stub called with unexpected arguments $@" >&2
19
exit 1
0 commit comments