3
0
Fork 0
forked from mirrors/nixpkgs

peek: add ffmpeg to PATH

This commit is contained in:
Jörg Thalheim 2018-04-21 13:06:23 +01:00
parent 558464b8cb
commit 680b16ee86

View file

@ -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 ];