summary refs log tree commit diff
path: root/pkgs/applications/audio/ardour
diff options
context:
space:
mode:
authormitchmindtree <mail@mitchellnordine.com>2021-11-24 15:39:08 +1000
committermitchmindtree <mail@mitchellnordine.com>2021-11-24 15:49:09 +1000
commit30e9e7bea5cf264c95d8d1d9d8ff53b82239e73c (patch)
tree6cf4169ae52c730acd557269b49036d650a3316e /pkgs/applications/audio/ardour
parent5201be2d3a10da36d7196c13464ee65d84e02582 (diff)
downloadnixpkgs-30e9e7bea5cf264c95d8d1d9d8ff53b82239e73c.tar
nixpkgs-30e9e7bea5cf264c95d8d1d9d8ff53b82239e73c.tar.gz
nixpkgs-30e9e7bea5cf264c95d8d1d9d8ff53b82239e73c.tar.bz2
nixpkgs-30e9e7bea5cf264c95d8d1d9d8ff53b82239e73c.tar.lz
nixpkgs-30e9e7bea5cf264c95d8d1d9d8ff53b82239e73c.tar.xz
nixpkgs-30e9e7bea5cf264c95d8d1d9d8ff53b82239e73c.tar.zst
nixpkgs-30e9e7bea5cf264c95d8d1d9d8ff53b82239e73c.zip
ardour: Enable video support by default
Enables video support in ardour by default.

I do a lot of sound design using ardour and in turn have it enabled in
my configuration. However, seeing as hydra only builds the default
configuration, the build I need is never cached, and I always end up
needing to build ardour from scratch which takes over an hour on my
small laptop. The `videoSupport` flag itself just ensures that xjadeo
and harvid (both required for video support to work in ardour) are
accessible via the PATH.
Diffstat (limited to 'pkgs/applications/audio/ardour')
-rw-r--r--pkgs/applications/audio/ardour/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/audio/ardour/default.nix b/pkgs/applications/audio/ardour/default.nix
index 2bd6cf03cc0..d5afcac86cd 100644
--- a/pkgs/applications/audio/ardour/default.nix
+++ b/pkgs/applications/audio/ardour/default.nix
@@ -52,7 +52,7 @@
 , vamp-plugin-sdk
 , wafHook
 , xjadeo
-, videoSupport ? false
+, videoSupport ? true
 }:
 stdenv.mkDerivation rec {
   pname = "ardour";