treewide: quote URLs in my packages

This commit is contained in:
Nikolay Amiantov 2016-11-23 17:49:18 +03:00
parent 00cecf6a84
commit be95ceaff2
43 changed files with 70 additions and 76 deletions

View file

@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "MPRISv2 plugin for the DeaDBeeF music player";
homepage = https://github.com/Serranya/deadbeef-mpris2-plugin/;
homepage = "https://github.com/Serranya/deadbeef-mpris2-plugin/";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = [ maintainers.abbradar ];

View file

@ -57,7 +57,7 @@ let
meta = with stdenv.lib; {
description = "QML based X11 display manager";
homepage = https://github.com/sddm/sddm;
homepage = "https://github.com/sddm/sddm";
platforms = platforms.linux;
maintainers = with maintainers; [ abbradar ttuegel ];
};

View file

@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
license = licenses.unfree;
homepage = http://www.yworks.com/en/products/yfiles/yed/;
homepage = "http://www.yworks.com/en/products/yfiles/yed/";
description = "A powerful desktop application that can be used to quickly and effectively generate high-quality diagrams";
platforms = jre.meta.platforms;
maintainers = with maintainers; [ abbradar ];

View file

@ -28,7 +28,7 @@ let
meta = with stdenv.lib; {
description = "SockJS python server implementation on top of Tornado framework";
homepage = http://github.com/mrjoes/sockjs-tornado/;
homepage = "http://github.com/mrjoes/sockjs-tornado/";
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ abbradar ];

View file

