···1-{ stdenv, fetchurl, ffmpeg, makeDesktopItem, qt4 }:
23-let version = "3.5.4"; in
4stdenv.mkDerivation rec {
5 name = "clipgrab-${version}";
67 src = fetchurl {
8- sha256 = "1zvicmxnkldqnfri8y0q0vx6f5whsc7jc9jcsfzhpw47w92qvx5r";
9 # The .tar.bz2 "Download" link is a binary blob, the source is the .tar.gz!
10 url = "http://download.clipgrab.de/${name}.tar.gz";
11- };
12-13- meta = with stdenv.lib; {
14- inherit version;
15- description = "Video downloader for YouTube and other sites";
16- longDescription = ''
17- ClipGrab is a free downloader and converter for YouTube, Vimeo, Metacafe,
18- Dailymotion and many other online video sites. It converts downloaded
19- videos to MPEG4, MP3 or other formats in just one easy step.
20- '';
21- homepage = http://clipgrab.org/;
22- license = licenses.gpl3Plus;
23- platforms = platforms.linux;
24- maintainers = with maintainers; [ nckx ];
25 };
2627 buildInputs = [ ffmpeg qt4 ];
···53 install -Dm644 icon.png $out/share/pixmaps/clipgrab.png
54 cp -r ${desktopItem}/share/applications $out/share
55 '';
0000000000000056}
···1+{ stdenv, fetchurl, makeDesktopItem, ffmpeg, qt4 }:
23+let version = "3.5.5"; in
4stdenv.mkDerivation rec {
5 name = "clipgrab-${version}";
67 src = fetchurl {
8+ sha256 = "01si6mqfmdwins6l18l6qyhkak0mj4yksbg30qhwywm8wmwl08jd";
9 # The .tar.bz2 "Download" link is a binary blob, the source is the .tar.gz!
10 url = "http://download.clipgrab.de/${name}.tar.gz";
0000000000000011 };
1213 buildInputs = [ ffmpeg qt4 ];
···39 install -Dm644 icon.png $out/share/pixmaps/clipgrab.png
40 cp -r ${desktopItem}/share/applications $out/share
41 '';
42+43+ meta = with stdenv.lib; {
44+ inherit version;
45+ description = "Video downloader for YouTube and other sites";
46+ longDescription = ''
47+ ClipGrab is a free downloader and converter for YouTube, Vimeo, Metacafe,
48+ Dailymotion and many other online video sites. It converts downloaded
49+ videos to MPEG4, MP3 or other formats in just one easy step.
50+ '';
51+ homepage = http://clipgrab.org/;
52+ license = licenses.gpl3Plus;
53+ platforms = platforms.linux;
54+ maintainers = with maintainers; [ nckx ];
55+ };
56}