mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #123491 from dotlambda/capture-ffmpeg
capture: use ffmpeg instead of ffmpeg_3
This commit is contained in:
commit
46f51499f8
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{ lib, stdenv, slop, ffmpeg_3, fetchFromGitHub, makeWrapper}:
|
||||
{ lib, stdenv, slop, ffmpeg, fetchFromGitHub, makeWrapper}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "capture-unstable";
|
||||
|
@ -18,7 +18,7 @@ stdenv.mkDerivation {
|
|||
|
||||
patchShebangs $out/bin/capture
|
||||
wrapProgram $out/bin/capture \
|
||||
--prefix PATH : '${lib.makeBinPath [ slop ffmpeg_3 ]}'
|
||||
--prefix PATH : '${lib.makeBinPath [ slop ffmpeg ]}'
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
|
|
Loading…
Reference in a new issue