about summary refs log tree commit diff
path: root/nixos/modules/services/audio
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/services/audio
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/services/audio')
-rw-r--r--nixos/modules/services/audio/mopidy.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/audio/mopidy.nix b/nixos/modules/services/audio/mopidy.nix
index 50ee9a824515e..40e8679f53d74 100644
--- a/nixos/modules/services/audio/mopidy.nix
+++ b/nixos/modules/services/audio/mopidy.nix
@@ -14,7 +14,7 @@ let
     name = "mopidy-with-extensions-${mopidy.version}";
     paths = closePropagation cfg.extensionPackages;
     pathsToLink = [ "/${mopidyPackages.python.sitePackages}" ];
-    buildInputs = [ makeWrapper ];
+    nativeBuildInputs = [ makeWrapper ];
     postBuild = ''
       makeWrapper ${mopidy}/bin/mopidy $out/bin/mopidy \
         --prefix PYTHONPATH : $out/${mopidyPackages.python.sitePackages}