clipgrab: 3.5.4 -> 3.5.5

Changed files
+17 -17
pkgs
applications
video
clipgrab
+17 -17
pkgs/applications/video/clipgrab/default.nix
···
-
{ stdenv, fetchurl, ffmpeg, makeDesktopItem, qt4 }:
+
{ stdenv, fetchurl, makeDesktopItem, ffmpeg, qt4 }:
-
let version = "3.5.4"; in
+
let version = "3.5.5"; in
stdenv.mkDerivation rec {
name = "clipgrab-${version}";
src = fetchurl {
-
sha256 = "1zvicmxnkldqnfri8y0q0vx6f5whsc7jc9jcsfzhpw47w92qvx5r";
+
sha256 = "01si6mqfmdwins6l18l6qyhkak0mj4yksbg30qhwywm8wmwl08jd";
# The .tar.bz2 "Download" link is a binary blob, the source is the .tar.gz!
url = "http://download.clipgrab.de/${name}.tar.gz";
-
};
-
-
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 ];
};
buildInputs = [ ffmpeg qt4 ];
···
install -Dm644 icon.png $out/share/pixmaps/clipgrab.png
cp -r ${desktopItem}/share/applications $out/share
'';
+
+
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 ];
+
};
}