forked from mirrors/nixpkgs
peek: add ffmpeg to PATH
This commit is contained in:
parent
558464b8cb
commit
680b16ee86
|
@ -1,5 +1,5 @@
|
|||
{ stdenv, fetchFromGitHub, cmake, gettext, libxml2, pkgconfig, txt2man, vala, wrapGAppsHook
|
||||
, gsettings-desktop-schemas, gtk3, keybinder3
|
||||
, gsettings-desktop-schemas, gtk3, keybinder3, ffmpeg
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
@ -13,6 +13,10 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "1fnvlklmg6s5rs3ql74isa5fgdkqqrpsyf8k2spxj520239l4vgb";
|
||||
};
|
||||
|
||||
preConfigure = ''
|
||||
gappsWrapperArgs+=(--prefix PATH : ${stdenv.lib.makeBinPath [ ffmpeg ]})
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ cmake gettext pkgconfig libxml2.bin txt2man vala wrapGAppsHook ];
|
||||
|
||||
buildInputs = [ gsettings-desktop-schemas gtk3 keybinder3 ];
|
||||
|
|
Loading…
Reference in a new issue