2016-04-17 01:42:56 +02:00
|
|
|
{ stdenv, fetchurl, makeDesktopItem, ffmpeg, qt4, qmake4Hook }:
|
2015-04-08 05:09:16 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "clipgrab-${version}";
|
2017-01-26 03:17:26 +01:00
|
|
|
version = "3.6.2";
|
2015-04-08 05:09:16 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-01-26 03:17:26 +01:00
|
|
|
sha256 = "0n7bhwkzknjpp54h54hxv1s8nsmmb7cwwf1aqpbcsnd7y6cv28nm";
|
2015-11-06 03:46:38 +01:00
|
|
|
# The .tar.bz2 "Download" link is a binary blob, the source is the .tar.gz!
|
2016-06-22 18:58:17 +02:00
|
|
|
url = "https://download.clipgrab.org/${name}.tar.gz";
|
2015-04-08 05:09:16 +02:00
|
|
|
};
|
|
|
|
|
2015-08-03 00:25:26 +02:00
|
|
|
buildInputs = [ ffmpeg qt4 ];
|
2016-04-17 01:42:56 +02:00
|
|
|
nativeBuildInputs = [ qmake4Hook ];
|
2015-08-03 00:25:26 +02:00
|
|
|
|
|
|
|
postPatch = stdenv.lib.optionalString (ffmpeg != null) ''
|
|
|
|
substituteInPlace converter_ffmpeg.cpp \
|
2015-10-11 16:34:23 +02:00
|
|
|
--replace '"ffmpeg"' '"${ffmpeg.bin}/bin/ffmpeg"' \
|
|
|
|
--replace '"ffmpeg ' '"${ffmpeg.bin}/bin/ffmpeg '
|
2015-08-03 00:25:26 +02:00
|
|
|
'';
|
2015-04-08 05:09:16 +02:00
|
|
|
|
2016-04-17 01:42:56 +02:00
|
|
|
qmakeFlags = [ "clipgrab.pro" ];
|
2015-04-08 05:09:16 +02:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
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 05:09:16 +02:00
|
|
|
|
2015-04-08 18:15:13 +02:00
|
|
|
installPhase = ''
|
|
|
|
install -Dm755 clipgrab $out/bin/clipgrab
|
2015-04-08 05:09:16 +02:00
|
|
|
install -Dm644 icon.png $out/share/pixmaps/clipgrab.png
|
2015-04-08 18:15:13 +02:00
|
|
|
cp -r ${desktopItem}/share/applications $out/share
|
2015-04-08 05:09:16 +02:00
|
|
|
'';
|
2015-12-20 03:34:43 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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.
|
|
|
|
'';
|
2016-06-22 18:58:17 +02:00
|
|
|
homepage = https://clipgrab.org/;
|
2015-12-20 03:34:43 +01:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
2015-04-08 05:09:16 +02:00
|
|
|
}
|