@ -23,7 +23,7 @@ stdenv.mkDerivation {
};
meta = with stdenv.lib; {
homepage = http://sourceforge.net/projects/pidgin-latex/;
homepage = "http://sourceforge.net/projects/pidgin-latex/";
description = "LaTeX rendering plugin for Pidgin IM";
license = licenses.gpl2;
platforms = platforms.linux;

View file

@ -43,7 +43,7 @@ let
;
meta = {
homepage = http://fixounet.free.fr/avidemux/;
homepage = "http://fixounet.free.fr/avidemux/";
description = "Free video editor designed for simple video editing tasks";
maintainers = with stdenv.lib.maintainers; [ viric abbradar ];
platforms = with stdenv.lib.platforms; linux;

View file

@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
patches = [ ./fix-paths.patch ];
meta = with stdenv.lib; {
homepage = http://github.com/alexkay/xmonad-log-applet;
homepage = "http://github.com/alexkay/xmonad-log-applet";
license = licenses.bsd3;
description = "An applet that will display XMonad log information (${desktopSupport} version)";
platforms = platforms.linux;

View file

@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
'';
meta = with stdenv.lib; {
homepage = https://github.com/khaledhosny/xits-math;
homepage = "https://github.com/khaledhosny/xits-math";
description = "OpenType implementation of STIX fonts with math support";
license = licenses.ofl;
platforms = platforms.all;

View file

@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
description = "SDL TrueType library";
license = licenses.zlib;
platforms = platforms.all;
homepage = https://www.libsdl.org/projects/SDL_ttf/release-1.2.html;
homepage = "https://www.libsdl.org/projects/SDL_ttf/release-1.2.html";
maintainers = with maintainers; [ abbradar ];
};
}

View file

@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
'';
meta = with stdenv.lib; {
homepage = https://github.com/zeromq/cppzmq;
homepage = "https://github.com/zeromq/cppzmq";
license = licenses.bsd2;
description = "C++ binding for 0MQ";
maintainers = with maintainers; [ abbradar ];

View file

@ -1,8 +1,8 @@
{ stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
version = "2.0.1";
name = "double-conversion-${version}";
version = "2.0.1";
src = fetchFromGitHub {
owner = "google";
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Binary-decimal and decimal-binary routines for IEEE doubles";
homepage = https://github.com/google/double-conversion;
homepage = "https://github.com/google/double-conversion";
license = licenses.bsd3;
platforms = platforms.unix;
maintainers = with maintainers; [ abbradar ];

View file

@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "An open-source C++ library developed and used at Facebook";
homepage = https://github.com/facebook/folly;
homepage = "https://github.com/facebook/folly";
license = licenses.asl20;
# 32bit is not supported: https://github.com/facebook/folly/issues/103
platforms = [ "x86_64-linux" ];

View file

@ -7,15 +7,12 @@
# http://vlc-bluray.whoknowsmy.name/
# https://wiki.archlinux.org/index.php/BluRay
let baseName = "libaacs";
version = "0.8.1";
in
stdenv.mkDerivation {
name = "${baseName}-${version}";
stdenv.mkDerivation rec {
name = "libaacs-${version}";
version = "0.8.1";
src = fetchurl {
url = "http://get.videolan.org/${baseName}/${version}/${baseName}-${version}.tar.bz2";
url = "http://get.videolan.org/libaacs/${version}/${name}.tar.bz2";
sha256 = "1s5v075hnbs57995r6lljm79wgrip3gnyf55a0y7bja75jh49hwm";
};
@ -24,7 +21,7 @@ stdenv.mkDerivation {
nativeBuildInputs = [ yacc flex ];
meta = with stdenv.lib; {
homepage = https://www.videolan.org/developers/libaacs.html;
homepage = "https://www.videolan.org/developers/libaacs.html";
description = "Library to access AACS protected Blu-Ray disks";
license = licenses.lgpl21;
maintainers = with maintainers; [ abbradar ];

View file

@ -7,16 +7,12 @@
# http://vlc-bluray.whoknowsmy.name/
# https://wiki.archlinux.org/index.php/BluRay
let baseName = "libbdplus";
version = "0.1.2";
in
stdenv.mkDerivation {
name = "${baseName}-${version}";
stdenv.mkDerivation rec {
name = "libbdplus-${version}";
version = "0.1.2";
src = fetchurl {
url = "http://get.videolan.org/${baseName}/${version}/${baseName}-${version}.tar.bz2";
url = "http://get.videolan.org/libbdplus/${version}/${name}.tar.bz2";
sha256 = "02n87lysqn4kg2qk7d1ffrp96c44zkdlxdj0n16hbgrlrpiwlcd6";
};
@ -25,7 +21,7 @@ stdenv.mkDerivation {
nativeBuildInputs = [ ];
meta = with stdenv.lib; {
homepage = http://www.videolan.org/developers/libbdplus.html;
homepage = "http://www.videolan.org/developers/libbdplus.html";
description = "Library to access BD+ protected Blu-Ray disks";
license = licenses.lgpl21;
maintainers = with maintainers; [ abbradar ];

View file

@ -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 ];

View file

@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
};
meta = with stdenv.lib; {
homepage = http://libburnia-project.org/;
homepage = "http://libburnia-project.org/";
description = "A library by which preformatted data get onto optical media: CD, DVD, BD (Blu-Ray)";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ abbradar vrthra ];

View file

@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
propagatedBuildInputs = [ acl ];
meta = with stdenv.lib; {
homepage = http://libburnia-project.org/;
homepage = "http://libburnia-project.org/";
description = "A library to create an ISO-9660 filesystem with extensions like RockRidge or Joliet";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ abbradar vrthra ];

View file

@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
buildInputs = [ libX11 libpthreadstubs libXau libXdmcp libXext libvdpau glib libva ffmpeg mesa_glu ];
meta = with stdenv.lib; {
homepage = https://github.com/i-rinat/libvdpau-va-gl;
homepage = "https://github.com/i-rinat/libvdpau-va-gl";
description = "VDPAU driver with OpenGL/VAAPI backend";
license = licenses.lgpl3;
platforms = platforms.linux;

View file

@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Extract Cell Data From Excel xls files";
homepage = http://sourceforge.net/projects/libxls/;
homepage = "http://sourceforge.net/projects/libxls/";
license = licenses.bsd2;
platforms = platforms.unix;
maintainers = with maintainers; [ abbradar ];

View file

@ -2,7 +2,9 @@
, perl, makeWrapper }:
stdenv.mkDerivation rec {
name = "opendkim-2.10.3";
name = "opendkim-${version}";
version = "2.10.3";
src = fetchurl {
url = "mirror://sourceforge/opendkim/files/${name}.tar.gz";
sha256 = "06v8bqhh604sz9rh5bvw278issrwjgc4h1wx2pz9a84lpxbvm823";
@ -21,7 +23,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "C library for producing DKIM-aware applications and an open source milter for providing DKIM service";
homepage = http://www.opendkim.org/;
homepage = "http://www.opendkim.org/";
maintainers = with maintainers; [ abbradar ];
license = licenses.bsd3;
platforms = platforms.unix;

View file

@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = http://qpdf.sourceforge.net/;
homepage = "http://qpdf.sourceforge.net/";
description = "A C++ library and set of programs that inspect and manipulate the structure of PDF files";
license = licenses.artistic2;
maintainers = with maintainers; [ abbradar ];

View file

@ -1,8 +1,8 @@
{ stdenv, fetchurl, unzip, openblas, gfortran }:
stdenv.mkDerivation rec {
version = "3.12.6";
name = "ipopt-${version}";
version = "3.12.6";
src = fetchurl {
url = "http://www.coin-or.org/download/source/Ipopt/Ipopt-${version}.zip";
@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "A software package for large-scale nonlinear optimization";
homepage = https://projects.coin-or.org/Ipopt;
homepage = "https://projects.coin-or.org/Ipopt";
license = licenses.epl10;
platforms = platforms.unix;
maintainers = with maintainers; [ abbradar ];

View file

@ -1,8 +1,8 @@
{ stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
version = "0.7.5";
name = "Vc-${version}";
version = "0.7.5";
src = fetchFromGitHub {
owner = "VcDevel";

View file

@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
'';
meta = with stdenv.lib; {
homepage = http://vcg.isti.cnr.it/vcglib/install.html;
homepage = "http://vcg.isti.cnr.it/vcglib/install.html";
description = "C++ library for manipulation, processing and displaying with OpenGL of triangle and tetrahedral meshes";
license = licenses.gpl3;
platforms = platforms.linux;

View file

@ -1,8 +1,8 @@
{ stdenv, fetchurl, autoreconfHook, unzip }:
stdenv.mkDerivation rec {
version = "2.5.0";
name = "xlslib-${version}";
version = "2.5.0";
src = fetchurl {
url = "mirror://sourceforge/xlslib/xlslib-package-${version}.zip";
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "C++/C library to construct Excel .xls files in code";
homepage = http://sourceforge.net/projects/xlslib/;
homepage = "http://sourceforge.net/projects/xlslib/";
license = licenses.bsd2;
platforms = platforms.linux;
maintainers = with maintainers; [ abbradar ];

View file

@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Verification script generator for Spin";
homepage = http://spinroot.com/;
homepage = "http://spinroot.com/";
license = licenses.free;
platforms = platforms.linux;
maintainers = with maintainers; [ abbradar ];

View file

@ -43,7 +43,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Open-source, single-player, role-playing roguelike game";
homepage = http://crawl.develz.org/;
homepage = "http://crawl.develz.org/";
longDescription = ''
Open-source, single-player, role-playing roguelike game of exploration and
treasure-hunting in dungeons filled with dangerous and unfriendly monsters

View file

@ -26,11 +26,11 @@ stdenv.mkDerivation rec {
rm $out/bin/dwarftherapist
'';
meta = {
meta = with stdenv.lib; {
description = "Tool to manage dwarves in in a running game of Dwarf Fortress";
maintainers = with stdenv.lib.maintainers; [ the-kenny abbradar ];
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.linux;
maintainers = with maintainers; [ the-kenny abbradar ];
license = licenses.mit;
platforms = platforms.linux;
homepage = "https://github.com/splintermind/Dwarf-Therapist";
};
}

View file

@ -34,7 +34,7 @@ stdenv.mkDerivation {
meta = with stdenv.lib; {
description = "Unfucked multimedia layer for Dwarf Fortress";
homepage = https://github.com/svenstaro/dwarf_fortress_unfuck;
homepage = "https://github.com/svenstaro/dwarf_fortress_unfuck";
license = licenses.free;
platforms = platforms.linux;
maintainers = with maintainers; [ abbradar ];

View file

@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
'';
meta = {
homepage = http://ioquake3.org/;
homepage = "http://ioquake3.org/";
description = "First person shooter engine based on the Quake 3: Arena and Quake 3: Team Arena";
license = lib.licenses.gpl2;
platforms = lib.platforms.linux;

View file

@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
NIX_LDFLAGS = [ "-lopenal" ];
meta = with stdenv.lib; {
homepage = http://scorched3d.co.uk/;
homepage = "http://scorched3d.co.uk/";
description = "3D Clone of the classic Scorched Earth";
license = licenses.gpl2Plus;
platforms = platforms.linux; # maybe more

View file

@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "A free 2D physics sandbox game";
homepage = http://powdertoy.co.uk/;
homepage = "http://powdertoy.co.uk/";
platforms = platforms.unix;
license = licenses.gpl3;
maintainers = with maintainers; [ abbradar ];

View file

@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
adventures.
'';
homepage = http://www.wesnoth.org/;
homepage = "http://www.wesnoth.org/";
license = licenses.gpl2;
maintainers = with maintainers; [ kkallio abbradar ];
platforms = platforms.linux;

View file

@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
adventures.
'';
homepage = http://www.wesnoth.org/;
homepage = "http://www.wesnoth.org/";
license = licenses.gpl2;
maintainers = with maintainers; [ abbradar ];
platforms = platforms.linux;

View file

@ -16,7 +16,7 @@ stdenv.mkDerivation {
'';
meta = with stdenv.lib; {
homepage = https://github.com/donovan6000/M3D-Linux;
homepage = "https://github.com/donovan6000/M3D-Linux";
description = "A Linux program that can communicate with the Micro 3D printer";
license = licenses.gpl2;
platforms = platforms.linux;

View file

@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
'';
meta = with stdenv.lib; {
homepage = https://archlinux.org/;
homepage = "https://archlinux.org/";
description = "ipconfig and nfsmount tools for root on NFS, ported from klibc";
license = licenses.gpl2;
platforms = platforms.linux;

View file

@ -1,8 +1,8 @@
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, postgresql, libgcrypt, pam }:
stdenv.mkDerivation rec {
version = "0.7.3.2";
name = "pam_pgsql-${version}";
version = "0.7.3.2";
src = fetchFromGitHub {
owner = "pam-pgsql";

View file

@ -25,7 +25,7 @@ stdenv.mkDerivation {
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = http://wiki2.dovecot.org/Plugins/Antispam;
homepage = "http://wiki2.dovecot.org/Plugins/Antispam";
description = "An antispam plugin for the Dovecot IMAP server";
license = licenses.gpl2;
maintainers = with maintainers; [ abbradar ];

View file

@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
};
meta = with stdenv.lib; {
homepage = http://lbzip2.org/;
homepage = "http://lbzip2.org/";
description = "Parallel bzip2 compression utility";
license = licenses.gpl3;
maintainers = with maintainers; [ abbradar ];

View file

@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Tool for working with Logitech Unifying receivers and devices";
homepage = https://lekensteyn.nl/logitech-unifying.html;
homepage = "https://lekensteyn.nl/logitech-unifying.html";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = [ maintainers.abbradar ];

View file

@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "L2TP plugin for NetworkManager";
inherit (networkmanager.meta) platforms;
homepage = https://github.com/seriyps/NetworkManager-l2tp;
homepage = "https://github.com/seriyps/NetworkManager-l2tp";
license = licenses.gpl2;
maintainers = with maintainers; [ abbradar obadz ];
};

View file

@ -10077,7 +10077,7 @@ let self = _self // overrides; _self = with self; {
# tests fail; look unfinished
doCheck = false;
meta = {
homepage = http://ludovic.rousseau.free.fr/softwares/pcsc-perl/;
homepage = "http://ludovic.rousseau.free.fr/softwares/pcsc-perl/";
description = "Communicate with a smart card using PC/SC";
license = stdenv.lib.licenses.gpl2Plus;
maintainers = with maintainers; [ abbradar ];

View file

@ -1456,7 +1456,7 @@ in {
propagatedBuildInputs = with self; [ unidecode regex ];
meta = with stdenv.lib; {
homepage = https://github.com/dimka665/awesome-slugify;
homepage = "https://github.com/dimka665/awesome-slugify";
description = "Python flexible slugify function";
license = licenses.gpl3;
platforms = platforms.all;
@ -8698,7 +8698,7 @@ in {
};
meta = {
homepage = https://github.com/tgalal/python-axolotl;
homepage = "https://github.com/tgalal/python-axolotl";
description = "Curve25519 with ed25519 signatures";
maintainers = with maintainers; [ abbradar ];
license = licenses.gpl3;
@ -8723,7 +8723,7 @@ in {
'';
meta = {
homepage = https://launchpad.net/pypolicyd-spf/;
homepage = "https://launchpad.net/pypolicyd-spf/";
description = "Postfix policy engine for Sender Policy Framework (SPF) checking";
maintainers = with maintainers; [ abbradar ];
license = licenses.asl20;
@ -8926,7 +8926,7 @@ in {
};
meta = {
homepage = http://bmsi.com/python/milter.html;
homepage = "http://bmsi.com/python/milter.html";
description = "Python API for Sendmail Milters (SPF)";
maintainers = with maintainers; [ abbradar ];
license = licenses.gpl2;
@ -9081,7 +9081,7 @@ in {
};
meta = {
homepage = http://sarge.readthedocs.org/;
homepage = "http://sarge.readthedocs.org/";
description = "A wrapper for subprocess which provides command pipeline functionality";
license = licenses.bsd3;
platform = platforms.all;
@ -11047,7 +11047,7 @@ in {
doCheck = false;
meta = {
homepage = http://github.com/miracle2k/flask-assets;
homepage = "https://github.com/maxcountryman/flask-login";
description = "User session management for Flask";
license = licenses.mit;
platforms = platforms.all;
@ -11092,7 +11092,7 @@ in {
propagatedBuildInputs = with self; [ flask blinker nose ];
meta = {
homepage = http://packages.python.org/Flask-Principal/;
homepage = "http://packages.python.org/Flask-Principal/";
description = "Identity management for flask";
license = licenses.bsd2;
platforms = platforms.all;
@ -11131,7 +11131,7 @@ in {
propagatedBuildInputs = with self; [ flask ];
meta = {
homepage = http://github.com/smurfix/flask-script;
homepage = "http://github.com/smurfix/flask-script";
description = "Scripting support for Flask";
license = licenses.bsd3;
platforms = platforms.all;
@ -13369,7 +13369,7 @@ in {
};
meta = {
homepage = https://github.com/jlhutch/pylru;
homepage = "https://github.com/jlhutch/pylru";
description = "A least recently used (LRU) cache implementation";
license = licenses.gpl2;
platforms = platforms.all;