summary refs log tree commit diff
path: root/pkgs/applications/video
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-12-20 03:34:43 +0100
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-12-20 03:34:43 +0100
commit1b6128cdc9e7201d9741a487bf48cc4a3b89da2a (patch)
tree07191e52c52a7053a93f12712728cfa698981d7d /pkgs/applications/video
parentca8903c3c2b96bef02f04168e4322b81d0a02e2f (diff)
downloadnixpkgs-1b6128cdc9e7201d9741a487bf48cc4a3b89da2a.tar
nixpkgs-1b6128cdc9e7201d9741a487bf48cc4a3b89da2a.tar.gz
nixpkgs-1b6128cdc9e7201d9741a487bf48cc4a3b89da2a.tar.bz2
nixpkgs-1b6128cdc9e7201d9741a487bf48cc4a3b89da2a.tar.lz
nixpkgs-1b6128cdc9e7201d9741a487bf48cc4a3b89da2a.tar.xz
nixpkgs-1b6128cdc9e7201d9741a487bf48cc4a3b89da2a.tar.zst
nixpkgs-1b6128cdc9e7201d9741a487bf48cc4a3b89da2a.zip
clipgrab: 3.5.4 -> 3.5.5
Diffstat (limited to 'pkgs/applications/video')
-rw-r--r--pkgs/applications/video/clipgrab/default.nix34
1 files changed, 17 insertions, 17 deletions
diff --git a/pkgs/applications/video/clipgrab/default.nix b/pkgs/applications/video/clipgrab/default.nix
index 7d136de779a..4075c87146b 100644
--- a/pkgs/applications/video/clipgrab/default.nix
+++ b/pkgs/applications/video/clipgrab/default.nix
@@ -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 ];
+  };
 }