summary refs log tree commit diff
path: root/nixos/modules/services/misc/octoprint.nix
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-04-10 22:50:31 +0300
committerTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2016-04-14 08:32:20 +0300
commit4d90f2d73de4cbc954ddfbeaf661212ffd348a3f (patch)
tree977e3c2d7c6a08d554cf62ab3e0d7849ff50ae5a /nixos/modules/services/misc/octoprint.nix
parentb9eb94499026ad926d37ad71f9ad1364fa99cb06 (diff)
downloadnixpkgs-4d90f2d73de4cbc954ddfbeaf661212ffd348a3f.tar
nixpkgs-4d90f2d73de4cbc954ddfbeaf661212ffd348a3f.tar.gz
nixpkgs-4d90f2d73de4cbc954ddfbeaf661212ffd348a3f.tar.bz2
nixpkgs-4d90f2d73de4cbc954ddfbeaf661212ffd348a3f.tar.lz
nixpkgs-4d90f2d73de4cbc954ddfbeaf661212ffd348a3f.tar.xz
nixpkgs-4d90f2d73de4cbc954ddfbeaf661212ffd348a3f.tar.zst
nixpkgs-4d90f2d73de4cbc954ddfbeaf661212ffd348a3f.zip
treewide: Mass replace 'ffmpeg}/bin' to refer to the correct outputs
Diffstat (limited to 'nixos/modules/services/misc/octoprint.nix')
-rw-r--r--nixos/modules/services/misc/octoprint.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/misc/octoprint.nix b/nixos/modules/services/misc/octoprint.nix
index c0af3587205..8d46bca99f9 100644
--- a/nixos/modules/services/misc/octoprint.nix
+++ b/nixos/modules/services/misc/octoprint.nix
@@ -10,7 +10,7 @@ let
     plugins.cura.cura_engine = "${pkgs.curaengine}/bin/CuraEngine";
     server.host = cfg.host;
     server.port = cfg.port;
-    webcam.ffmpeg = "${pkgs.ffmpeg}/bin/ffmpeg";
+    webcam.ffmpeg = "${pkgs.ffmpeg.bin}/bin/ffmpeg";
   };
 
   fullConfig = recursiveUpdate cfg.extraConfig baseConfig;