summary refs log tree commit diff
path: root/pkgs/misc
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2012-09-06 18:34:18 +0200
committerPeter Simons <simons@cryp.to>2012-09-06 18:34:18 +0200
commit94da2e30ddf180cd22436da2627f220476c67b0d (patch)
tree167fc8aaa0a6a3022ae092e4d175379d7f383411 /pkgs/misc
parent52e5b8e2c5da64dc5b7a36943127da5403b33285 (diff)
downloadnixpkgs-94da2e30ddf180cd22436da2627f220476c67b0d.tar
nixpkgs-94da2e30ddf180cd22436da2627f220476c67b0d.tar.gz
nixpkgs-94da2e30ddf180cd22436da2627f220476c67b0d.tar.bz2
nixpkgs-94da2e30ddf180cd22436da2627f220476c67b0d.tar.lz
nixpkgs-94da2e30ddf180cd22436da2627f220476c67b0d.tar.xz
nixpkgs-94da2e30ddf180cd22436da2627f220476c67b0d.tar.zst
nixpkgs-94da2e30ddf180cd22436da2627f220476c67b0d.zip
ghostscript: cosmetic don't rely on magic URL syntax; URLs are strings
Diffstat (limited to 'pkgs/misc')
-rw-r--r--pkgs/misc/ghostscript/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/misc/ghostscript/default.nix b/pkgs/misc/ghostscript/default.nix
index 86fad985b9a..ac171b2ff81 100644
--- a/pkgs/misc/ghostscript/default.nix
+++ b/pkgs/misc/ghostscript/default.nix
@@ -9,7 +9,7 @@ assert cupsSupport -> cups != null;
 
 let
   meta = {
-    homepage = http://www.gnu.org/software/ghostscript/;
+    homepage = "http://www.gnu.org/software/ghostscript/";
     description = "GNU Ghostscript, a PostScript interpreter";
 
     longDescription = ''
@@ -41,11 +41,11 @@ let
   mainlineSrc = {
     name = "ghostscript-9.05";
     src = fetchurl {
-      url = http://downloads.ghostscript.com/public/ghostscript-9.05.tar.bz2;
+      url = "http://downloads.ghostscript.com/public/ghostscript-9.05.tar.bz2";
       sha256 = "1b6fi76x6pn9dmr9k9lh8kimn968dmh91k824fmm59d5ycm22h8g";
     };
     meta = meta // {
-      homepage = http://www.ghostscript.com/;
+      homepage = "http://www.ghostscript.com/";
       description = "GPL Ghostscript, a PostScript interpreter";
     };
 
@@ -64,11 +64,11 @@ stdenv.mkDerivation rec {
 
   fonts = [
     (fetchurl {
-      url = mirror://gnu/ghostscript/gnu-gs-fonts-std-6.0.tar.gz;
+      url = "mirror://gnu/ghostscript/gnu-gs-fonts-std-6.0.tar.gz";
       sha256 = "1lxr1y52r26qjif8kdqkfhsb5llakdcx3f5b9ppdyn59bb83ivsc";
     })
     (fetchurl {
-      url = mirror://gnu/ghostscript/gnu-gs-fonts-other-6.0.tar.gz;
+      url = "mirror://gnu/ghostscript/gnu-gs-fonts-other-6.0.tar.gz";
       sha256 = "1cxaah3r52qq152bbkiyj2f7dx1rf38vsihlhjmrvzlr8v6cqil1";
     })
     # ... add other fonts here