nixpkgs/pkgs/applications/video/clipgrab/default.nix

57 lines
1.8 KiB
Nix
Raw Normal View History

{ lib, fetchurl, makeDesktopItem, ffmpeg
2019-08-18 13:59:27 +02:00
, qmake, qttools, mkDerivation
2019-02-28 23:26:50 +01:00
, qtbase, qtdeclarative, qtlocation, qtquickcontrols2, qtwebchannel, qtwebengine
}:
2019-08-18 13:59:27 +02:00
mkDerivation rec {
pname = "clipgrab";
2021-01-19 10:26:44 +01:00
version = "3.9.6";
src = fetchurl {
2021-01-19 10:26:44 +01:00
sha256 = "sha256-1rQu2Gh9PKSbC0tuQxLwFhzy280z4obpa+eXvDBzDW0=";
2015-11-06 03:46:38 +01:00
# The .tar.bz2 "Download" link is a binary blob, the source is the .tar.gz!
url = "https://download.clipgrab.org/${pname}-${version}.tar.gz";
};
buildInputs = [ ffmpeg qtbase qtdeclarative qtlocation qtquickcontrols2 qtwebchannel qtwebengine ];
2019-02-28 23:26:50 +01:00
nativeBuildInputs = [ qmake qttools ];
postPatch = lib.optionalString (ffmpeg != null) ''
substituteInPlace converter_ffmpeg.cpp \
--replace '"ffmpeg"' '"${ffmpeg.bin}/bin/ffmpeg"' \
--replace '"ffmpeg ' '"${ffmpeg.bin}/bin/ffmpeg '
'';
2016-04-17 01:42:56 +02:00
qmakeFlags = [ "clipgrab.pro" ];
2015-04-08 18:15:13 +02:00
desktopItem = makeDesktopItem rec {
name = "clipgrab";
exec = name;
icon = name;
desktopName = "ClipGrab";
2016-06-22 18:58:17 +02:00
comment = meta.description;
2015-04-08 18:15:13 +02:00
genericName = "Web video downloader";
categories = "Qt;AudioVideo;Audio;Video";
};
2015-04-08 18:15:13 +02:00
installPhase = ''
runHook preInstall
2015-04-08 18:15:13 +02:00
install -Dm755 clipgrab $out/bin/clipgrab
install -Dm644 icon.png $out/share/pixmaps/clipgrab.png
2015-04-08 18:15:13 +02:00
cp -r ${desktopItem}/share/applications $out/share
runHook postInstall
'';
2015-12-20 03:34:43 +01:00
meta = with lib; {
2015-12-20 03:34:43 +01:00
description = "Video downloader for YouTube and other sites";
longDescription = ''
ClipGrab is a free downloader and converter for YouTube, Vimeo, Metacafe,
Dailymotion and many other online video sites. It converts downloaded
videos to MPEG4, MP3 or other formats in just one easy step.
'';
2020-03-04 20:47:19 +01:00
homepage = "https://clipgrab.org/";
2015-12-20 03:34:43 +01:00
license = licenses.gpl3Plus;
platforms = platforms.linux;
};
}