3
0
Fork 0
forked from mirrors/nixpkgs

Updating calibre, and adding sourceforge as a backup url, suggested by roconnor.

svn path=/nixpkgs/trunk/; revision=33983
This commit is contained in:
Lluís Batlle i Rossell 2012-05-04 19:01:51 +00:00
parent 49d0db04a3
commit 7a4c5e084c

View file

@ -4,11 +4,14 @@
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "calibre-0.8.48"; name = "calibre-0.8.50";
src = fetchurl { src = fetchurl {
url = "http://calibre-ebook.googlecode.com/files/${name}.tar.xz"; urls = [
sha256 = "0i2js6d64ribflvcwjj8xbyq2zicj484pl19jl6spprw4ny5im42"; "http://calibre-ebook.googlecode.com/files/${name}.tar.xz"
"mirror://sourceforge/calibre/${name}.tar.xz"
];
sha256 = "0x6yazqjilh31rbd5knns1hag2visvp03jw5wm99lsyn9vz4qcbi";
}; };
inherit python; inherit python;