qt5.grantlee: 5.0.0 -> 5.1.0

The source location has been updated to reflect that upstream
development has moved to GitHub.
This commit is contained in:
Thomas Tuegel 2016-12-16 09:34:07 -06:00
parent d0f4249792
commit 0d296076b4
No known key found for this signature in database
GPG Key ID: 22CBF5249D4B4D59

View File

@ -1,15 +1,13 @@
{ stdenv, fetchurl, qtbase, qtscript, cmake }:
stdenv.mkDerivation rec {
name = "grantlee-5.0.0";
name = "grantlee-${version}";
version = "5.1.0";
# Upstream download server has country code firewall, so I made a mirror.
src = fetchurl {
urls = [
"http://downloads.grantlee.org/${name}.tar.gz"
"http://www.loegria.net/grantlee/${name}.tar.gz"
];
sha256 = "0qdifp1sg87j3869xva5ai2d6d5ph7z4b85wv1fypf2k5sljpwpa";
url = "https://github.com/steveire/grantlee/archive/v${version}.tar.gz";
sha256 = "1lf9rkv0i0kd7fvpgg5l8jb87zw8dzcwd1liv6hji7g4wlpmfdiq";
name = "${name}.tar.gz";
};
buildInputs = [ qtbase qtscript ];