about summary refs log tree commit diff
path: root/nixos/modules/hardware
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2022-09-25 00:28:38 +0300
committerArtturin <Artturin@artturin.com>2022-09-26 17:53:26 +0300
commit6910a4eea0038728a2f10ce84122806f2cb6b170 (patch)
treed4d3f2581fe8f2231ff7b4352adce72157cd6248 /nixos/modules/hardware
parentcbfc406adc8701b0f73e5fd73c06b8f8eeddeb49 (diff)
treewide: makeWrapper to nativeBuildInputs
this should be all of them other than the failed splices
found with nixpkgs-lint
Diffstat (limited to 'nixos/modules/hardware')
-rw-r--r--nixos/modules/hardware/video/uvcvideo/uvcdynctrl-udev-rules.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/nixos/modules/hardware/video/uvcvideo/uvcdynctrl-udev-rules.nix b/nixos/modules/hardware/video/uvcvideo/uvcdynctrl-udev-rules.nix
index a808429c99968..8dadbd53b9891 100644
--- a/nixos/modules/hardware/video/uvcvideo/uvcdynctrl-udev-rules.nix
+++ b/nixos/modules/hardware/video/uvcvideo/uvcdynctrl-udev-rules.nix
@@ -23,8 +23,10 @@ in
 runCommand "uvcdynctrl-udev-rules-${version}"
 {
   inherit dataPath;
-  buildInputs = [
+  nativeBuildInputs = [
     makeWrapper
+  ];
+  buildInputs = [
     libwebcam
   ];
   dontPatchELF = true;