treewide: quote URLs in my packages

This commit is contained in:
Nikolay Amiantov
2016-11-24 01:17:52 +03:00
parent 00cecf6a84
commit be95ceaff2
43 changed files with 70 additions and 76 deletions
@@ -18,12 +18,11 @@ assert withFonts -> freetype != null;
# https://wiki.archlinux.org/index.php/BluRay
stdenv.mkDerivation rec {
baseName = "libbluray";
name = "libbluray-${version}";
version = "0.9.2";
name = "${baseName}-${version}";
src = fetchurl {
url = "http://get.videolan.org/${baseName}/${version}/${name}.tar.bz2";
url = "http://get.videolan.org/libbluray/${version}/${name}.tar.bz2";
sha256 = "1sp71j4agcsg17g6b85cqz78pn5vknl5pl39rvr6mkib5ps99jgg";
};
@@ -55,7 +54,7 @@ stdenv.mkDerivation rec {
patches = stdenv.lib.optional withJava ./BDJ-JARFILE-path.patch;
meta = with stdenv.lib; {
homepage = http://www.videolan.org/developers/libbluray.html;
homepage = "http://www.videolan.org/developers/libbluray.html";
description = "Library to access Blu-Ray disks for video playback";
license = licenses.lgpl21;
maintainers = [ maintainers.abbradar ];