Merge pull request #132233 from siraben/redirected-urls-fix
treewide: fix redirected URLs
This commit is contained in:
commit
5a07b52d2e
@ -38,7 +38,7 @@ in py.buildPythonApplication rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "A real-time audio analyzer";
|
||||
homepage = "http://friture.org/";
|
||||
homepage = "https://friture.org/";
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.linux; # fails on Darwin
|
||||
maintainers = [ maintainers.laikq ];
|
||||
|
@ -4,7 +4,7 @@ stdenv.mkDerivation rec {
|
||||
pname = "spectmorph";
|
||||
version = "0.5.2";
|
||||
src = fetchurl {
|
||||
url = "http://spectmorph.org/files/releases/${pname}-${version}.tar.bz2";
|
||||
url = "https://spectmorph.org/files/releases/${pname}-${version}.tar.bz2";
|
||||
sha256 = "0yrq7mknhk096wfsx0q3b6wwa2w5la0rxa113di26rrrw136xl1f";
|
||||
};
|
||||
|
||||
|
@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "The nice editor";
|
||||
homepage = "http://ne.di.unimi.it/";
|
||||
homepage = "https://ne.di.unimi.it/";
|
||||
longDescription = ''
|
||||
ne is a free (GPL'd) text editor based on the POSIX standard that runs
|
||||
(we hope) on almost any UN*X machine. ne is easy to use for the beginner,
|
||||
|
@ -12,7 +12,7 @@ stdenv.mkDerivation {
|
||||
buildInputs = [ qt4 libjpeg libtiff boost ];
|
||||
|
||||
meta = {
|
||||
homepage = "http://scantailor.org/";
|
||||
homepage = "https://scantailor.org/";
|
||||
description = "Interactive post-processing tool for scanned pages";
|
||||
|
||||
license = lib.licenses.gpl3Plus;
|
||||
|
@ -23,7 +23,7 @@ stdenv.mkDerivation {
|
||||
|
||||
meta = {
|
||||
description = "Tool for recording, playing, editing, viewing and labeling of audio";
|
||||
homepage = "http://www.speech.kth.se/wavesurfer/";
|
||||
homepage = "https://www.speech.kth.se/wavesurfer/";
|
||||
license = lib.licenses.bsd0;
|
||||
};
|
||||
}
|
||||
|
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
||||
version = "4608";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.mkgmap.org.uk/download/mkgmap-r${version}-src.tar.gz";
|
||||
url = "https://www.mkgmap.org.uk/download/mkgmap-r${version}-src.tar.gz";
|
||||
sha256 = "uj/iZZHML4nqEKdFBQSDdegkalZFJdzEE4xQrOruEp0=";
|
||||
};
|
||||
|
||||
@ -73,7 +73,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with lib; {
|
||||
description = "Create maps for Garmin GPS devices from OpenStreetMap (OSM) data";
|
||||
homepage = "http://www.mkgmap.org.uk";
|
||||
downloadPage = "http://www.mkgmap.org.uk/download/mkgmap.html";
|
||||
downloadPage = "https://www.mkgmap.org.uk/download/mkgmap.html";
|
||||
license = licenses.gpl2Only;
|
||||
maintainers = with maintainers; [ sikmir ];
|
||||
platforms = platforms.all;
|
||||
|
@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
|
||||
version = "598";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.mkgmap.org.uk/download/splitter-r${version}-src.tar.gz";
|
||||
url = "https://www.mkgmap.org.uk/download/splitter-r${version}-src.tar.gz";
|
||||
sha256 = "gpbJpDBXA9tmSmx9oKLa7xWtIOHBTYd1iPPgNTC2C2M=";
|
||||
};
|
||||
|
||||
@ -69,7 +69,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with lib; {
|
||||
description = "Utility for splitting OpenStreetMap maps into tiles";
|
||||
homepage = "http://www.mkgmap.org.uk";
|
||||
downloadPage = "http://www.mkgmap.org.uk/download/splitter.html";
|
||||
downloadPage = "https://www.mkgmap.org.uk/download/splitter.html";
|
||||
license = licenses.gpl2Only;
|
||||
maintainers = with maintainers; [ sikmir ];
|
||||
platforms = platforms.all;
|
||||
|
@ -2,7 +2,7 @@
|
||||
let
|
||||
fetchTestInput = { res, sha256 }: fetchurl {
|
||||
inherit sha256;
|
||||
url = "http://www.mkgmap.org.uk/testinput/${res}";
|
||||
url = "https://www.mkgmap.org.uk/testinput/${res}";
|
||||
name = builtins.replaceStrings [ "/" ] [ "__" ] res;
|
||||
};
|
||||
in
|
||||
|
@ -2,7 +2,7 @@
|
||||
let
|
||||
fetchTestInput = { res, sha256 }: fetchurl {
|
||||
inherit sha256;
|
||||
url = "http://www.mkgmap.org.uk/testinput/${res}";
|
||||
url = "https://www.mkgmap.org.uk/testinput/${res}";
|
||||
name = builtins.replaceStrings [ "/" ] [ "__" ] res;
|
||||
};
|
||||
in
|
||||
|
@ -109,7 +109,7 @@ let
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://hadoop.apache.org/";
|
||||
homepage = "https://hadoop.apache.org/";
|
||||
description = "Framework for distributed processing of large data sets across clusters of computers";
|
||||
license = licenses.asl20;
|
||||
|
||||
|
@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "A handy personal organizer";
|
||||
homepage = "http://clayo.org/osmo/";
|
||||
homepage = "https://clayo.org/osmo/";
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ pSub ];
|
||||
|
@ -42,7 +42,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = {
|
||||
description = "Verification for C and Java programs via separation logic";
|
||||
homepage = "http://people.cs.kuleuven.be/~bart.jacobs/verifast/";
|
||||
homepage = "https://people.cs.kuleuven.be/~bart.jacobs/verifast/";
|
||||
license = lib.licenses.mit;
|
||||
platforms = [ "x86_64-linux" ];
|
||||
maintainers = [ lib.maintainers.thoughtpolice ];
|
||||
|
@ -6,7 +6,7 @@ stdenv.mkDerivation rec {
|
||||
pname = "nauty";
|
||||
version = "27r1";
|
||||
src = fetchurl {
|
||||
url = "http://pallini.di.uniroma1.it/nauty${version}.tar.gz";
|
||||
url = "https://pallini.di.uniroma1.it/nauty${version}.tar.gz";
|
||||
sha256 = "0xsfqfcknbd6g6wzpa5l7crmmk3bf3zjh37rhylq6b20dqcmvjkn";
|
||||
};
|
||||
outputs = [ "out" "dev" ];
|
||||
@ -37,7 +37,7 @@ stdenv.mkDerivation rec {
|
||||
# I'm not sure if the filename will remain the same for future changelog or
|
||||
# if it will track changes to minor releases. Lets see. Better than nothing
|
||||
# in any case.
|
||||
changelog = "http://pallini.di.uniroma1.it/changes24-27.txt";
|
||||
homepage = "http://pallini.di.uniroma1.it/";
|
||||
changelog = "https://pallini.di.uniroma1.it/changes24-27.txt";
|
||||
homepage = "https://pallini.di.uniroma1.it/";
|
||||
};
|
||||
}
|
||||
|
@ -134,7 +134,7 @@ stdenv.mkDerivation rec {
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://bochs.sourceforge.io/";
|
||||
homepage = "https://bochs.sourceforge.io/";
|
||||
description = "An open-source IA-32 (x86) PC emulator";
|
||||
longDescription = ''
|
||||
Bochs is an open-source (LGPL), highly portable IA-32 PC emulator, written
|
||||
|
@ -5,7 +5,7 @@ let
|
||||
in fetchzip {
|
||||
name = "terminus-font-ttf-${version}";
|
||||
|
||||
url = "http://files.ax86.net/terminus-ttf/files/${version}/terminus-ttf-${version}.zip";
|
||||
url = "https://files.ax86.net/terminus-ttf/files/${version}/terminus-ttf-${version}.zip";
|
||||
|
||||
postFetch = ''
|
||||
unzip -j $downloadedFile
|
||||
@ -26,7 +26,7 @@ in fetchzip {
|
||||
Monospaced bitmap font designed for long work with computers
|
||||
(TTF version, mainly for Java applications)
|
||||
'';
|
||||
homepage = "http://files.ax86.net/terminus-ttf";
|
||||
homepage = "https://files.ax86.net/terminus-ttf";
|
||||
license = licenses.ofl;
|
||||
maintainers = with maintainers; [ okasu ];
|
||||
};
|
||||
|
@ -81,7 +81,7 @@ in stdenv.mkDerivation rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "A low-level counterpart to Lua";
|
||||
homepage = "http://terralang.org/";
|
||||
homepage = "https://terralang.org/";
|
||||
platforms = platforms.x86_64;
|
||||
maintainers = with maintainers; [ jb55 seylerius thoughtpolice ];
|
||||
license = licenses.mit;
|
||||
|
@ -59,7 +59,7 @@ stdenv.mkDerivation {
|
||||
|
||||
meta = with lib; {
|
||||
description = "Io programming language";
|
||||
homepage = "http://iolanguage.org/";
|
||||
homepage = "https://iolanguage.org/";
|
||||
license = licenses.bsd3;
|
||||
|
||||
maintainers = with maintainers; [
|
||||
|
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
||||
buildInputs = [ libmnl ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://www.netfilter.org/projects/libnetfilter_acct/";
|
||||
homepage = "https://www.netfilter.org/projects/libnetfilter_acct/";
|
||||
description = "Userspace library providing interface to extended accounting infrastructure";
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
|
@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
||||
library, you register, configure, enable and disable user-space helpers. This library
|
||||
is used by conntrack-tools.
|
||||
'';
|
||||
homepage = "http://www.netfilter.org/projects/libnetfilter_cthelper/";
|
||||
homepage = "https://www.netfilter.org/projects/libnetfilter_cthelper/";
|
||||
license = lib.licenses.gpl2Plus;
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
|
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
||||
buildInputs = [ libmnl libnfnetlink ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://www.netfilter.org/projects/libnetfilter_queue/";
|
||||
homepage = "https://www.netfilter.org/projects/libnetfilter_queue/";
|
||||
description = "Userspace API to packets queued by the kernel packet filter";
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
|
@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
|
||||
This library is not meant as a public API for application developers.
|
||||
It is only used by other netfilter.org projects, like the aforementioned ones.
|
||||
'';
|
||||
homepage = "http://www.netfilter.org/projects/libnfnetlink/index.html";
|
||||
homepage = "https://www.netfilter.org/projects/libnfnetlink/index.html";
|
||||
license = lib.licenses.gpl2;
|
||||
|
||||
platforms = lib.platforms.linux;
|
||||
|
@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = {
|
||||
description = "The RDF Parser Toolkit";
|
||||
homepage = "http://librdf.org/raptor";
|
||||
homepage = "https://librdf.org/raptor";
|
||||
license = with lib.licenses; [ lgpl21 asl20 ];
|
||||
maintainers = [ lib.maintainers.marcweber ];
|
||||
platforms = lib.platforms.linux;
|
||||
|
@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = {
|
||||
description = "The RDF Parser Toolkit";
|
||||
homepage = "http://librdf.org/raptor";
|
||||
homepage = "https://librdf.org/raptor";
|
||||
license = with lib.licenses; [ lgpl21 asl20 ];
|
||||
maintainers = with lib.maintainers; [ marcweber ];
|
||||
platforms = lib.platforms.unix;
|
||||
|
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = {
|
||||
description = "Library that handles Resource Description Framework (RDF)";
|
||||
homepage = "http://librdf.org/rasqal";
|
||||
homepage = "https://librdf.org/rasqal";
|
||||
license = with lib.licenses; [ lgpl21 asl20 ];
|
||||
maintainers = with lib.maintainers; [ marcweber ];
|
||||
platforms = lib.platforms.unix;
|
||||
|
@ -40,7 +40,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "C libraries that provide support for the Resource Description Framework (RDF)";
|
||||
homepage = "http://librdf.org/";
|
||||
homepage = "https://librdf.org/";
|
||||
platforms = platforms.unix;
|
||||
license = licenses.asl20;
|
||||
};
|
||||
|
@ -7,7 +7,7 @@ stdenv.mkDerivation {
|
||||
sha256 = "0y0vc9n4rfbimjp28nx4kdfzz08j5xymh5xjy84l9fhfac5z5a0x";
|
||||
};
|
||||
meta = with lib; {
|
||||
homepage = "http://www.libroxml.net/";
|
||||
homepage = "https://www.libroxml.net/";
|
||||
description = "This library is minimum, easy-to-use, C implementation for xml file parsing";
|
||||
license = licenses.lgpl3;
|
||||
platforms = platforms.unix;
|
||||
|
@ -37,7 +37,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://libvmi.com/";
|
||||
homepage = "https://libvmi.com/";
|
||||
description = "A C library for virtual machine introspection";
|
||||
longDescription = ''
|
||||
LibVMI is a C library with Python bindings that makes it easy to monitor the low-level
|
||||
|
@ -229,7 +229,7 @@ stdenv.mkDerivation rec {
|
||||
dontStrip = stdenv.hostPlatform != stdenv.buildPlatform;
|
||||
|
||||
meta = {
|
||||
homepage = "http://qt-project.org/";
|
||||
homepage = "https://qt-project.org/";
|
||||
description = "A cross-platform application framework for C++";
|
||||
license = lib.licenses.lgpl21Plus; # or gpl3
|
||||
maintainers = with lib.maintainers; [ orivej lovek323 phreedom sander ];
|
||||
|
@ -47,7 +47,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "A simple and easy-to-use library to enjoy videogames programming";
|
||||
homepage = "http://www.raylib.com/";
|
||||
homepage = "https://www.raylib.com/";
|
||||
license = licenses.zlib;
|
||||
maintainers = with maintainers; [ adamlwgriffiths ];
|
||||
platforms = platforms.linux;
|
||||
|
@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = {
|
||||
description = "The Snack Sound Toolkit (Tcl)";
|
||||
homepage = "http://www.speech.kth.se/snack/";
|
||||
homepage = "https://www.speech.kth.se/snack/";
|
||||
license = lib.licenses.gpl2;
|
||||
broken = true;
|
||||
};
|
||||
|
6
pkgs/development/node-packages/node-packages.nix
generated
6
pkgs/development/node-packages/node-packages.nix
generated
@ -89128,7 +89128,7 @@ in
|
||||
buildInputs = globalBuildInputs;
|
||||
meta = {
|
||||
description = "Utility to inline images, CSS and JavaScript for a web page - useful for mobile sites";
|
||||
homepage = "http://github.com/remy/inliner";
|
||||
homepage = "https://github.com/remy/inliner";
|
||||
license = "MIT";
|
||||
};
|
||||
production = true;
|
||||
@ -90816,7 +90816,7 @@ in
|
||||
buildInputs = globalBuildInputs;
|
||||
meta = {
|
||||
description = "Static analysis tool for JavaScript";
|
||||
homepage = "http://jshint.com/";
|
||||
homepage = "https://jshint.com/";
|
||||
license = "MIT";
|
||||
};
|
||||
production = true;
|
||||
@ -103950,7 +103950,7 @@ in
|
||||
buildInputs = globalBuildInputs;
|
||||
meta = {
|
||||
description = "Production process manager for Node.JS applications with a built-in load balancer.";
|
||||
homepage = "http://pm2.keymetrics.io/";
|
||||
homepage = "https://pm2.keymetrics.io/";
|
||||
license = "AGPL-3.0";
|
||||
};
|
||||
production = true;
|
||||
|
@ -42,7 +42,7 @@ stdenv.mkDerivation {
|
||||
|
||||
meta = with lib; {
|
||||
description = "A library for CUDF format";
|
||||
homepage = "http://www.mancoosi.org/cudf/";
|
||||
homepage = "https://www.mancoosi.org/cudf/";
|
||||
downloadPage = "https://gforge.inria.fr/projects/cudf/";
|
||||
license = licenses.lgpl3;
|
||||
maintainers = with maintainers; [ superherointj ];
|
||||
|
@ -46,7 +46,7 @@ buildDunePackage rec {
|
||||
meta = with lib; {
|
||||
description = "Dose library (part of Mancoosi tools)";
|
||||
downloadPage = "https://gitlab.com/irill/dose3/";
|
||||
homepage = "http://www.mancoosi.org/software/";
|
||||
homepage = "https://www.mancoosi.org/software/";
|
||||
license = licenses.lgpl3Plus;
|
||||
longDescription = ''
|
||||
The dose suite provides libraries for handling package meta-data, and various tools for analyzing package relationships in a large package repository.
|
||||
|
@ -11,7 +11,7 @@ buildPythonPackage rec {
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://ninthtest.info/python-autologging/";
|
||||
homepage = "https://ninthtest.info/python-autologging/";
|
||||
description = "Easier logging and tracing for Python classes";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ twey ];
|
||||
|
@ -28,7 +28,7 @@ buildPythonPackage rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "Scientific reports with embedded python computations with reST, LaTeX or markdown";
|
||||
homepage = "http://mpastell.com/pweave/";
|
||||
homepage = "https://mpastell.com/pweave/";
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
|
||||
|
@ -16,7 +16,7 @@ buildPythonPackage {
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://pyfantom.ni.fr.eu.org/";
|
||||
homepage = "https://pyfantom.ni.fr.eu.org/";
|
||||
description = "Wrapper for the LEGO Mindstorms Fantom Driver";
|
||||
license = licenses.gpl2;
|
||||
};
|
||||
|
@ -55,7 +55,7 @@ buildPythonPackage rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "Scientific Graphics and GUI Library for Python";
|
||||
homepage = "http://www.pyqtgraph.org/";
|
||||
homepage = "https://www.pyqtgraph.org/";
|
||||
changelog = "https://github.com/pyqtgraph/pyqtgraph/blob/master/CHANGELOG";
|
||||
license = licenses.mit;
|
||||
platforms = platforms.unix;
|
||||
|
@ -16,7 +16,7 @@ buildPythonPackage rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "Pythonic API to Linux uinput kernel module";
|
||||
homepage = "http://tjjr.fi/sw/python-uinput/";
|
||||
homepage = "https://tjjr.fi/sw/python-uinput/";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
};
|
||||
|
@ -32,7 +32,7 @@ buildPythonPackage rec {
|
||||
pythonImportsCheck = [ "vispy" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://vispy.org/index.html";
|
||||
homepage = "https://vispy.org/index.html";
|
||||
description = "Interactive scientific visualization in Python";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ goertzenator ];
|
||||
|
@ -19,7 +19,7 @@ buildPythonPackage rec {
|
||||
propagatedBuildInputs = [ xstatic-jquery ];
|
||||
|
||||
meta = with lib;{
|
||||
homepage = "http://plugins.jquery.com/project/jQuery-File-Upload";
|
||||
homepage = "https://plugins.jquery.com/project/jQuery-File-Upload";
|
||||
description = "jquery-file-upload packaged static files for python";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ makefu ];
|
||||
|
@ -66,7 +66,7 @@ let
|
||||
with a lot of ergonomic improvements and configurability
|
||||
that may be familiar to people coming from IDEs or other REPLs such as IPython or Zsh.
|
||||
'';
|
||||
homepage = "http://www.lihaoyi.com/Ammonite/";
|
||||
homepage = "https://www.lihaoyi.com/Ammonite/";
|
||||
license = licenses.mit;
|
||||
platforms = platforms.all;
|
||||
maintainers = [ maintainers.nequissimus ];
|
||||
|
@ -109,7 +109,7 @@ stdenv.mkDerivation {
|
||||
for cost- sensitive, low-power Lattice FPGA architectures. It is the
|
||||
next-generation replacement for ispLEVER.
|
||||
'';
|
||||
homepage = "http://www.latticesemi.com/latticediamond";
|
||||
homepage = "https://www.latticesemi.com/latticediamond";
|
||||
license = lib.licenses.unfree;
|
||||
maintainers = with lib.maintainers; [ q3k ];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
let
|
||||
pname = "camlidl";
|
||||
webpage = "http://caml.inria.fr/pub/old_caml_site/camlidl/";
|
||||
webpage = "https://caml.inria.fr/pub/old_caml_site/camlidl/";
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${pname}-${version}";
|
||||
|
2
pkgs/development/web/remarkjs/node-packages.nix
generated
2
pkgs/development/web/remarkjs/node-packages.nix
generated
@ -3674,7 +3674,7 @@ in
|
||||
buildInputs = globalBuildInputs;
|
||||
meta = {
|
||||
description = "Static analysis tool for JavaScript";
|
||||
homepage = "http://jshint.com/";
|
||||
homepage = "https://jshint.com/";
|
||||
license = "MIT";
|
||||
};
|
||||
production = true;
|
||||
|
@ -53,7 +53,7 @@ in stdenv.mkDerivation {
|
||||
</para>
|
||||
'';
|
||||
|
||||
homepage = "http://www.freedroid.org/";
|
||||
homepage = "https://www.freedroid.org/";
|
||||
|
||||
license = licenses.gpl2Plus;
|
||||
|
||||
|
@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "Firmware for Broadcom WIDCOMM® Bluetooth devices";
|
||||
homepage = "http://www.catalog.update.microsoft.com/Search.aspx?q=Broadcom+bluetooth";
|
||||
homepage = "https://www.catalog.update.microsoft.com/Search.aspx?q=Broadcom+bluetooth";
|
||||
license = licenses.unfree;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ zraexy ];
|
||||
|
@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
|
||||
version = "7.14";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://ipset.netfilter.org/${pname}-${version}.tar.bz2";
|
||||
url = "https://ipset.netfilter.org/${pname}-${version}.tar.bz2";
|
||||
sha256 = "sha256-JwMcNtNVkHAxzOQeZVU+mbsBPXYvzVU5L2PX6Edg+QA=";
|
||||
};
|
||||
|
||||
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
||||
configureFlags = [ "--with-kmod=no" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://ipset.netfilter.org/";
|
||||
homepage = "https://ipset.netfilter.org/";
|
||||
description = "Administration tool for IP sets";
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
|
@ -24,7 +24,7 @@ stdenv.mkDerivation {
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "http://qt-project.org/wiki/jom";
|
||||
homepage = "https://qt-project.org/wiki/jom";
|
||||
description = "Clone of nmake supporting multiple independent commands in parallel";
|
||||
license = lib.licenses.gpl2Plus; # Explicitly, GPLv2 or GPLv3, but not later.
|
||||
};
|
||||
|
@ -54,7 +54,7 @@ stdenv.mkDerivation rec {
|
||||
# needs to find a local perl module during build
|
||||
PERL_USE_UNSAFE_INC = "1";
|
||||
|
||||
# TODO: tests are failing http://munin-monitoring.org/ticket/1390#comment:1
|
||||
# TODO: tests are failing https://munin-monitoring.org/ticket/1390#comment:1
|
||||
# NOTE: important, test command always exits with 0, think of a way to abort the build once tests pass
|
||||
doCheck = false;
|
||||
|
||||
@ -134,7 +134,7 @@ stdenv.mkDerivation rec {
|
||||
interface. Munin can help analyze resource trends and 'what just happened
|
||||
to kill our performance?' problems.
|
||||
'';
|
||||
homepage = "http://munin-monitoring.org/";
|
||||
homepage = "https://munin-monitoring.org/";
|
||||
license = licenses.gpl2;
|
||||
maintainers = [ maintainers.bjornfor ];
|
||||
platforms = platforms.linux;
|
||||
|
@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "Flash-optimized, in-memory, NoSQL database";
|
||||
homepage = "http://aerospike.com/";
|
||||
homepage = "https://aerospike.com/";
|
||||
license = licenses.agpl3;
|
||||
platforms = [ "x86_64-linux" ];
|
||||
maintainers = with maintainers; [ kalbasit ];
|
||||
|
@ -30,7 +30,7 @@ stdenv.mkDerivation {
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://www.kermitproject.org/ck90.html";
|
||||
homepage = "https://www.kermitproject.org/ck90.html";
|
||||
description = "Portable Scriptable Network and Serial Communication Software";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ pSub ];
|
||||
|
@ -52,7 +52,7 @@ buildGoModule rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "Cross-distribution system package compiler";
|
||||
homepage = "http://holocm.org/";
|
||||
homepage = "https://holocm.org/";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ SuperSandro2000 ];
|
||||
};
|
||||
|
@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
||||
plausibility of word sequences by using a recurrent neural network
|
||||
language model (RNNLM).
|
||||
'';
|
||||
homepage = "http://nlp.ist.i.kyoto-u.ac.jp/index.php?JUMAN++";
|
||||
homepage = "https://nlp.ist.i.kyoto-u.ac.jp/index.php?JUMAN++";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ mt-caret ];
|
||||
platforms = platforms.all;
|
||||
|
@ -7,7 +7,7 @@ stdenv.mkDerivation rec {
|
||||
name = "${appname}-${version}";
|
||||
|
||||
src = fetchzip {
|
||||
url = "http://getpopfile.org/downloads/${appname}-${version}.zip";
|
||||
url = "https://getpopfile.org/downloads/${appname}-${version}.zip";
|
||||
sha256 = "0gcib9j7zxk8r2vb5dbdz836djnyfza36vi8215nxcdfx1xc7l63";
|
||||
stripRoot = false;
|
||||
};
|
||||
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
buildInputs = (with perlPackages; [
|
||||
## These are all taken from the popfile documentation as applicable to Linux
|
||||
## http://getpopfile.org/docs/howtos:allplatformsrequireperl
|
||||
## https://getpopfile.org/docs/howtos:allplatformsrequireperl
|
||||
perl
|
||||
DBI
|
||||
DBDSQLite
|
||||
@ -54,7 +54,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
# Should work on macOS, but havent tested it.
|
||||
# Windows support is more complicated.
|
||||
# http://getpopfile.org/docs/faq:systemrequirements
|
||||
# https://getpopfile.org/docs/faq:systemrequirements
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -14,7 +14,7 @@ pythonPackages.buildPythonApplication rec {
|
||||
|
||||
meta = {
|
||||
description = "Tool to record VNC sessions to Flash Video";
|
||||
homepage = "http://www.unixuser.org/~euske/python/vnc2flv/";
|
||||
homepage = "https://www.unixuser.org/~euske/python/vnc2flv/";
|
||||
license = lib.licenses.mit;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user