about summary refs log tree commit diff
path: root/pkgs/applications/video/mpv/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/video/mpv/scripts')
-rw-r--r--pkgs/applications/video/mpv/scripts/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/video/mpv/scripts/default.nix b/pkgs/applications/video/mpv/scripts/default.nix
index c4210a0ecf1e1..d1f35882afb1f 100644
--- a/pkgs/applications/video/mpv/scripts/default.nix
+++ b/pkgs/applications/video/mpv/scripts/default.nix
@@ -14,8 +14,8 @@ let
     scriptPath = "share/mpv/scripts/${scriptName}";
     fullScriptPath = "${drv}/${scriptPath}";
 
-  in drv.override { passthru.tests = unionOfDisjoints [
-    (drv.passthru.tests or {})
+  in drv.overrideAttrs (old: { passthru = (old.passthru or {}) // { tests = unionOfDisjoints [
+    (old.passthru.tests or {})
 
     {
       scriptName-is-valid = runCommand "mpvScripts.${name}.passthru.tests.scriptName-is-valid" {
@@ -53,7 +53,7 @@ let
         fi
       '';
     })
-  ]; };
+  ]; }; });
 in
 
 lib.recurseIntoAttrs