treewide: use more HTTPS URLs

Uses the HTTPS url for cases where the existing URL has a permanent
redirect. For each domain, at least one fixed derivation URL was
downloaded to test the domain is properly serving downloads.

Also fixes jbake source URL, which was broken.
This commit is contained in:
Ryan Mulligan 2018-03-24 22:04:25 -07:00
parent 3583cf8f4b
commit b189247ba0
91 changed files with 139 additions and 139 deletions

View file

@ -284,7 +284,7 @@ lib.mapAttrs (n: v: v // { shortName = n; }) rec {
gpl2Oss = { gpl2Oss = {
fullName = "GNU General Public License version 2 only (with OSI approved licenses linking exception)"; fullName = "GNU General Public License version 2 only (with OSI approved licenses linking exception)";
url = http://www.mysql.com/about/legal/licensing/foss-exception; url = https://www.mysql.com/about/legal/licensing/foss-exception;
}; };
gpl2Plus = spdx { gpl2Plus = spdx {

View file

@ -279,7 +279,7 @@ in {
tokenAuthFile = mkOption { tokenAuthFile = mkOption {
description = '' description = ''
Kubernetes apiserver token authentication file. See Kubernetes apiserver token authentication file. See
<link xlink:href="http://kubernetes.io/docs/admin/authentication.html"/> <link xlink:href="https://kubernetes.io/docs/admin/authentication.html"/>
''; '';
default = null; default = null;
type = types.nullOr types.path; type = types.nullOr types.path;
@ -288,7 +288,7 @@ in {
basicAuthFile = mkOption { basicAuthFile = mkOption {
description = '' description = ''
Kubernetes apiserver basic authentication file. See Kubernetes apiserver basic authentication file. See
<link xlink:href="http://kubernetes.io/docs/admin/authentication.html"/> <link xlink:href="https://kubernetes.io/docs/admin/authentication.html"/>
''; '';
default = pkgs.writeText "users" '' default = pkgs.writeText "users" ''
kubernetes,admin,0 kubernetes,admin,0
@ -299,7 +299,7 @@ in {
authorizationMode = mkOption { authorizationMode = mkOption {
description = '' description = ''
Kubernetes apiserver authorization mode (AlwaysAllow/AlwaysDeny/ABAC/RBAC). See Kubernetes apiserver authorization mode (AlwaysAllow/AlwaysDeny/ABAC/RBAC). See
<link xlink:href="http://kubernetes.io/docs/admin/authorization.html"/> <link xlink:href="https://kubernetes.io/docs/admin/authorization.html"/>
''; '';
default = ["RBAC" "Node"]; default = ["RBAC" "Node"];
type = types.listOf (types.enum ["AlwaysAllow" "AlwaysDeny" "ABAC" "RBAC" "Node"]); type = types.listOf (types.enum ["AlwaysAllow" "AlwaysDeny" "ABAC" "RBAC" "Node"]);
@ -308,7 +308,7 @@ in {
authorizationPolicy = mkOption { authorizationPolicy = mkOption {
description = '' description = ''
Kubernetes apiserver authorization policy file. See Kubernetes apiserver authorization policy file. See
<link xlink:href="http://kubernetes.io/docs/admin/authorization.html"/> <link xlink:href="https://kubernetes.io/docs/admin/authorization.html"/>
''; '';
default = []; default = [];
type = types.listOf types.attrs; type = types.listOf types.attrs;
@ -332,7 +332,7 @@ in {
runtimeConfig = mkOption { runtimeConfig = mkOption {
description = '' description = ''
Api runtime configuration. See Api runtime configuration. See
<link xlink:href="http://kubernetes.io/docs/admin/cluster-management.html"/> <link xlink:href="https://kubernetes.io/docs/admin/cluster-management.html"/>
''; '';
default = "authentication.k8s.io/v1beta1=true"; default = "authentication.k8s.io/v1beta1=true";
example = "api/all=false,api/v1=true"; example = "api/all=false,api/v1=true";
@ -342,7 +342,7 @@ in {
admissionControl = mkOption { admissionControl = mkOption {
description = '' description = ''
Kubernetes admission control plugins to use. See Kubernetes admission control plugins to use. See
<link xlink:href="http://kubernetes.io/docs/admin/admission-controllers/"/> <link xlink:href="https://kubernetes.io/docs/admin/admission-controllers/"/>
''; '';
default = ["NamespaceLifecycle" "LimitRanger" "ServiceAccount" "ResourceQuota" "DefaultStorageClass" "DefaultTolerationSeconds" "NodeRestriction"]; default = ["NamespaceLifecycle" "LimitRanger" "ServiceAccount" "ResourceQuota" "DefaultStorageClass" "DefaultTolerationSeconds" "NodeRestriction"];
example = [ example = [

View file

@ -52,7 +52,7 @@ buildGoPackage rec {
]; ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = http://github.com/dapphub/ethsign; homepage = https://github.com/dapphub/ethsign;
description = "Make raw signed Ethereum transactions"; description = "Make raw signed Ethereum transactions";
license = [licenses.gpl3]; license = [licenses.gpl3];
}; };

View file

@ -60,7 +60,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Audio player"; description = "Audio player";
homepage = http://audacious-media-player.org/; homepage = https://audacious-media-player.org/;
maintainers = with maintainers; [ eelco ramkromberg ]; maintainers = with maintainers; [ eelco ramkromberg ];
platforms = with platforms; linux; platforms = with platforms; linux;
license = with licenses; [ license = with licenses; [

View file

@ -81,7 +81,7 @@ mkDerivation {
meta = with lib; { meta = with lib; {
description = "Audio player"; description = "Audio player";
homepage = http://audacious-media-player.org/; homepage = https://audacious-media-player.org/;
maintainers = with maintainers; [ ttuegel ]; maintainers = with maintainers; [ ttuegel ];
platforms = with platforms; linux; platforms = with platforms; linux;
license = with licenses; [ license = with licenses; [

View file

@ -6,7 +6,7 @@ pythonPackages.buildPythonApplication rec {
version = "1.0.6"; version = "1.0.6";
src = fetchurl { src = fetchurl {
url = "http://www.red-bean.com/decklin/lastfmsubmitd/lastfmsubmitd-${version}.tar.gz"; url = "https://www.red-bean.com/decklin/lastfmsubmitd/lastfmsubmitd-${version}.tar.gz";
sha256 = "c2636d5095a95167366bacd458624d67b046e060244fa54ba2c2e3efb79f9b0e"; sha256 = "c2636d5095a95167366bacd458624d67b046e060244fa54ba2c2e3efb79f9b0e";
}; };
@ -15,7 +15,7 @@ pythonPackages.buildPythonApplication rec {
installCommand = "python setup.py install --prefix=$out"; installCommand = "python setup.py install --prefix=$out";
meta = { meta = {
homepage = http://www.red-bean.com/decklin/lastfmsubmitd/; homepage = https://www.red-bean.com/decklin/lastfmsubmitd/;
description = "An last.fm audio scrobbler and daemon"; description = "An last.fm audio scrobbler and daemon";
}; };
} }

View file

@ -19,7 +19,7 @@ pythonPackages.buildPythonApplication rec {
doCheck = false; doCheck = false;
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = http://www.mopidy.com/; homepage = https://www.mopidy.com/;
description = "Mopidy extension for playing music from Google Play Music"; description = "Mopidy extension for playing music from Google Play Music";
license = licenses.asl20; license = licenses.asl20;
maintainers = [ maintainers.jgillich ]; maintainers = [ maintainers.jgillich ];

View file

@ -14,7 +14,7 @@ pythonPackages.buildPythonApplication rec {
doCheck = false; doCheck = false;
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = http://www.mopidy.com/; homepage = https://www.mopidy.com/;
description = "Mopidy extension for playing music from Spotify"; description = "Mopidy extension for playing music from Spotify";
license = licenses.asl20; license = licenses.asl20;
maintainers = [ maintainers.rickynils ]; maintainers = [ maintainers.rickynils ];

View file

@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "CAD program for creating virtual LEGO models"; description = "CAD program for creating virtual LEGO models";
homepage = http://www.leocad.org/; homepage = https://www.leocad.org/;
license = licenses.gpl2; license = licenses.gpl2;
platforms = platforms.linux; platforms = platforms.linux;
}; };

View file

@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
mupdf_modded = mupdf.overrideAttrs (attrs: { mupdf_modded = mupdf.overrideAttrs (attrs: {
name = "mupdf-1.10a"; name = "mupdf-1.10a";
src = fetchurl { src = fetchurl {
url = "http://mupdf.com/downloads/archive/mupdf-1.10a-source.tar.gz"; url = "https://mupdf.com/downloads/archive/mupdf-1.10a-source.tar.gz";
sha256 = "0dm8wcs8i29aibzkqkrn8kcnk4q0kd1v66pg48h5c3qqp4v1zk5a"; sha256 = "0dm8wcs8i29aibzkqkrn8kcnk4q0kd1v66pg48h5c3qqp4v1zk5a";
}; };
# Excluded the pdf-*.c files, since they mostly just broke the #includes # Excluded the pdf-*.c files, since they mostly just broke the #includes

View file

@ -18,7 +18,7 @@ in stdenv.mkDerivation rec {
name = "mupdf-${version}"; name = "mupdf-${version}";
src = fetchurl { src = fetchurl {
url = "http://mupdf.com/downloads/archive/${name}-source.tar.gz"; url = "https://mupdf.com/downloads/archive/${name}-source.tar.gz";
sha256 = "0mc7a92zri27lk17wdr2iffarbfi4lvrmxhc53sz84hm5yl56qsw"; sha256 = "0mc7a92zri27lk17wdr2iffarbfi4lvrmxhc53sz84hm5yl56qsw";
}; };

View file

@ -1,4 +1,4 @@
url http://mupdf.com/downloads/archive/ url https://mupdf.com/downloads/archive/
do_overwrite(){ do_overwrite(){
ensure_hash ensure_hash
ensure_version ensure_version

View file

@ -39,7 +39,7 @@ stdenv.mkDerivation rec {
for computational linguistics and natural language processing. for computational linguistics and natural language processing.
''; '';
homepage = http://wordnet.princeton.edu/; homepage = https://wordnet.princeton.edu/;
maintainers = [ ]; maintainers = [ ];
platforms = with stdenv.lib.platforms; linux ++ darwin; platforms = with stdenv.lib.platforms; linux ++ darwin;

View file

@ -71,7 +71,7 @@ stdenv.mkDerivation rec {
FireHOL, an iptables stateful packet filtering firewall for humans! FireHOL, an iptables stateful packet filtering firewall for humans!
FireQOS, a TC based bandwidth shaper for humans! FireQOS, a TC based bandwidth shaper for humans!
''; '';
homepage = http://firehol.org/; homepage = https://firehol.org/;
license = licenses.gpl2; license = licenses.gpl2;
maintainers = with maintainers; [ geistesk ]; maintainers = with maintainers; [ geistesk ];
platforms = platforms.linux; platforms = platforms.linux;

View file

@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
}; };
ostinatoIcon = fetchurl { ostinatoIcon = fetchurl {
url = "http://ostinato.org/images/site-logo.png"; url = "https://ostinato.org/images/site-logo.png";
sha256 = "f5c067823f2934e4d358d76f65a343efd69ad783a7aeabd7ab4ce3cd03490d70"; sha256 = "f5c067823f2934e4d358d76f65a343efd69ad783a7aeabd7ab4ce3cd03490d70";
}; };

View file

@ -7,7 +7,7 @@ stdenv.mkDerivation rec {
name = "pulseview-0.4.0"; name = "pulseview-0.4.0";
src = fetchurl { src = fetchurl {
url = "http://sigrok.org/download/source/pulseview/${name}.tar.gz"; url = "https://sigrok.org/download/source/pulseview/${name}.tar.gz";
sha256 = "1f8f2342d5yam98mmcb8f9g2vslcwv486bmi4x45pxn68l82ky3q"; sha256 = "1f8f2342d5yam98mmcb8f9g2vslcwv486bmi4x45pxn68l82ky3q";
}; };
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Qt-based LA/scope/MSO GUI for sigrok (a signal analysis software suite)"; description = "Qt-based LA/scope/MSO GUI for sigrok (a signal analysis software suite)";
homepage = http://sigrok.org/; homepage = https://sigrok.org/;
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ]; maintainers = [ maintainers.bjornfor ];

View file

@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
version = "4.15"; version = "4.15";
src = fetchurl { src = fetchurl {
url = "http://i3wm.org/downloads/${name}.tar.bz2"; url = "https://i3wm.org/downloads/${name}.tar.bz2";
sha256 = "09jk70hsdxab24lqvj2f30ijrkbv3f6q9xi5dcsax1dw3x6m4z91"; sha256 = "09jk70hsdxab24lqvj2f30ijrkbv3f6q9xi5dcsax1dw3x6m4z91";
}; };

View file

@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
name = "i3status-2.11"; name = "i3status-2.11";
src = fetchurl { src = fetchurl {
url = "http://i3wm.org/i3status/${name}.tar.bz2"; url = "https://i3wm.org/i3status/${name}.tar.bz2";
sha256 = "0pwcy599fw8by1a1sf91crkqba7679qhvhbacpmhis8c1xrpxnwq"; sha256 = "0pwcy599fw8by1a1sf91crkqba7679qhvhbacpmhis8c1xrpxnwq";
}; };

View file

@ -19,7 +19,7 @@ in fetchzip rec {
sha256 = "0598zr5f7d6ll48pbfbmmkrybhhdks9b2g3m2g67wm40070ffzmd"; sha256 = "0598zr5f7d6ll48pbfbmmkrybhhdks9b2g3m2g67wm40070ffzmd";
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = http://software.sil.org/gentium/; homepage = https://software.sil.org/gentium/;
description = "A high-quality typeface family for Latin, Cyrillic, and Greek"; description = "A high-quality typeface family for Latin, Cyrillic, and Greek";
maintainers = with maintainers; [ ]; maintainers = with maintainers; [ ];
license = licenses.ofl; license = licenses.ofl;

View file

@ -28,7 +28,7 @@ stdenv.mkDerivation {
meta = { meta = {
description = "Schemas for DocBook 5.0, a semantic markup language for technical documentation"; description = "Schemas for DocBook 5.0, a semantic markup language for technical documentation";
homepage = http://docbook.org/xml/5.0/; homepage = https://docbook.org/xml/5.0/;
maintainers = [ lib.maintainers.eelco ]; maintainers = [ lib.maintainers.eelco ];
platforms = lib.platforms.all; platforms = lib.platforms.all;
}; };

View file

@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
buildInputs = [ intltool ]; buildInputs = [ intltool ];
meta = { meta = {
homepage = http://lxde.org/; homepage = https://lxde.org/;
license = stdenv.lib.licenses.gpl2; license = stdenv.lib.licenses.gpl2;
description = "Freedesktop.org desktop menus for LXDE"; description = "Freedesktop.org desktop menus for LXDE";
platforms = stdenv.lib.platforms.linux; platforms = stdenv.lib.platforms.linux;

View file

@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
meta = { meta = {
description = "Lightweight X11 desktop panel for LXDE"; description = "Lightweight X11 desktop panel for LXDE";
homepage = http://lxde.org/; homepage = https://lxde.org/;
license = stdenv.lib.licenses.gpl2; license = stdenv.lib.licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.ryneeverett ]; maintainers = [ stdenv.lib.maintainers.ryneeverett ];
platforms = stdenv.lib.platforms.linux; platforms = stdenv.lib.platforms.linux;

View file

@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
meta = { meta = {
description = "Flex SDK for Adobe Flash / ActionScript"; description = "Flex SDK for Adobe Flash / ActionScript";
homepage = "http://www.adobe.com/products/flex.html"; homepage = "https://www.adobe.com/products/flex.html";
license = stdenv.lib.licenses.mpl11; license = stdenv.lib.licenses.mpl11;
platforms = stdenv.lib.platforms.unix; platforms = stdenv.lib.platforms.unix;
}; };

View file

@ -7,7 +7,7 @@ stdenv.mkDerivation rec {
version = "2.2.0"; version = "2.2.0";
src = fetchurl { src = fetchurl {
url = "http://nekovm.org/media/neko-${version}-src.tar.gz"; url = "https://nekovm.org/media/neko-${version}-src.tar.gz";
sha256 = "1qv47zaa0vzhjlq5wb71627n7dbsxpc1gqpg0hsngjxnbnh1q46g"; sha256 = "1qv47zaa0vzhjlq5wb71627n7dbsxpc1gqpg0hsngjxnbnh1q46g";
}; };

View file

@ -6,11 +6,11 @@ stdenv.mkDerivation {
name = "opendylan-2013.2"; name = "opendylan-2013.2";
src = if stdenv.system == "x86_64-linux" then fetchurl { src = if stdenv.system == "x86_64-linux" then fetchurl {
url = http://opendylan.org/downloads/opendylan/2013.2/opendylan-2013.2-x86_64-linux.tar.bz2; url = https://opendylan.org/downloads/opendylan/2013.2/opendylan-2013.2-x86_64-linux.tar.bz2;
sha256 = "035brbw3hm7zrs593q4zc42yglj1gmmkw3b1r7zzlw3ks4i2lg7h"; sha256 = "035brbw3hm7zrs593q4zc42yglj1gmmkw3b1r7zzlw3ks4i2lg7h";
} }
else if stdenv.system == "i686-linux" then fetchurl { else if stdenv.system == "i686-linux" then fetchurl {
url = http://opendylan.org/downloads/opendylan/2013.2/opendylan-2013.2-x86-linux.tar.bz2; url = https://opendylan.org/downloads/opendylan/2013.2/opendylan-2013.2-x86-linux.tar.bz2;
sha256 = "0c61ihvblcsjrw6ncr8x8ylhskcrqs8pajs4mg5di36cvqw12nq5"; sha256 = "0c61ihvblcsjrw6ncr8x8ylhskcrqs8pajs4mg5di36cvqw12nq5";
} }
else throw "platform ${stdenv.system} not supported."; else throw "platform ${stdenv.system} not supported.";

View file

@ -19,7 +19,7 @@ in rec {
m2Path = "/junit/junit/${version}"; m2Path = "/junit/junit/${version}";
meta = { meta = {
homepage = http://junit.org/junit4/; homepage = https://junit.org/junit4/;
description = "Simple framework to write repeatable tests. It is an instance of the xUnit architecture for unit testing frameworks"; description = "Simple framework to write repeatable tests. It is an instance of the xUnit architecture for unit testing frameworks";
license = stdenv.lib.licenses.epl10; license = stdenv.lib.licenses.epl10;
platforms = stdenv.lib.platforms.all; platforms = stdenv.lib.platforms.all;

View file

@ -4,7 +4,7 @@ stdenv.mkDerivation (rec {
name = "gamin-0.1.10"; name = "gamin-0.1.10";
src = fetchurl { src = fetchurl {
url = "http://www.gnome.org/~veillard/gamin/sources/${name}.tar.gz"; url = "https://www.gnome.org/~veillard/gamin/sources/${name}.tar.gz";
sha256 = "18cr51y5qacvs2fc2p1bqv32rs8bzgs6l67zhasyl45yx055y218"; sha256 = "18cr51y5qacvs2fc2p1bqv32rs8bzgs6l67zhasyl45yx055y218";
}; };

View file

@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = http://ignitionrobotics.org/libraries/math; homepage = https://ignitionrobotics.org/libraries/math;
description = "Math library by Ingition Robotics, created for the Gazebo project"; description = "Math library by Ingition Robotics, created for the Gazebo project";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ pxc ]; maintainers = with maintainers; [ pxc ];

View file

@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true; enableParallelBuilding = true;
meta = { meta = {
homepage = http://www.kotnet.org/~skimo/isl/; homepage = https://www.kotnet.org/~skimo/isl/;
license = stdenv.lib.licenses.lgpl21; license = stdenv.lib.licenses.lgpl21;
description = "A library for manipulating sets and relations of integer points bounded by linear constraints"; description = "A library for manipulating sets and relations of integer points bounded by linear constraints";
platforms = stdenv.lib.platforms.all; platforms = stdenv.lib.platforms.all;

View file

@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true; enableParallelBuilding = true;
meta = { meta = {
homepage = http://www.kotnet.org/~skimo/isl/; homepage = https://www.kotnet.org/~skimo/isl/;
license = stdenv.lib.licenses.lgpl21; license = stdenv.lib.licenses.lgpl21;
description = "A library for manipulating sets and relations of integer points bounded by linear constraints"; description = "A library for manipulating sets and relations of integer points bounded by linear constraints";
platforms = stdenv.lib.platforms.all; platforms = stdenv.lib.platforms.all;

View file

@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true; enableParallelBuilding = true;
meta = { meta = {
homepage = http://www.kotnet.org/~skimo/isl/; homepage = https://www.kotnet.org/~skimo/isl/;
license = stdenv.lib.licenses.lgpl21; license = stdenv.lib.licenses.lgpl21;
description = "A library for manipulating sets and relations of integer points bounded by linear constraints"; description = "A library for manipulating sets and relations of integer points bounded by linear constraints";
platforms = stdenv.lib.platforms.all; platforms = stdenv.lib.platforms.all;

View file

@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true; enableParallelBuilding = true;
meta = { meta = {
homepage = http://www.kotnet.org/~skimo/isl/; homepage = https://www.kotnet.org/~skimo/isl/;
license = stdenv.lib.licenses.lgpl21; license = stdenv.lib.licenses.lgpl21;
description = "A library for manipulating sets and relations of integer points bounded by linear constraints"; description = "A library for manipulating sets and relations of integer points bounded by linear constraints";
platforms = stdenv.lib.platforms.all; platforms = stdenv.lib.platforms.all;

View file

@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true; enableParallelBuilding = true;
meta = { meta = {
homepage = http://www.kotnet.org/~skimo/isl/; homepage = https://www.kotnet.org/~skimo/isl/;
license = stdenv.lib.licenses.lgpl21; license = stdenv.lib.licenses.lgpl21;
description = "A library for manipulating sets and relations of integer points bounded by linear constraints"; description = "A library for manipulating sets and relations of integer points bounded by linear constraints";
platforms = stdenv.lib.platforms.all; platforms = stdenv.lib.platforms.all;

View file

@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
version = "1.2.5"; version = "1.2.5";
src = fetchurl { src = fetchurl {
url = http://math.nist.gov/tnt/jama125.zip; url = https://math.nist.gov/tnt/jama125.zip;
sha256 = "031ns526fvi2nv7jzzv02i7i5sjcyr0gj884i3an67qhsx8vyckl"; sha256 = "031ns526fvi2nv7jzzv02i7i5sjcyr0gj884i3an67qhsx8vyckl";
}; };
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
''; '';
meta = { meta = {
homepage = http://math.nist.gov/tnt/; homepage = https://math.nist.gov/tnt/;
description = "JAMA/C++ Linear Algebra Package: Java-like matrix C++ templates"; description = "JAMA/C++ Linear Algebra Package: Java-like matrix C++ templates";
platforms = stdenv.lib.platforms.unix; platforms = stdenv.lib.platforms.unix;
}; };

View file

@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Legacy D-Bus client library for Audacious"; description = "Legacy D-Bus client library for Audacious";
homepage = http://audacious-media-player.org/; homepage = https://audacious-media-player.org/;
license = licenses.bsd2; license = licenses.bsd2;
maintainers = with maintainers; [ pSub ]; maintainers = with maintainers; [ pSub ];
platforms = with platforms; unix; platforms = with platforms; unix;

View file

@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
This library aims to provide simple helpers that allows you to re-use code and to avoid This library aims to provide simple helpers that allows you to re-use code and to avoid
re-inventing the wheel. re-inventing the wheel.
''; '';
homepage = http://netfilter.org/projects/libmnl/index.html; homepage = https://netfilter.org/projects/libmnl/index.html;
license = stdenv.lib.licenses.lgpl21Plus; license = stdenv.lib.licenses.lgpl21Plus;
platforms = stdenv.lib.platforms.linux; platforms = stdenv.lib.platforms.linux;

View file

@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
version = "1.0.6"; version = "1.0.6";
src = fetchurl { src = fetchurl {
url = "http://netfilter.org/projects/libnetfilter_conntrack/files/${name}.tar.bz2"; url = "https://netfilter.org/projects/libnetfilter_conntrack/files/${name}.tar.bz2";
sha256 = "1svzyf3rq9nbrcw1jsricgyhh7x1am8iqn6kjr6mzrw42810ik7g"; sha256 = "1svzyf3rq9nbrcw1jsricgyhh7x1am8iqn6kjr6mzrw42810ik7g";
}; };
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
previously known as libnfnetlink_conntrack and libctnetlink. This library is currently used previously known as libnfnetlink_conntrack and libctnetlink. This library is currently used
by conntrack-tools among many other applications by conntrack-tools among many other applications
''; '';
homepage = http://netfilter.org/projects/libnetfilter_conntrack/; homepage = https://netfilter.org/projects/libnetfilter_conntrack/;
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
platforms = platforms.linux; platforms = platforms.linux;
}; };

View file

@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
version = "1.0.0"; version = "1.0.0";
src = fetchurl { src = fetchurl {
url = "http://netfilter.org/projects/libnetfilter_cttimeout/files/${name}.tar.bz2"; url = "https://netfilter.org/projects/libnetfilter_cttimeout/files/${name}.tar.bz2";
sha256 = "aeab12754f557cba3ce2950a2029963d817490df7edb49880008b34d7ff8feba"; sha256 = "aeab12754f557cba3ce2950a2029963d817490df7edb49880008b34d7ff8feba";
}; };
@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
With this library, you can create, update and delete timeout policies that can With this library, you can create, update and delete timeout policies that can
be attached to traffic flows. This library is used by conntrack-tools. be attached to traffic flows. This library is used by conntrack-tools.
''; '';
homepage = http://netfilter.org/projects/libnetfilter_cttimeout/; homepage = https://netfilter.org/projects/libnetfilter_cttimeout/;
license = stdenv.lib.licenses.gpl2Plus; license = stdenv.lib.licenses.gpl2Plus;
platforms = stdenv.lib.platforms.linux; platforms = stdenv.lib.platforms.linux;
}; };

View file

@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
version = "1.0.1"; version = "1.0.1";
src = fetchurl { src = fetchurl {
url = "http://netfilter.org/projects/libnetfilter_log/files/${name}.tar.bz2"; url = "https://netfilter.org/projects/libnetfilter_log/files/${name}.tar.bz2";
sha256 = "089vjcfxl5qjqpswrbgklf4wflh44irmw6sk2k0kmfixfmszxq3l"; sha256 = "089vjcfxl5qjqpswrbgklf4wflh44irmw6sk2k0kmfixfmszxq3l";
}; };
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
system that deprecates the old syslog/dmesg based packet logging. This system that deprecates the old syslog/dmesg based packet logging. This
library has been previously known as libnfnetlink_log. library has been previously known as libnfnetlink_log.
''; '';
homepage = http://netfilter.org/projects/libnetfilter_log/; homepage = https://netfilter.org/projects/libnetfilter_log/;
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = with maintainers; [ orivej ]; maintainers = with maintainers; [ orivej ];

View file

@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = http://www.theora.org/; homepage = https://www.theora.org/;
description = "Library for Theora, a free and open video compression format"; description = "Library for Theora, a free and open video compression format";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ spwhitt wkennington ]; maintainers = with maintainers; [ spwhitt wkennington ];

View file

@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
name = "liburcu-${version}"; name = "liburcu-${version}";
src = fetchurl { src = fetchurl {
url = "http://lttng.org/files/urcu/userspace-rcu-${version}.tar.bz2"; url = "https://lttng.org/files/urcu/userspace-rcu-${version}.tar.bz2";
sha256 = "01pbg67qy5hcssy2yi0ckqapzfclgdq93li2rmzw4pa3wh5j42cw"; sha256 = "01pbg67qy5hcssy2yi0ckqapzfclgdq93li2rmzw4pa3wh5j42cw";
}; };
@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Userspace RCU (read-copy-update) library"; description = "Userspace RCU (read-copy-update) library";
homepage = http://lttng.org/urcu; homepage = https://lttng.org/urcu;
license = licenses.lgpl21Plus; license = licenses.lgpl21Plus;
platforms = platforms.unix; platforms = platforms.unix;
maintainers = [ maintainers.bjornfor ]; maintainers = [ maintainers.bjornfor ];

View file

@ -180,7 +180,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "WebM VP8/VP9 codec SDK"; description = "WebM VP8/VP9 codec SDK";
homepage = http://www.webmproject.org/; homepage = https://www.webmproject.org/;
license = licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ codyopel ]; maintainers = with maintainers; [ codyopel ];
platforms = platforms.all; platforms = platforms.all;

View file

@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ libtool ]; nativeBuildInputs = [ libtool ];
meta = { meta = {
homepage = http://logging.apache.org/log4cxx/index.html; homepage = https://logging.apache.org/log4cxx/index.html;
description = "A logging framework for C++ patterned after Apache log4j"; description = "A logging framework for C++ patterned after Apache log4j";
license = stdenv.lib.licenses.asl20; license = stdenv.lib.licenses.asl20;
platforms = stdenv.lib.platforms.unix; platforms = stdenv.lib.platforms.unix;

View file

@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
version = "1.5.1"; version = "1.5.1";
src = fetchurl { src = fetchurl {
url = "http://movit.sesse.net/${name}.tar.gz"; url = "https://movit.sesse.net/${name}.tar.gz";
sha256 = "1259iq2ixiprk4mn7ypapinbg2w1sjq1aivzzbbch9i23kcfsd44"; sha256 = "1259iq2ixiprk4mn7ypapinbg2w1sjq1aivzzbbch9i23kcfsd44";
}; };

View file

@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Fortran API to manipulate netcdf files"; description = "Fortran API to manipulate netcdf files";
homepage = http://www.unidata.ucar.edu/software/netcdf/; homepage = https://www.unidata.ucar.edu/software/netcdf/;
license = licenses.free; license = licenses.free;
maintainers = [ maintainers.bzizou ]; maintainers = [ maintainers.bzizou ];
platforms = platforms.unix; platforms = platforms.unix;

View file

@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
meta = { meta = {
description = "A 3D engine"; description = "A 3D engine";
homepage = http://www.ogre3d.org/; homepage = https://www.ogre3d.org/;
maintainers = [ stdenv.lib.maintainers.raskin ]; maintainers = [ stdenv.lib.maintainers.raskin ];
platforms = stdenv.lib.platforms.linux; platforms = stdenv.lib.platforms.linux;
license = stdenv.lib.licenses.mit; license = stdenv.lib.licenses.mit;

View file

@ -260,7 +260,7 @@ stdenv.mkDerivation rec {
meta = { meta = {
description = "Open Computer Vision Library with more than 500 algorithms"; description = "Open Computer Vision Library with more than 500 algorithms";
homepage = http://opencv.org/; homepage = https://opencv.org/;
license = with stdenv.lib.licenses; if enableUnfree then unfree else bsd3; license = with stdenv.lib.licenses; if enableUnfree then unfree else bsd3;
maintainers = with stdenv.lib.maintainers; [viric mdaiter basvandijk]; maintainers = with stdenv.lib.maintainers; [viric mdaiter basvandijk];
platforms = with stdenv.lib.platforms; linux ++ darwin; platforms = with stdenv.lib.platforms; linux ++ darwin;

View file

@ -44,7 +44,7 @@ in stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Server and user space API to deal with multimedia pipelines"; description = "Server and user space API to deal with multimedia pipelines";
homepage = http://pipewire.org/; homepage = https://pipewire.org/;
license = licenses.lgpl21; license = licenses.lgpl21;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = with maintainers; [ jtojnar ]; maintainers = with maintainers; [ jtojnar ];

View file

@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
version = "3.0.12"; version = "3.0.12";
src = fetchurl { src = fetchurl {
url = http://math.nist.gov/tnt/tnt_3_0_12.zip; url = https://math.nist.gov/tnt/tnt_3_0_12.zip;
sha256 = "1bzkfdb598584qlc058n8wqq9vbz714gr5r57401rsa9qaxhk5j7"; sha256 = "1bzkfdb598584qlc058n8wqq9vbz714gr5r57401rsa9qaxhk5j7";
}; };
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
''; '';
meta = { meta = {
homepage = http://math.nist.gov/tnt/; homepage = https://math.nist.gov/tnt/;
description = "Template Numerical Toolkit: C++ headers for array and matrices"; description = "Template Numerical Toolkit: C++ headers for array and matrices";
platforms = stdenv.lib.platforms.unix; platforms = stdenv.lib.platforms.unix;
}; };

View file

@ -99,7 +99,7 @@ in stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "AMD Accelerated Parallel Processing (APP) SDK, with OpenCL 1.2 support"; description = "AMD Accelerated Parallel Processing (APP) SDK, with OpenCL 1.2 support";
homepage = http://developer.amd.com/amd-accelerated-parallel-processing-app-sdk/; homepage = https://developer.amd.com/amd-accelerated-parallel-processing-app-sdk/;
license = licenses.amd; license = licenses.amd;
maintainers = [ maintainers.offline ]; maintainers = [ maintainers.offline ];
platforms = [ "i686-linux" "x86_64-linux" ]; platforms = [ "i686-linux" "x86_64-linux" ];

View file

@ -23,7 +23,7 @@ buildPythonPackage rec {
meta = { meta = {
description = "MaxMind GeoIP Legacy Database - Python API"; description = "MaxMind GeoIP Legacy Database - Python API";
homepage = http://www.maxmind.com/; homepage = https://www.maxmind.com/;
maintainers = with lib.maintainers; [ jluttine ]; maintainers = with lib.maintainers; [ jluttine ];
license = lib.licenses.lgpl21Plus; license = lib.licenses.lgpl21Plus;
}; };

View file

@ -27,7 +27,7 @@ buildPythonPackage rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "WebSocket and WAMP in Python for Twisted and asyncio."; description = "WebSocket and WAMP in Python for Twisted and asyncio.";
homepage = "http://crossbar.io/autobahn"; homepage = "https://crossbar.io/autobahn";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ nand0p ]; maintainers = with maintainers; [ nand0p ];
platforms = platforms.all; platforms = platforms.all;

View file

@ -35,7 +35,7 @@ buildPythonPackage rec {
''; '';
meta = { meta = {
homepage = "http://github.com/pytoolz/cytoolz/"; homepage = "https://github.com/pytoolz/cytoolz/";
description = "Cython implementation of Toolz: High performance functional utilities"; description = "Cython implementation of Toolz: High performance functional utilities";
license = "licenses.bsd3"; license = "licenses.bsd3";
maintainers = with lib.maintainers; [ fridh ]; maintainers = with lib.maintainers; [ fridh ];

View file

@ -12,7 +12,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ flask webassets flask_script nose ]; propagatedBuildInputs = [ flask webassets flask_script nose ];
meta = with lib; { meta = with lib; {
homepage = http://github.com/miracle2k/flask-assets; homepage = https://github.com/miracle2k/flask-assets;
description = "Asset management for Flask, to compress and merge CSS and Javascript files"; description = "Asset management for Flask, to compress and merge CSS and Javascript files";
license = licenses.bsd2; license = licenses.bsd2;
maintainers = with maintainers; [ abbradar ]; maintainers = with maintainers; [ abbradar ];

View file

@ -16,7 +16,7 @@ buildPythonPackage rec {
doCheck = false; doCheck = false;
meta = with lib; { meta = with lib; {
homepage = http://github.com/smurfix/flask-script; homepage = https://github.com/smurfix/flask-script;
description = "Scripting support for Flask"; description = "Scripting support for Flask";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ abbradar ]; maintainers = with maintainers; [ abbradar ];

View file

@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Python module for manipulation and statistical analysis of graphs"; description = "Python module for manipulation and statistical analysis of graphs";
homepage = http://graph-tool.skewed.de/; homepage = https://graph-tool.skewed.de/;
license = licenses.gpl3; license = licenses.gpl3;
platforms = platforms.all; platforms = platforms.all;
maintainers = [ stdenv.lib.maintainers.joelmo ]; maintainers = [ stdenv.lib.maintainers.joelmo ];

View file

@ -13,7 +13,7 @@ buildPythonPackage rec {
}; };
meta = { meta = {
homepage = "http://github.com/kjd/idna/"; homepage = "https://github.com/kjd/idna/";
description = "Internationalized Domain Names in Applications (IDNA)"; description = "Internationalized Domain Names in Applications (IDNA)";
license = lib.licenses.bsd3; license = lib.licenses.bsd3;
}; };

View file

@ -19,7 +19,7 @@ buildPythonPackage rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "An implementation of JSON Reference for Python"; description = "An implementation of JSON Reference for Python";
homepage = "http://github.com/gazpachoking/jsonref"; homepage = "https://github.com/gazpachoking/jsonref";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ nand0p ]; maintainers = with maintainers; [ nand0p ];
platforms = platforms.all; platforms = platforms.all;

View file

@ -14,7 +14,7 @@ buildPythonPackage rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "A JSON-RPC client library for asyncio"; description = "A JSON-RPC client library for asyncio";
homepage = http://github.com/armills/jsonrpc-async; homepage = https://github.com/armills/jsonrpc-async;
license = licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ peterhoeg ]; maintainers = with maintainers; [ peterhoeg ];
}; };

View file

@ -26,7 +26,7 @@ buildPythonPackage rec {
buildInputs = [ mock unittest2 ]; buildInputs = [ mock unittest2 ];
meta = { meta = {
homepage = http://locust.io/; homepage = https://locust.io/;
description = "A load testing tool"; description = "A load testing tool";
}; };
} }

View file

@ -17,7 +17,7 @@ buildPythonPackage rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "logilab-database provides some classes to make unified access to different"; description = "logilab-database provides some classes to make unified access to different";
homepage = "http://www.logilab.org/project/logilab-database"; homepage = "https://www.logilab.org/project/logilab-database";
}; };
} }

View file

@ -35,7 +35,7 @@ buildPythonPackage rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Python Memory Usage Analyzer"; description = "Python Memory Usage Analyzer";
homepage = http://launchpad.net/meliae; homepage = https://launchpad.net/meliae;
license = licenses.gpl3; license = licenses.gpl3;
maintainers = with maintainers; [ xvapx ]; maintainers = with maintainers; [ xvapx ];
}; };

View file

@ -28,7 +28,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Advanced, easy to use and extensible WikiEngine"; description = "Advanced, easy to use and extensible WikiEngine";
homepage = "http://moinmo.in/"; homepage = "https://moinmo.in/";
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
}; };

View file

@ -30,6 +30,6 @@ buildPythonPackage rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Pecan"; description = "Pecan";
homepage = "http://github.com/pecan/pecan"; homepage = "https://github.com/pecan/pecan";
}; };
} }

View file

@ -38,7 +38,7 @@ pythonPackages.buildPythonApplication rec {
]; ];
meta = { meta = {
description = "A declarative language to describe PostgreSQL databases"; description = "A declarative language to describe PostgreSQL databases";
homepage = http://perseas.github.io/; homepage = https://perseas.github.io/;
license = stdenv.lib.licenses.bsd3; license = stdenv.lib.licenses.bsd3;
maintainers = with stdenv.lib.maintainers; [ pmeunier ]; maintainers = with stdenv.lib.maintainers; [ pmeunier ];
}; };

View file

@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
name = "jbake-${version}"; name = "jbake-${version}";
src = fetchzip { src = fetchzip {
url = "http://jbake.org/files/jbake-${version}-bin.zip"; url = "https://dl.bintray.com/jbake/binary/${name}-bin.zip";
sha256 = "1ib5gvz6sl7k0ywx22anhz69i40wc6jj5lxjxj2aa14qf4lrw912"; sha256 = "1ib5gvz6sl7k0ywx22anhz69i40wc6jj5lxjxj2aa14qf4lrw912";
}; };
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "JBake is a Java based, open source, static site/blog generator for developers & designers"; description = "JBake is a Java based, open source, static site/blog generator for developers & designers";
homepage = "http://jbake.org/"; homepage = "https://jbake.org/";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ moaxcp ]; maintainers = with maintainers; [ moaxcp ];
}; };

View file

@ -8,12 +8,12 @@ stdenv.mkDerivation rec {
name = "libsigrok-${version}"; name = "libsigrok-${version}";
src = fetchurl { src = fetchurl {
url = "http://sigrok.org/download/source/libsigrok/${name}.tar.gz"; url = "https://sigrok.org/download/source/libsigrok/${name}.tar.gz";
inherit sha256; inherit sha256;
}; };
firmware = fetchurl { firmware = fetchurl {
url = "http://sigrok.org/download/binary/sigrok-firmware-fx2lafw/sigrok-firmware-fx2lafw-bin-0.1.3.tar.gz"; url = "https://sigrok.org/download/binary/sigrok-firmware-fx2lafw/sigrok-firmware-fx2lafw-bin-0.1.3.tar.gz";
sha256 = "1qr02ny97navqxr56xq1a227yzf6h09m8jlvc9bnjl0bsk6887bl"; sha256 = "1qr02ny97navqxr56xq1a227yzf6h09m8jlvc9bnjl0bsk6887bl";
}; };
@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Core library of the sigrok signal analysis software suite"; description = "Core library of the sigrok signal analysis software suite";
homepage = http://sigrok.org/; homepage = https://sigrok.org/;
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ]; maintainers = [ maintainers.bjornfor ];

View file

@ -4,7 +4,7 @@ stdenv.mkDerivation rec {
name = "libsigrokdecode-0.5.0"; name = "libsigrokdecode-0.5.0";
src = fetchurl { src = fetchurl {
url = "http://sigrok.org/download/source/libsigrokdecode/${name}.tar.gz"; url = "https://sigrok.org/download/source/libsigrokdecode/${name}.tar.gz";
sha256 = "1hfigfj1976qk11kfsgj75l20qvyq8c9p2h4mjw23d59rsg5ga2a"; sha256 = "1hfigfj1976qk11kfsgj75l20qvyq8c9p2h4mjw23d59rsg5ga2a";
}; };
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Protocol decoding library for the sigrok signal analysis software suite"; description = "Protocol decoding library for the sigrok signal analysis software suite";
homepage = http://sigrok.org/; homepage = https://sigrok.org/;
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ]; maintainers = [ maintainers.bjornfor ];

View file

@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Tracing tools (kernel + user space) for Linux"; description = "Tracing tools (kernel + user space) for Linux";
homepage = http://lttng.org/; homepage = https://lttng.org/;
license = licenses.lgpl21; license = licenses.lgpl21;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ]; maintainers = [ maintainers.bjornfor ];

View file

@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "LTTng Userspace Tracer libraries"; description = "LTTng Userspace Tracer libraries";
homepage = http://lttng.org/; homepage = https://lttng.org/;
license = licenses.lgpl21Plus; license = licenses.lgpl21Plus;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ]; maintainers = [ maintainers.bjornfor ];

View file

@ -4,7 +4,7 @@ stdenv.mkDerivation rec {
name = "lttv-1.5"; name = "lttv-1.5";
src = fetchurl { src = fetchurl {
url = "http://lttng.org/files/packages/${name}.tar.bz2"; url = "https://lttng.org/files/packages/${name}.tar.bz2";
sha256 = "1faldxnh9dld5k0vxckwpqw241ya1r2zv286l6rpgqr500zqw7r1"; sha256 = "1faldxnh9dld5k0vxckwpqw241ya1r2zv286l6rpgqr500zqw7r1";
}; };
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Graphical trace viewer for LTTng trace files"; description = "Graphical trace viewer for LTTng trace files";
homepage = http://lttng.org/; homepage = https://lttng.org/;
# liblttvtraceread (ltt/ directory) is distributed under the GNU LGPL v2.1. # liblttvtraceread (ltt/ directory) is distributed under the GNU LGPL v2.1.
# The rest of the LTTV package is distributed under the GNU GPL v2. # The rest of the LTTV package is distributed under the GNU GPL v2.
license = with licenses; [ gpl2 lgpl21 ]; license = with licenses; [ gpl2 lgpl21 ];

View file

@ -4,7 +4,7 @@ stdenv.mkDerivation rec {
name = "sigrok-cli-0.7.0"; name = "sigrok-cli-0.7.0";
src = fetchurl { src = fetchurl {
url = "http://sigrok.org/download/source/sigrok-cli/${name}.tar.gz"; url = "https://sigrok.org/download/source/sigrok-cli/${name}.tar.gz";
sha256 = "072ylscp0ppgii1k5j07hhv7dfmni4vyhxnsvxmgqgfyq9ldjsan"; sha256 = "072ylscp0ppgii1k5j07hhv7dfmni4vyhxnsvxmgqgfyq9ldjsan";
}; };
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Command-line frontend for the sigrok signal analysis software suite"; description = "Command-line frontend for the sigrok signal analysis software suite";
homepage = http://sigrok.org/; homepage = https://sigrok.org/;
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ]; maintainers = [ maintainers.bjornfor ];

View file

@ -94,7 +94,7 @@ stdenv.mkDerivation rec {
substances or radiation, now more closely resemble insects, birds or fish substances or radiation, now more closely resemble insects, birds or fish
than their original form. than their original form.
''; '';
homepage = http://cataclysmdda.org/; homepage = https://cataclysmdda.org/;
license = licenses.cc-by-sa-30; license = licenses.cc-by-sa-30;
maintainers = [ maintainers.skeidel ]; maintainers = [ maintainers.skeidel ];
platforms = platforms.unix; platforms = platforms.unix;

View file

@ -89,7 +89,7 @@ stdenv.mkDerivation rec {
substances or radiation, now more closely resemble insects, birds or fish substances or radiation, now more closely resemble insects, birds or fish
than their original form. than their original form.
''; '';
homepage = http://cataclysmdda.org/; homepage = https://cataclysmdda.org/;
license = licenses.cc-by-sa-30; license = licenses.cc-by-sa-30;
platforms = platforms.unix; platforms = platforms.unix;
}; };

View file

@ -42,7 +42,7 @@ let
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Descent ${toString ver} assets from GOG"; description = "Descent ${toString ver} assets from GOG";
homepage = http://www.dxx-rebirth.com/; homepage = https://www.dxx-rebirth.com/;
license = licenses.unfree; license = licenses.unfree;
maintainers = with maintainers; [ peterhoeg ]; maintainers = with maintainers; [ peterhoeg ];
hydraPlatforms = []; hydraPlatforms = [];

View file

@ -4,7 +4,7 @@
let let
music = fetchurl { music = fetchurl {
url = "http://www.dxx-rebirth.com/download/dxx/res/d2xr-sc55-music.dxa"; url = "https://www.dxx-rebirth.com/download/dxx/res/d2xr-sc55-music.dxa";
sha256 = "05mz77vml396mff43dbs50524rlm4fyds6widypagfbh5hc55qdc"; sha256 = "05mz77vml396mff43dbs50524rlm4fyds6widypagfbh5hc55qdc";
}; };
@ -13,7 +13,7 @@ in stdenv.mkDerivation rec {
version = "0.59.100"; version = "0.59.100";
src = fetchurl { src = fetchurl {
url = "http://www.dxx-rebirth.com/download/dxx/dxx-rebirth_v${version}-src.tar.gz"; url = "https://www.dxx-rebirth.com/download/dxx/dxx-rebirth_v${version}-src.tar.gz";
sha256 = "0m9k34zyr8bbni9szip407mffdpwbqszgfggavgqjwq0k9c1w7ka"; sha256 = "0m9k34zyr8bbni9szip407mffdpwbqszgfggavgqjwq0k9c1w7ka";
}; };
@ -57,7 +57,7 @@ in stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Source Port of the Descent 1 and 2 engines"; description = "Source Port of the Descent 1 and 2 engines";
homepage = http://www.dxx-rebirth.com/; homepage = https://www.dxx-rebirth.com/;
license = licenses.free; license = licenses.free;
maintainers = with maintainers; [ viric peterhoeg ]; maintainers = with maintainers; [ viric peterhoeg ];
platforms = with platforms; linux; platforms = with platforms; linux;

View file

@ -16,7 +16,7 @@ let
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Descent ${toString ver} using the DXX-Rebirth project engine and game assets from GOG"; description = "Descent ${toString ver} using the DXX-Rebirth project engine and game assets from GOG";
homepage = http://www.dxx-rebirth.com/; homepage = https://www.dxx-rebirth.com/;
license = with licenses; [ free unfree ]; license = with licenses; [ free unfree ];
maintainers = with maintainers; [ peterhoeg ]; maintainers = with maintainers; [ peterhoeg ];
platforms = with platforms; linux; platforms = with platforms; linux;

View file

@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
version = "2.8.3"; version = "2.8.3";
src = fetchurl { src = fetchurl {
url = "http://fs-uae.net/fs-uae/stable/${version}/${name}.tar.gz"; url = "https://fs-uae.net/fs-uae/stable/${version}/${name}.tar.gz";
sha256 = "14k2p324sdr662f49299mv0bw5jmpj1i2iqn0xs5pgf80x6l3mg2"; sha256 = "14k2p324sdr662f49299mv0bw5jmpj1i2iqn0xs5pgf80x6l3mg2";
}; };

View file

@ -79,7 +79,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Playstation 1 emulator"; description = "Playstation 1 emulator";
homepage = http://pcsxr.codeplex.com/; homepage = https://pcsxr.codeplex.com/;
maintainers = with maintainers; [ rardiol ]; maintainers = with maintainers; [ rardiol ];
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
platforms = platforms.all; platforms = platforms.all;

View file

@ -6,7 +6,7 @@ stdenv.mkDerivation rec {
version = "2.10.5"; version = "2.10.5";
src = fetchurl { src = fetchurl {
url = "http://lttng.org/files/lttng-modules/lttng-modules-${version}.tar.bz2"; url = "https://lttng.org/files/lttng-modules/lttng-modules-${version}.tar.bz2";
sha256 = "07rs01zwr4bmjamplix5qz1c6mb6wdawb68vyn0w6wx68ppbpnxq"; sha256 = "07rs01zwr4bmjamplix5qz1c6mb6wdawb68vyn0w6wx68ppbpnxq";
}; };
@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Linux kernel modules for LTTng tracing"; description = "Linux kernel modules for LTTng tracing";
homepage = http://lttng.org/; homepage = https://lttng.org/;
license = with licenses; [ lgpl21 gpl2 mit ]; license = with licenses; [ lgpl21 gpl2 mit ];
platforms = platforms.linux; platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ]; maintainers = [ maintainers.bjornfor ];

View file

@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
the wordnet data available to dictd and by extension for lookup with the wordnet data available to dictd and by extension for lookup with
the dict command. ''; the dict command. '';
homepage = http://wordnet.princeton.edu/; homepage = https://wordnet.princeton.edu/;
maintainers = [ ]; maintainers = [ ];
platforms = stdenv.lib.platforms.all; platforms = stdenv.lib.platforms.all;

View file

@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
name = "gpm-1.20.7"; name = "gpm-1.20.7";
src = fetchurl { src = fetchurl {
url = "http://www.nico.schottelius.org/software/gpm/archives/${name}.tar.bz2"; url = "https://www.nico.schottelius.org/software/gpm/archives/${name}.tar.bz2";
sha256 = "13d426a8h403ckpc8zyf7s2p5rql0lqbg2bv0454x0pvgbfbf4gh"; sha256 = "13d426a8h403ckpc8zyf7s2p5rql0lqbg2bv0454x0pvgbfbf4gh";
}; };
@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = http://www.nico.schottelius.org/software/gpm/; homepage = https://www.nico.schottelius.org/software/gpm/;
description = "A daemon that provides mouse support on the Linux console"; description = "A daemon that provides mouse support on the Linux console";
license = licenses.gpl2; license = licenses.gpl2;
platforms = platforms.linux ++ platforms.cygwin; platforms = platforms.linux ++ platforms.cygwin;

View file

@ -4,7 +4,7 @@ stdenv.mkDerivation rec {
name = "ngircd-24"; name = "ngircd-24";
src = fetchurl { src = fetchurl {
url = "http://ngircd.barton.de/pub/ngircd/${name}.tar.xz"; url = "https://ngircd.barton.de/pub/ngircd/${name}.tar.xz";
sha256 = "020h9d1awyxqr0l42x1fhs47q7cmm17fdxzjish8p2kq23ma0gqp"; sha256 = "020h9d1awyxqr0l42x1fhs47q7cmm17fdxzjish8p2kq23ma0gqp";
}; };

View file

@ -71,7 +71,7 @@ self = stdenv.mkDerivation rec {
}; };
meta = { meta = {
homepage = http://www.mysql.com/; homepage = https://www.mysql.com/;
description = "The world's most popular open source database"; description = "The world's most popular open source database";
platforms = stdenv.lib.platforms.unix; platforms = stdenv.lib.platforms.unix;
}; };

View file

@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
name = "bindfs-${version}"; name = "bindfs-${version}";
src = fetchurl { src = fetchurl {
url = "http://bindfs.org/downloads/${name}.tar.gz"; url = "https://bindfs.org/downloads/${name}.tar.gz";
sha256 = "1dgqjq2plpds442ygpv8czr5v199ljscp33m89y19x04ssljrymc"; sha256 = "1dgqjq2plpds442ygpv8czr5v199ljscp33m89y19x04ssljrymc";
}; };

View file

@ -165,7 +165,7 @@ stdenv.mkDerivation {
outputs = [ "dev" "lib" "out" "doc" ]; outputs = [ "dev" "lib" "out" "doc" ];
meta = { meta = {
homepage = http://ceph.com/; homepage = https://ceph.com/;
description = "Distributed storage system"; description = "Distributed storage system";
license = licenses.lgpl21; license = licenses.lgpl21;
maintainers = with maintainers; [ adev ak wkennington ]; maintainers = with maintainers; [ adev ak wkennington ];

View file

@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = http://github.com/fcitx/fcitx-qt5; homepage = https://github.com/fcitx/fcitx-qt5;
description = "Qt5 IM Module for Fcitx"; description = "Qt5 IM Module for Fcitx";
license = licenses.gpl2; license = licenses.gpl2;
platforms = platforms.linux; platforms = platforms.linux;

View file

@ -89,7 +89,7 @@ stdenv.mkDerivation rec {
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = http://github.com/fcitx/fcitx; homepage = https://github.com/fcitx/fcitx;
description = "A Flexible Input Method Framework"; description = "A Flexible Input Method Framework";
license = licenses.gpl2; license = licenses.gpl2;
platforms = platforms.linux; platforms = platforms.linux;

View file

@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = http://www.argtable.org/; homepage = https://www.argtable.org/;
description = "A Cross-Platform, Single-File, ANSI C Command-Line Parsing Library"; description = "A Cross-Platform, Single-File, ANSI C Command-Line Parsing Library";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ artuuge ]; maintainers = with maintainers; [ artuuge ];

View file

@ -17,7 +17,7 @@ in stdenv.mkDerivation rec {
meta = { meta = {
description = "EDID decoder and conformance tester"; description = "EDID decoder and conformance tester";
homepage = http://cgit.freedesktop.org/xorg/app/edid-decode/; homepage = https://cgit.freedesktop.org/xorg/app/edid-decode/;
license = stdenv.lib.licenses.mit; license = stdenv.lib.licenses.mit;
maintainers = [ stdenv.lib.maintainers.chiiruno ]; maintainers = [ stdenv.lib.maintainers.chiiruno ];
platforms = stdenv.lib.platforms.all; platforms = stdenv.lib.platforms.all;

View file

@ -775,7 +775,7 @@ in {
meta = { meta = {
description = "Microsoft Azure SDK for Python"; description = "Microsoft Azure SDK for Python";
homepage = "http://azure.microsoft.com/en-us/develop/python/"; homepage = "https://azure.microsoft.com/en-us/develop/python/";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ olcai ]; maintainers = with maintainers; [ olcai ];
}; };
@ -790,7 +790,7 @@ in {
}; };
meta = { meta = {
description = "Microsoft Azure SDK for Python"; description = "Microsoft Azure SDK for Python";
homepage = "http://azure.microsoft.com/en-us/develop/python/"; homepage = "https://azure.microsoft.com/en-us/develop/python/";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ olcai ]; maintainers = with maintainers; [ olcai ];
}; };
@ -810,7 +810,7 @@ in {
''; '';
meta = { meta = {
description = "Microsoft Azure SDK for Python"; description = "Microsoft Azure SDK for Python";
homepage = "http://azure.microsoft.com/en-us/develop/python/"; homepage = "https://azure.microsoft.com/en-us/develop/python/";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ olcai ]; maintainers = with maintainers; [ olcai ];
}; };
@ -830,7 +830,7 @@ in {
''; '';
meta = { meta = {
description = "Microsoft Azure SDK for Python"; description = "Microsoft Azure SDK for Python";
homepage = "http://azure.microsoft.com/en-us/develop/python/"; homepage = "https://azure.microsoft.com/en-us/develop/python/";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ olcai ]; maintainers = with maintainers; [ olcai ];
}; };
@ -855,7 +855,7 @@ in {
propagatedBuildInputs = with self; [ azure-mgmt-common ]; propagatedBuildInputs = with self; [ azure-mgmt-common ];
meta = { meta = {
description = "Microsoft Azure SDK for Python"; description = "Microsoft Azure SDK for Python";
homepage = "http://azure.microsoft.com/en-us/develop/python/"; homepage = "https://azure.microsoft.com/en-us/develop/python/";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ olcai ]; maintainers = with maintainers; [ olcai ];
}; };
@ -880,7 +880,7 @@ in {
propagatedBuildInputs = with self; [ azure-mgmt-common ]; propagatedBuildInputs = with self; [ azure-mgmt-common ];
meta = { meta = {
description = "Microsoft Azure SDK for Python"; description = "Microsoft Azure SDK for Python";
homepage = "http://azure.microsoft.com/en-us/develop/python/"; homepage = "https://azure.microsoft.com/en-us/develop/python/";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ olcai ]; maintainers = with maintainers; [ olcai ];
}; };
@ -896,7 +896,7 @@ in {
propagatedBuildInputs = with self; [ azure-nspkg ]; propagatedBuildInputs = with self; [ azure-nspkg ];
meta = { meta = {
description = "Microsoft Azure SDK for Python"; description = "Microsoft Azure SDK for Python";
homepage = "http://azure.microsoft.com/en-us/develop/python/"; homepage = "https://azure.microsoft.com/en-us/develop/python/";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ olcai ]; maintainers = with maintainers; [ olcai ];
}; };
@ -921,7 +921,7 @@ in {
propagatedBuildInputs = with self; [ azure-mgmt-common ]; propagatedBuildInputs = with self; [ azure-mgmt-common ];
meta = { meta = {
description = "Microsoft Azure SDK for Python"; description = "Microsoft Azure SDK for Python";
homepage = "http://azure.microsoft.com/en-us/develop/python/"; homepage = "https://azure.microsoft.com/en-us/develop/python/";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ olcai ]; maintainers = with maintainers; [ olcai ];
}; };
@ -946,7 +946,7 @@ in {
propagatedBuildInputs = with self; [ azure-mgmt-common ]; propagatedBuildInputs = with self; [ azure-mgmt-common ];
meta = { meta = {
description = "Microsoft Azure SDK for Python"; description = "Microsoft Azure SDK for Python";
homepage = "http://azure.microsoft.com/en-us/develop/python/"; homepage = "https://azure.microsoft.com/en-us/develop/python/";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ olcai ]; maintainers = with maintainers; [ olcai ];
}; };
@ -965,7 +965,7 @@ in {
''; '';
meta = { meta = {
description = "Microsoft Azure SDK for Python"; description = "Microsoft Azure SDK for Python";
homepage = "http://azure.microsoft.com/en-us/develop/python/"; homepage = "https://azure.microsoft.com/en-us/develop/python/";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ olcai ]; maintainers = with maintainers; [ olcai ];
}; };
@ -984,7 +984,7 @@ in {
''; '';
meta = { meta = {
description = "Microsoft Azure SDK for Python"; description = "Microsoft Azure SDK for Python";
homepage = "http://azure.microsoft.com/en-us/develop/python/"; homepage = "https://azure.microsoft.com/en-us/develop/python/";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ olcai ]; maintainers = with maintainers; [ olcai ];
}; };
@ -1750,7 +1750,7 @@ in {
meta = { meta = {
description = "Python bindings for Oracle Berkeley DB"; description = "Python bindings for Oracle Berkeley DB";
homepage = http://www.jcea.es/programacion/pybsddb.htm; homepage = https://www.jcea.es/programacion/pybsddb.htm;
license = with licenses; [ agpl3 ]; # License changed from bsd3 to agpl3 since 6.x license = with licenses; [ agpl3 ]; # License changed from bsd3 to agpl3 since 6.x
}; };
}; };
@ -1861,7 +1861,7 @@ in {
doCheck = false; doCheck = false;
meta = { meta = {
homepage = http://github.com/ralphbean/bugwarrior; homepage = https://github.com/ralphbean/bugwarrior;
description = "Sync github, bitbucket, bugzilla, and trac issues with taskwarrior"; description = "Sync github, bitbucket, bugzilla, and trac issues with taskwarrior";
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
platforms = platforms.all; platforms = platforms.all;
@ -4686,7 +4686,7 @@ in {
meta = { meta = {
description = "A small Gtk+ app for keeping track of your time. It's main goal is to be as unintrusive as possible"; description = "A small Gtk+ app for keeping track of your time. It's main goal is to be as unintrusive as possible";
homepage = http://mg.pov.lt/gtimelog/; homepage = https://mg.pov.lt/gtimelog/;
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
maintainers = with maintainers; [ ocharles ]; maintainers = with maintainers; [ ocharles ];
platforms = platforms.unix; platforms = platforms.unix;
@ -5512,7 +5512,7 @@ in {
meta = { meta = {
description = "PAM interface using ctypes"; description = "PAM interface using ctypes";
homepage = "http://github.com/minrk/pamela"; homepage = "https://github.com/minrk/pamela";
license = licenses.mit; license = licenses.mit;
}; };
}; };
@ -5561,7 +5561,7 @@ in {
meta = { meta = {
description = "A Python-based build/distribution/deployment scripting tool"; description = "A Python-based build/distribution/deployment scripting tool";
homepage = http://github.com/paver/paver; homepage = https://github.com/paver/paver;
maintainers = with maintainers; [ lovek323 ]; maintainers = with maintainers; [ lovek323 ];
platforms = platforms.unix; platforms = platforms.unix;
}; };
@ -7640,7 +7640,7 @@ in {
meta = { meta = {
description = "Filesystem abstraction"; description = "Filesystem abstraction";
homepage = http://pypi.python.org/pypi/fs; homepage = https://pypi.python.org/pypi/fs;
license = licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ lovek323 ]; maintainers = with maintainers; [ lovek323 ];
platforms = platforms.unix; platforms = platforms.unix;
@ -8398,7 +8398,7 @@ in {
''; '';
meta = { meta = {
homepage = "http://falcao.it/HTTPretty/"; homepage = "https://falcao.it/HTTPretty/";
description = "HTTP client request mocking tool"; description = "HTTP client request mocking tool";
license = licenses.mit; license = licenses.mit;
}; };
@ -8838,7 +8838,7 @@ in {
meta = { meta = {
description = "Messaging library for Python"; description = "Messaging library for Python";
homepage = "http://github.com/celery/kombu"; homepage = "https://github.com/celery/kombu";
license = licenses.bsd3; license = licenses.bsd3;
}; };
}; };
@ -9076,7 +9076,7 @@ in {
''; '';
meta = { meta = {
homepage = http://launchpad.net/pylockfile; homepage = https://launchpad.net/pylockfile;
description = "Platform-independent advisory file locking capability for Python applications"; description = "Platform-independent advisory file locking capability for Python applications";
license = licenses.asl20; license = licenses.asl20;
}; };
@ -10383,7 +10383,7 @@ in {
}; };
meta = { meta = {
homepage = http://alastairs-place.net/projects/netifaces/; homepage = https://alastairs-place.net/projects/netifaces/;
description = "Portable access to network interfaces from Python"; description = "Portable access to network interfaces from Python";
}; };
}; };
@ -10937,7 +10937,7 @@ in {
meta = { meta = {
description = "Draws Python object reference graphs with graphviz"; description = "Draws Python object reference graphs with graphviz";
homepage = http://mg.pov.lt/objgraph/; homepage = https://mg.pov.lt/objgraph/;
license = licenses.mit; license = licenses.mit;
}; };
}; };
@ -18924,7 +18924,7 @@ EOF
doCheck = false; doCheck = false;
meta = { meta = {
homepage = "http://matplotlib.org/basemap/"; homepage = "https://matplotlib.org/basemap/";
description = "Plot data on map projections with matplotlib"; description = "Plot data on map projections with matplotlib";
longDescription = '' longDescription = ''
An add-on toolkit for matplotlib that lets you plot data on map projections with An add-on toolkit for matplotlib that lets you plot data on map projections with
@ -19084,7 +19084,7 @@ EOF
meta = { meta = {
description = "Copy your docs directly to the gh-pages branch"; description = "Copy your docs directly to the gh-pages branch";
homepage = "http://github.com/davisp/ghp-import"; homepage = "https://github.com/davisp/ghp-import";
license = "Tumbolia Public License"; license = "Tumbolia Public License";
maintainers = with maintainers; [ garbas ]; maintainers = with maintainers; [ garbas ];
}; };
@ -19200,7 +19200,7 @@ EOF
meta = { meta = {
description = "Jenkins Job Builder is a system for configuring Jenkins jobs using simple YAML files stored in Git"; description = "Jenkins Job Builder is a system for configuring Jenkins jobs using simple YAML files stored in Git";
homepage = "http://docs.openstack.org/infra/system-config/jjb.html"; homepage = "https://docs.openstack.org/infra/system-config/jjb.html";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ garbas ]; maintainers = with maintainers; [ garbas ];
}; };