1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

clipgrab: 3.4.11 -> 3.5.1

This commit is contained in:
Tobias Geerinckx-Rice 2015-08-02 23:46:38 +02:00
parent a9a0fedb94
commit dad99aae8e

View file

@ -1,13 +1,13 @@
{ stdenv, fetchurl, makeDesktopItem, qt4 }: { stdenv, fetchurl, makeDesktopItem, qt4 }:
let version = "3.4.11"; in let version = "3.5.1"; in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "clipgrab-${version}"; name = "clipgrab-${version}";
src = fetchurl { src = fetchurl {
sha256 = "10xxcnib7xkvrx7wma2vbya5fz5s5f6syc9dmr395c83lpcwpxs8"; sha256 = "16hm7zv0yhxj7gdd8q462jcxy0jk6hicsk1mkhmarwrhifwsy4g9";
# The "Download" button is a .tar.gz, but there's a .tar.bz2 further down: # The .tar.bz2 "Download" link is a binary blob, the source is .tar.gz!
url = "http://download.clipgrab.de/${name}.tar.bz2"; url = "http://download.clipgrab.de/${name}.tar.gz";
}; };
meta = with stdenv.lib; { meta = with stdenv.lib; {
@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
''; '';
homepage = http://clipgrab.org/; homepage = http://clipgrab.org/;
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
platforms = with platforms; linux; platforms = platforms.linux;
maintainers = with maintainers; [ nckx ]; maintainers = with maintainers; [ nckx ];
}; };