parent
6567031111
commit
7e943b6a46
@ -1,4 +1,4 @@
|
|||||||
{ lib, fetchurl, makeDesktopItem, ffmpeg_3
|
{ lib, fetchurl, makeDesktopItem, ffmpeg
|
||||||
, qmake, qttools, mkDerivation
|
, qmake, qttools, mkDerivation
|
||||||
, qtbase, qtdeclarative, qtlocation, qtquickcontrols2, qtwebchannel, qtwebengine
|
, qtbase, qtdeclarative, qtlocation, qtquickcontrols2, qtwebchannel, qtwebengine
|
||||||
}:
|
}:
|
||||||
@ -13,19 +13,17 @@ mkDerivation rec {
|
|||||||
url = "https://download.clipgrab.org/${pname}-${version}.tar.gz";
|
url = "https://download.clipgrab.org/${pname}-${version}.tar.gz";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ ffmpeg_3 qtbase qtdeclarative qtlocation qtquickcontrols2 qtwebchannel qtwebengine ];
|
buildInputs = [ ffmpeg qtbase qtdeclarative qtlocation qtquickcontrols2 qtwebchannel qtwebengine ];
|
||||||
nativeBuildInputs = [ qmake qttools ];
|
nativeBuildInputs = [ qmake qttools ];
|
||||||
|
|
||||||
postPatch = lib.optionalString (ffmpeg_3 != null) ''
|
postPatch = lib.optionalString (ffmpeg != null) ''
|
||||||
substituteInPlace converter_ffmpeg.cpp \
|
substituteInPlace converter_ffmpeg.cpp \
|
||||||
--replace '"ffmpeg"' '"${ffmpeg_3.bin}/bin/ffmpeg"' \
|
--replace '"ffmpeg"' '"${ffmpeg.bin}/bin/ffmpeg"' \
|
||||||
--replace '"ffmpeg ' '"${ffmpeg_3.bin}/bin/ffmpeg '
|
--replace '"ffmpeg ' '"${ffmpeg.bin}/bin/ffmpeg '
|
||||||
'';
|
'';
|
||||||
|
|
||||||
qmakeFlags = [ "clipgrab.pro" ];
|
qmakeFlags = [ "clipgrab.pro" ];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
|
||||||
|
|
||||||
desktopItem = makeDesktopItem rec {
|
desktopItem = makeDesktopItem rec {
|
||||||
name = "clipgrab";
|
name = "clipgrab";
|
||||||
exec = name;
|
exec = name;
|
||||||
@ -37,9 +35,11 @@ mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
install -Dm755 clipgrab $out/bin/clipgrab
|
install -Dm755 clipgrab $out/bin/clipgrab
|
||||||
install -Dm644 icon.png $out/share/pixmaps/clipgrab.png
|
install -Dm644 icon.png $out/share/pixmaps/clipgrab.png
|
||||||
cp -r ${desktopItem}/share/applications $out/share
|
cp -r ${desktopItem}/share/applications $out/share
|
||||||
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
Loading…
Reference in New Issue
Block a user