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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

66 lines
2.0 KiB
Nix
Raw Normal View History

{ lib, fetchurl, makeDesktopItem, ffmpeg
2019-08-18 11:59:27 +00:00
, qmake, qttools, mkDerivation
2019-02-28 22:26:50 +00:00
, qtbase, qtdeclarative, qtlocation, qtquickcontrols2, qtwebchannel, qtwebengine
, yt-dlp
2019-02-28 22:26:50 +00:00
}:
2019-08-18 11:59:27 +00:00
mkDerivation rec {
pname = "clipgrab";
2021-12-11 13:57:17 +00:00
version = "3.9.7";
src = fetchurl {
2021-12-11 13:57:17 +00:00
sha256 = "sha256-9H8raJd6MyyFICY8WUZQGLJ4teKPJUiQfqbu1HWAVIw=";
2015-11-06 02:46:38 +00: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 22:26:50 +00:00
nativeBuildInputs = [ qmake qttools ];
patches = [
./yt-dlp-path.patch
];
postPatch = ''
substituteInPlace youtube_dl.cpp \
--replace 'QString YoutubeDl::path = QString();' \
'QString YoutubeDl::path = QString("${yt-dlp}/bin/yt-dlp");'
'' + lib.optionalString (ffmpeg != null) ''
substituteInPlace converter_ffmpeg.cpp \
--replace '"ffmpeg"' '"${ffmpeg.bin}/bin/ffmpeg"' \
--replace '"ffmpeg ' '"${ffmpeg.bin}/bin/ffmpeg '
'';
2016-04-16 23:42:56 +00:00
qmakeFlags = [ "clipgrab.pro" ];
2015-04-08 16:15:13 +00:00
desktopItem = makeDesktopItem rec {
name = "clipgrab";
exec = name;
icon = name;
desktopName = "ClipGrab";
2016-06-22 16:58:17 +00:00
comment = meta.description;
2015-04-08 16:15:13 +00:00
genericName = "Web video downloader";
categories = [ "Qt" "AudioVideo" "Audio" "Video" ];
2015-04-08 16:15:13 +00:00
};
2015-04-08 16:15:13 +00:00
installPhase = ''
runHook preInstall
2015-04-08 16:15:13 +00:00
install -Dm755 clipgrab $out/bin/clipgrab
install -Dm644 icon.png $out/share/pixmaps/clipgrab.png
2015-04-08 16:15:13 +00:00
cp -r ${desktopItem}/share/applications $out/share
runHook postInstall
'';
2015-12-20 02:34:43 +00:00
meta = with lib; {
2015-12-20 02:34:43 +00: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 19:47:19 +00:00
homepage = "https://clipgrab.org/";
2015-12-20 02:34:43 +00:00
license = licenses.gpl3Plus;
platforms = platforms.linux;
};
}