about summary refs log tree commit diff
path: root/machines/profpatsch/pkgs.nix
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2021-04-23 17:45:45 +0200
committerProfpatsch <mail@profpatsch.de>2021-04-23 17:45:45 +0200
commit1fe6dfaf8332462e5b1d75f60d7317050eee88bf (patch)
tree89c438e022703b2d1970f4218ad0f627fb05a5f3 /machines/profpatsch/pkgs.nix
parent84d6379392b9f580424ef1ef25c499e698a7d69f (diff)
machines/profpatsch: use unfreeAndNonDistributablePkgs for convert
Diffstat (limited to 'machines/profpatsch/pkgs.nix')
-rw-r--r--machines/profpatsch/pkgs.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/machines/profpatsch/pkgs.nix b/machines/profpatsch/pkgs.nix
index 8174399d..ae13e7ef 100644
--- a/machines/profpatsch/pkgs.nix
+++ b/machines/profpatsch/pkgs.nix
@@ -7,7 +7,9 @@ assert withUnfree -> unfreeAndNonDistributablePkgs != null;
 let
 
   mpv = pkgs.wrapMpv pkgs.mpv-unwrapped {
-    scripts = [ pkgs.mpvScripts.convert ];
+    scripts = [
+      (unfreeAndNonDistributablePkgs pkgs.mpvScripts.convert)
+    ];
   };
 
   beets = pkgs.beets.override { enableAlternatives = true; };