about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-08-02 23:46:38 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-08-03 01:41:56 +0200
commitdad99aae8e294bfc04a5fc0f973fbc592d7c3342 (patch)
tree1062152ab83c0cb8920fadf63d0c4c087cfa9cc5 /pkgs
parenta9a0fedb94e78f7b8c26df274a56d53c9d066a62 (diff)
downloadnixlib-dad99aae8e294bfc04a5fc0f973fbc592d7c3342.tar
nixlib-dad99aae8e294bfc04a5fc0f973fbc592d7c3342.tar.gz
nixlib-dad99aae8e294bfc04a5fc0f973fbc592d7c3342.tar.bz2
nixlib-dad99aae8e294bfc04a5fc0f973fbc592d7c3342.tar.lz
nixlib-dad99aae8e294bfc04a5fc0f973fbc592d7c3342.tar.xz
nixlib-dad99aae8e294bfc04a5fc0f973fbc592d7c3342.tar.zst
nixlib-dad99aae8e294bfc04a5fc0f973fbc592d7c3342.zip
clipgrab: 3.4.11 -> 3.5.1
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/video/clipgrab/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/video/clipgrab/default.nix b/pkgs/applications/video/clipgrab/default.nix
index fd336dafb233..7661bfbc5ea4 100644
--- a/pkgs/applications/video/clipgrab/default.nix
+++ b/pkgs/applications/video/clipgrab/default.nix
@@ -1,13 +1,13 @@
 { stdenv, fetchurl, makeDesktopItem, qt4 }:
 
-let version = "3.4.11"; in
+let version = "3.5.1"; in
 stdenv.mkDerivation rec {
   name = "clipgrab-${version}";
 
   src = fetchurl {
-    sha256 = "10xxcnib7xkvrx7wma2vbya5fz5s5f6syc9dmr395c83lpcwpxs8";
-    # The "Download" button is a .tar.gz, but there's a .tar.bz2 further down:
-    url = "http://download.clipgrab.de/${name}.tar.bz2";
+    sha256 = "16hm7zv0yhxj7gdd8q462jcxy0jk6hicsk1mkhmarwrhifwsy4g9";
+    # The .tar.bz2 "Download" link is a binary blob, the source is .tar.gz!
+    url = "http://download.clipgrab.de/${name}.tar.gz";
   };
 
   meta = with stdenv.lib; {
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
     '';
     homepage = http://clipgrab.org/;
     license = licenses.gpl3Plus;
-    platforms = with platforms; linux;
+    platforms = platforms.linux;
     maintainers = with maintainers; [ nckx ];
   };