clipgrab: 3.5.4 -> 3.5.5

This commit is contained in:
Tobias Geerinckx-Rice 2015-12-20 03:34:43 +01:00
parent ca8903c3c2
commit 1b6128cdc9

View File

@ -1,29 +1,15 @@
{ 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 ];
postPatch = stdenv.lib.optionalString (ffmpeg != null) ''
@ -53,4 +39,18 @@ stdenv.mkDerivation rec {
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 ];
};
}