summary refs log tree commit diff
path: root/pkgs/applications/misc/vhs
diff options
context:
space:
mode:
authorSlin Lee <slin@slinlee.com>2023-02-14 06:51:16 -0800
committerSlin Lee <slin@slinlee.com>2023-02-14 06:54:29 -0800
commitf164ce437306c2e7fe41c758226ead343091bcb9 (patch)
treeed1da7e0dd24f0028a2a90261e5bc6598dc0c2a2 /pkgs/applications/misc/vhs
parente9748e4b9bc39bd5efca90f5eb5f098741276dd4 (diff)
vhs: add chromium to wrapper
Diffstat (limited to 'pkgs/applications/misc/vhs')
-rw-r--r--pkgs/applications/misc/vhs/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/misc/vhs/default.nix b/pkgs/applications/misc/vhs/default.nix
index ee24812881e28..bb498c7ee237a 100644
--- a/pkgs/applications/misc/vhs/default.nix
+++ b/pkgs/applications/misc/vhs/default.nix
@@ -1,4 +1,4 @@
-{ lib, buildGoModule, installShellFiles, fetchFromGitHub, ffmpeg, ttyd, makeWrapper }:
+{ lib, buildGoModule, installShellFiles, fetchFromGitHub, ffmpeg, ttyd, chromium, makeWrapper }:
 
 buildGoModule rec {
   pname = "vhs";
@@ -18,7 +18,7 @@ buildGoModule rec {
   ldflags = [ "-s" "-w" "-X=main.Version=${version}" ];
 
   postInstall = ''
-    wrapProgram $out/bin/vhs --prefix PATH : ${lib.makeBinPath [ ffmpeg ttyd ]}
+    wrapProgram $out/bin/vhs --prefix PATH : ${lib.makeBinPath [ chromium ffmpeg ttyd ]}
     $out/bin/vhs man > vhs.1
     installManPage vhs.1
     installShellCompletion --cmd vhs \