2015-12-20 02:34:43 +00:00
|
|
|
{ stdenv, fetchurl, makeDesktopItem, ffmpeg, qt4 }:
|
2015-04-08 03:09:16 +00:00
|
|
|
|
2015-12-23 19:57:01 +00:00
|
|
|
let version = "3.5.6"; in
|
2015-04-08 03:09:16 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "clipgrab-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2015-12-23 19:57:01 +00:00
|
|
|
sha256 = "0wm6hqaq6ydbvvd0fqkfydxd5h7gf4di7lvq63xgxl4z40jqc25n";
|
2015-11-06 02:46:38 +00:00
|
|
|
# The .tar.bz2 "Download" link is a binary blob, the source is the .tar.gz!
|
2015-08-02 21:46:38 +00:00
|
|
|
url = "http://download.clipgrab.de/${name}.tar.gz";
|
2015-04-08 03:09:16 +00:00
|
|
|
};
|
|
|
|
|
2015-08-02 22:25:26 +00:00
|
|
|
buildInputs = [ ffmpeg qt4 ];
|
|
|
|
|
|
|
|
postPatch = stdenv.lib.optionalString (ffmpeg != null) ''
|
|
|
|
substituteInPlace converter_ffmpeg.cpp \
|
2015-10-11 14:34:23 +00:00
|
|
|
--replace '"ffmpeg"' '"${ffmpeg.bin}/bin/ffmpeg"' \
|
|
|
|
--replace '"ffmpeg ' '"${ffmpeg.bin}/bin/ffmpeg '
|
2015-08-02 22:25:26 +00:00
|
|
|
'';
|
2015-04-08 03:09:16 +00:00
|
|
|
|
|
|
|
configurePhase = ''
|
|
|
|
qmake clipgrab.pro
|
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-04-08 16:15:13 +00:00
|
|
|
desktopItem = makeDesktopItem rec {
|
|
|
|
name = "clipgrab";
|
|
|
|
exec = name;
|
|
|
|
icon = name;
|
|
|
|
desktopName = "ClipGrab";
|
|
|
|
comment = "A friendly downloader for YouTube and other sites";
|
|
|
|
genericName = "Web video downloader";
|
|
|
|
categories = "Qt;AudioVideo;Audio;Video";
|
|
|
|
};
|
2015-04-08 03:09:16 +00:00
|
|
|
|
2015-04-08 16:15:13 +00:00
|
|
|
installPhase = ''
|
|
|
|
install -Dm755 clipgrab $out/bin/clipgrab
|
2015-04-08 03:09:16 +00:00
|
|
|
install -Dm644 icon.png $out/share/pixmaps/clipgrab.png
|
2015-04-08 16:15:13 +00:00
|
|
|
cp -r ${desktopItem}/share/applications $out/share
|
2015-04-08 03:09:16 +00:00
|
|
|
'';
|
2015-12-20 02:34:43 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
inherit version;
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
homepage = http://clipgrab.org/;
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ nckx ];
|
|
|
|
};
|
2015-04-08 03:09:16 +00:00
|
|
|
}
|