clipgrab: 3.5.4 -> 3.5.5
This commit is contained in:
parent
ca8903c3c2
commit
1b6128cdc9
@ -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 {
|
stdenv.mkDerivation rec {
|
||||||
name = "clipgrab-${version}";
|
name = "clipgrab-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
sha256 = "1zvicmxnkldqnfri8y0q0vx6f5whsc7jc9jcsfzhpw47w92qvx5r";
|
sha256 = "01si6mqfmdwins6l18l6qyhkak0mj4yksbg30qhwywm8wmwl08jd";
|
||||||
# The .tar.bz2 "Download" link is a binary blob, the source is the .tar.gz!
|
# The .tar.bz2 "Download" link is a binary blob, the source is the .tar.gz!
|
||||||
url = "http://download.clipgrab.de/${name}.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 ];
|
buildInputs = [ ffmpeg qt4 ];
|
||||||
|
|
||||||
postPatch = stdenv.lib.optionalString (ffmpeg != null) ''
|
postPatch = stdenv.lib.optionalString (ffmpeg != null) ''
|
||||||
@ -53,4 +39,18 @@ stdenv.mkDerivation rec {
|
|||||||
install -Dm644 icon.png $out/share/pixmaps/clipgrab.png
|
install -Dm644 icon.png $out/share/pixmaps/clipgrab.png
|
||||||
cp -r ${desktopItem}/share/applications $out/share
|
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 ];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user