aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/libbluray
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2016-11-23 17:49:18 +0300
committerNikolay Amiantov <ab@fmap.me>2016-11-24 01:17:52 +0300
commitbe95ceaff2b73ff836171f9822b81767d9a8cee6 (patch)
treec886547e56c7f65e1e5b5121265a786b644614bc /pkgs/development/libraries/libbluray
parent00cecf6a8403473e91021a5f49c768ca80d24399 (diff)
treewide: quote URLs in my packages
Diffstat (limited to 'pkgs/development/libraries/libbluray')
-rw-r--r--pkgs/development/libraries/libbluray/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/development/libraries/libbluray/default.nix b/pkgs/development/libraries/libbluray/default.nix
index 729fc27a0d37..c5bf7fd7f982 100644
--- a/pkgs/development/libraries/libbluray/default.nix
+++ b/pkgs/development/libraries/libbluray/default.nix
@@ -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 ];