treewide: fix redirected urls
According to https://repology.org/repository/nix_unstable/problems, we have a lot of packages that have http links that redirect to https as their homepage. This commit updates all these packages to use the https links as their homepage. The following script was used to make these updates: ``` curl https://repology.org/api/v1/repository/nix_unstable/problems \ | jq '.[] | .problem' -r \ | rg 'Homepage link "(.+)" is a permanent redirect to "(.+)" and should be updated' --replace 's@$1@$2@' \ | sort | uniq > script.sed find -name '*.nix' | xargs -P4 -- sed -f script.sed -i ```
This commit is contained in:
parent
50c3ac29ac
commit
593e11fd94
@ -4,7 +4,7 @@ stdenv.mkDerivation rec {
|
|||||||
name = "jquery-ui-1.11.4";
|
name = "jquery-ui-1.11.4";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://jqueryui.com/resources/download/${name}.zip";
|
url = "https://jqueryui.com/resources/download/${name}.zip";
|
||||||
sha256 = "0ciyaj1acg08g8hpzqx6whayq206fvf4whksz2pjgxlv207lqgjh";
|
sha256 = "0ciyaj1acg08g8hpzqx6whayq206fvf4whksz2pjgxlv207lqgjh";
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://jqueryui.com/;
|
homepage = https://jqueryui.com/;
|
||||||
description = "A library of JavaScript widgets and effects";
|
description = "A library of JavaScript widgets and effects";
|
||||||
platforms = stdenv.lib.platforms.all;
|
platforms = stdenv.lib.platforms.all;
|
||||||
};
|
};
|
||||||
|
@ -98,8 +98,8 @@ in {
|
|||||||
will be merged into these options by RabbitMQ at runtime to
|
will be merged into these options by RabbitMQ at runtime to
|
||||||
form the final configuration.
|
form the final configuration.
|
||||||
|
|
||||||
See http://www.rabbitmq.com/configure.html#config-items
|
See https://www.rabbitmq.com/configure.html#config-items
|
||||||
For the distinct formats, see http://www.rabbitmq.com/configure.html#config-file-formats
|
For the distinct formats, see https://www.rabbitmq.com/configure.html#config-file-formats
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -116,8 +116,8 @@ in {
|
|||||||
The contents of this option will be merged into the <literal>configItems</literal>
|
The contents of this option will be merged into the <literal>configItems</literal>
|
||||||
by RabbitMQ at runtime to form the final configuration.
|
by RabbitMQ at runtime to form the final configuration.
|
||||||
|
|
||||||
See the second table on http://www.rabbitmq.com/configure.html#config-items
|
See the second table on https://www.rabbitmq.com/configure.html#config-items
|
||||||
For the distinct formats, see http://www.rabbitmq.com/configure.html#config-file-formats
|
For the distinct formats, see https://www.rabbitmq.com/configure.html#config-file-formats
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -47,7 +47,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "View and analyse contents of music audio files";
|
description = "View and analyse contents of music audio files";
|
||||||
homepage = http://www.sonicvisualiser.org/;
|
homepage = https://www.sonicvisualiser.org/;
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
maintainers = [ maintainers.goibhniu maintainers.marcweber ];
|
maintainers = [ maintainers.goibhniu maintainers.marcweber ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
@ -93,7 +93,7 @@ with stdenv.lib; stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Open-source virtual modular synthesizer";
|
description = "Open-source virtual modular synthesizer";
|
||||||
homepage = http://vcvrack.com/;
|
homepage = https://vcvrack.com/;
|
||||||
# The source is BSD-3 licensed, some of the art is CC-BY-NC 4.0 or under a
|
# The source is BSD-3 licensed, some of the art is CC-BY-NC 4.0 or under a
|
||||||
# no-derivatives clause
|
# no-derivatives clause
|
||||||
license = with licenses; [ bsd3 cc-by-nc-40 unfreeRedistributable ];
|
license = with licenses; [ bsd3 cc-by-nc-40 unfreeRedistributable ];
|
||||||
|
@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Virtual MIDI keyboard";
|
description = "Virtual MIDI keyboard";
|
||||||
homepage = http://www.alsa-project.org/~tiwai/alsa.html;
|
homepage = https://www.alsa-project.org/~tiwai/alsa.html;
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = [ maintainers.goibhniu ];
|
maintainers = [ maintainers.goibhniu ];
|
||||||
|
@ -39,7 +39,7 @@ stdenv.mkDerivation rec {
|
|||||||
signatures using different participants for the same tx outputs on
|
signatures using different participants for the same tx outputs on
|
||||||
opposing forks.
|
opposing forks.
|
||||||
'';
|
'';
|
||||||
homepage = http://wownero.org/;
|
homepage = https://wownero.org/;
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = with maintainers; [ fuwa ];
|
maintainers = with maintainers; [ fuwa ];
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
ename = "org";
|
ename = "org";
|
||||||
version = "20191203";
|
version = "20191203";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://orgmode.org/elpa/org-20191203.tar";
|
url = "https://orgmode.org/elpa/org-20191203.tar";
|
||||||
sha256 = "1fcgiswjnqmfzx3xkmlqyyhc4a8ms07vdsv7nkizgxqdh9hwfm2q";
|
sha256 = "1fcgiswjnqmfzx3xkmlqyyhc4a8ms07vdsv7nkizgxqdh9hwfm2q";
|
||||||
};
|
};
|
||||||
packageRequires = [];
|
packageRequires = [];
|
||||||
@ -21,7 +21,7 @@
|
|||||||
ename = "org-plus-contrib";
|
ename = "org-plus-contrib";
|
||||||
version = "20191203";
|
version = "20191203";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://orgmode.org/elpa/org-plus-contrib-20191203.tar";
|
url = "https://orgmode.org/elpa/org-plus-contrib-20191203.tar";
|
||||||
sha256 = "1kvw95492acb7gqn8gxbp1vg4fyw80w43yvflxnfxdf6jnnw2wah";
|
sha256 = "1kvw95492acb7gqn8gxbp1vg4fyw80w43yvflxnfxdf6jnnw2wah";
|
||||||
};
|
};
|
||||||
packageRequires = [];
|
packageRequires = [];
|
||||||
|
@ -24,7 +24,7 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Insert org-mode links to items selected in various Mac apps";
|
description = "Insert org-mode links to items selected in various Mac apps";
|
||||||
homepage = http://orgmode.org/worg/org-contrib/org-mac-link.html;
|
homepage = https://orgmode.org/worg/org-contrib/org-mac-link.html;
|
||||||
license = stdenv.lib.licenses.gpl3;
|
license = stdenv.lib.licenses.gpl3;
|
||||||
platforms = stdenv.lib.platforms.all;
|
platforms = stdenv.lib.platforms.all;
|
||||||
};
|
};
|
||||||
|
@ -80,7 +80,7 @@ mkDerivationWith python3Packages.buildPythonApplication rec {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Photo and video importer for cameras, phones, and memory cards";
|
description = "Photo and video importer for cameras, phones, and memory cards";
|
||||||
homepage = http://www.damonlynch.net/rapid/;
|
homepage = https://www.damonlynch.net/rapid/;
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = with maintainers; [ jfrankenau ];
|
maintainers = with maintainers; [ jfrankenau ];
|
||||||
|
@ -38,7 +38,7 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Screenshot and annotation tool";
|
description = "Screenshot and annotation tool";
|
||||||
homepage = http://shutter-project.org/;
|
homepage = https://shutter-project.org/;
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
maintainers = [ maintainers.bjornfor ];
|
maintainers = [ maintainers.bjornfor ];
|
||||||
|
@ -30,7 +30,7 @@ py.buildPythonApplication {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A Password Safe V3 compatible password vault";
|
description = "A Password Safe V3 compatible password vault";
|
||||||
homepage = http://www.christoph-sommer.de/loxodo/;
|
homepage = https://www.christoph-sommer.de/loxodo/;
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
|
@ -82,7 +82,7 @@ stdenv.mkDerivation rec {
|
|||||||
instructions for your 3D printer. It cuts the model into horizontal
|
instructions for your 3D printer. It cuts the model into horizontal
|
||||||
slices (layers), generates toolpaths to fill them and calculates the
|
slices (layers), generates toolpaths to fill them and calculates the
|
||||||
amount of material to be extruded.'';
|
amount of material to be extruded.'';
|
||||||
homepage = http://slic3r.org/;
|
homepage = https://slic3r.org/;
|
||||||
license = licenses.agpl3;
|
license = licenses.agpl3;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = with maintainers; [ bjornfor the-kenny ];
|
maintainers = with maintainers; [ bjornfor the-kenny ];
|
||||||
|
@ -101,7 +101,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "The TeamSpeak voice communication tool";
|
description = "The TeamSpeak voice communication tool";
|
||||||
homepage = http://teamspeak.com/;
|
homepage = https://teamspeak.com/;
|
||||||
license = {
|
license = {
|
||||||
fullName = "Teamspeak client license";
|
fullName = "Teamspeak client license";
|
||||||
url = http://sales.teamspeakusa.com/licensing.php;
|
url = http://sales.teamspeakusa.com/licensing.php;
|
||||||
|
@ -40,7 +40,7 @@ mkDerivation rec {
|
|||||||
The binary will not run when moved onto non-NixOS systems; use patchelf
|
The binary will not run when moved onto non-NixOS systems; use patchelf
|
||||||
to fix its runtime dependenices.
|
to fix its runtime dependenices.
|
||||||
'';
|
'';
|
||||||
homepage = http://wraith.botpack.net/;
|
homepage = https://wraith.botpack.net/;
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
maintainers = with maintainers; [ elitak ];
|
maintainers = with maintainers; [ elitak ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
@ -37,7 +37,7 @@ stdenv.mkDerivation (rec {
|
|||||||
dontStrip = !ocaml.nativeCompilers;
|
dontStrip = !ocaml.nativeCompilers;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://www.cis.upenn.edu/~bcpierce/unison/;
|
homepage = https://www.cis.upenn.edu/~bcpierce/unison/;
|
||||||
description = "Bidirectional file synchronizer";
|
description = "Bidirectional file synchronizer";
|
||||||
license = stdenv.lib.licenses.gpl3Plus;
|
license = stdenv.lib.licenses.gpl3Plus;
|
||||||
maintainers = with stdenv.lib.maintainers; [viric];
|
maintainers = with stdenv.lib.maintainers; [viric];
|
||||||
|
@ -12,7 +12,7 @@ python3Packages.buildPythonApplication rec {
|
|||||||
version = "0.72.0";
|
version = "0.72.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://zim-wiki.org/downloads/${name}.tar.gz";
|
url = "https://zim-wiki.org/downloads/${name}.tar.gz";
|
||||||
sha256 = "1n3gmg7g86s8iwcx0i7rvvfdfs1fzmc9awr9qzjd2rckw4bkxad1";
|
sha256 = "1n3gmg7g86s8iwcx0i7rvvfdfs1fzmc9awr9qzjd2rckw4bkxad1";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@ pythonPackages.buildPythonPackage rec {
|
|||||||
meta = {
|
meta = {
|
||||||
description = "a toolkit for working with nanopore sequencing data from Oxford Nanopore";
|
description = "a toolkit for working with nanopore sequencing data from Oxford Nanopore";
|
||||||
license = stdenv.lib.licenses.mit;
|
license = stdenv.lib.licenses.mit;
|
||||||
homepage = http://poretools.readthedocs.io/en/latest/;
|
homepage = https://poretools.readthedocs.io/en/latest/;
|
||||||
maintainers = [stdenv.lib.maintainers.rybern];
|
maintainers = [stdenv.lib.maintainers.rybern];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -46,7 +46,7 @@ mkDerivation rec {
|
|||||||
A GUI ground control station for autonomous vehicles using the MAVLink protocol.
|
A GUI ground control station for autonomous vehicles using the MAVLink protocol.
|
||||||
Includes support for the APM and PX4 based controllers.
|
Includes support for the APM and PX4 based controllers.
|
||||||
'';
|
'';
|
||||||
homepage = http://ardupilot.org/planner2/;
|
homepage = https://ardupilot.org/planner2/;
|
||||||
license = lib.licenses.gpl3;
|
license = lib.licenses.gpl3;
|
||||||
maintainers = with lib.maintainers; [ wucke13 ];
|
maintainers = with lib.maintainers; [ wucke13 ];
|
||||||
};
|
};
|
||||||
|
@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://subgit.com/download/${name}.zip";
|
url = "https://subgit.com/download/${name}.zip";
|
||||||
sha256 = "0dwd2kymmprci3b61ayr6axzlkc8zgbc40jqxvvyzschfxw9y0v5";
|
sha256 = "0dwd2kymmprci3b61ayr6axzlkc8zgbc40jqxvvyzschfxw9y0v5";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -36,7 +36,7 @@ in
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://www.redmine.org/;
|
homepage = https://www.redmine.org/;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = [ maintainers.aanderse ];
|
maintainers = [ maintainers.aanderse ];
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
|
@ -86,7 +86,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "GUI for Git, Mercurial, Subversion";
|
description = "GUI for Git, Mercurial, Subversion";
|
||||||
homepage = http://www.syntevo.com/smartgit/;
|
homepage = https://www.syntevo.com/smartgit/;
|
||||||
license = licenses.unfree;
|
license = licenses.unfree;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = with stdenv.lib.maintainers; [ jraygauthier ];
|
maintainers = with stdenv.lib.maintainers; [ jraygauthier ];
|
||||||
|
@ -31,7 +31,7 @@ mkDerivation rec {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A screen recorder for Linux";
|
description = "A screen recorder for Linux";
|
||||||
homepage = http://www.maartenbaert.be/simplescreenrecorder;
|
homepage = https://www.maartenbaert.be/simplescreenrecorder;
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
platforms = [ "x86_64-linux" ];
|
platforms = [ "x86_64-linux" ];
|
||||||
maintainers = [ maintainers.goibhniu ];
|
maintainers = [ maintainers.goibhniu ];
|
||||||
|
@ -17,7 +17,7 @@ in fetchzip {
|
|||||||
sha256 = "0x0r07nax68cmz7490x2crzzgdg4j8fg63wppcmjqm0230bggq2z";
|
sha256 = "0x0r07nax68cmz7490x2crzzgdg4j8fg63wppcmjqm0230bggq2z";
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = http://damieng.com/blog/tag/envy-code-r;
|
homepage = https://damieng.com/blog/tag/envy-code-r;
|
||||||
description = "Free scalable coding font by DamienG";
|
description = "Free scalable coding font by DamienG";
|
||||||
license = licenses.unfree;
|
license = licenses.unfree;
|
||||||
maintainers = [ maintainers.lyt ];
|
maintainers = [ maintainers.lyt ];
|
||||||
|
@ -5,7 +5,7 @@ let
|
|||||||
in
|
in
|
||||||
fetchzip {
|
fetchzip {
|
||||||
name = "ultimate-oldschool-pc-font-pack-${version}";
|
name = "ultimate-oldschool-pc-font-pack-${version}";
|
||||||
url = "http://int10h.org/oldschool-pc-fonts/download/ultimate_oldschool_pc_font_pack_v${version}.zip";
|
url = "https://int10h.org/oldschool-pc-fonts/download/ultimate_oldschool_pc_font_pack_v${version}.zip";
|
||||||
sha256 = "0hid4dgqfy2w26734vcw2rxmpacd9vd1r2qpdr9ww1n3kgc92k9y";
|
sha256 = "0hid4dgqfy2w26734vcw2rxmpacd9vd1r2qpdr9ww1n3kgc92k9y";
|
||||||
|
|
||||||
postFetch= ''
|
postFetch= ''
|
||||||
@ -15,7 +15,7 @@ fetchzip {
|
|||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "The Ultimate Oldschool PC Font Pack (TTF Fonts)";
|
description = "The Ultimate Oldschool PC Font Pack (TTF Fonts)";
|
||||||
homepage = "http://int10h.org/oldschool-pc-fonts/";
|
homepage = "https://int10h.org/oldschool-pc-fonts/";
|
||||||
license = licenses.cc-by-sa-40;
|
license = licenses.cc-by-sa-40;
|
||||||
maintainers = [ maintainers.endgame ];
|
maintainers = [ maintainers.endgame ];
|
||||||
};
|
};
|
||||||
|
@ -20,6 +20,6 @@ stdenv.mkDerivation rec {
|
|||||||
description = "Dictionary plugin for Xfce panel";
|
description = "Dictionary plugin for Xfce panel";
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = [ maintainers.AndersonTorres ];
|
maintainers = [ maintainers.AndersonTorres ];
|
||||||
broken = true; # see http://goodies.xfce.org/projects/panel-plugins/xfce4-dict-plugin
|
broken = true; # see https://goodies.xfce.org/projects/panel-plugins/xfce4-dict-plugin
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -45,7 +45,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A translator of declarative Datalog programs into the C++ language";
|
description = "A translator of declarative Datalog programs into the C++ language";
|
||||||
homepage = "http://souffle-lang.github.io/";
|
homepage = "https://souffle-lang.github.io/";
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
maintainers = with maintainers; [ thoughtpolice copumpkin wchresta ];
|
maintainers = with maintainers; [ thoughtpolice copumpkin wchresta ];
|
||||||
license = licenses.upl;
|
license = licenses.upl;
|
||||||
|
@ -102,7 +102,7 @@ stdenv.mkDerivation rec {
|
|||||||
libraries support applications from web servers and databases to
|
libraries support applications from web servers and databases to
|
||||||
GUIs and charts.
|
GUIs and charts.
|
||||||
'';
|
'';
|
||||||
homepage = http://racket-lang.org/;
|
homepage = https://racket-lang.org/;
|
||||||
license = with licenses; [ asl20 /* or */ mit ];
|
license = with licenses; [ asl20 /* or */ mit ];
|
||||||
maintainers = with maintainers; [ kkallio henrytill vrthra ];
|
maintainers = with maintainers; [ kkallio henrytill vrthra ];
|
||||||
platforms = [ "x86_64-darwin" "x86_64-linux" ];
|
platforms = [ "x86_64-darwin" "x86_64-linux" ];
|
||||||
|
@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
|
|||||||
version = "1.16.0";
|
version = "1.16.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://lv2plug.in/spec/${pname}-${version}.tar.bz2";
|
url = "https://lv2plug.in/spec/${pname}-${version}.tar.bz2";
|
||||||
sha256 = "1ppippbpdpv13ibs06b0bixnazwfhiw0d0ja6hx42jnkgdyp5hyy";
|
sha256 = "1ppippbpdpv13ibs06b0bixnazwfhiw0d0ja6hx42jnkgdyp5hyy";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "2D physics engine";
|
description = "2D physics engine";
|
||||||
homepage = http://box2d.org/;
|
homepage = https://box2d.org/;
|
||||||
maintainers = [ maintainers.raskin ];
|
maintainers = [ maintainers.raskin ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
license = licenses.zlib;
|
license = licenses.zlib;
|
||||||
|
@ -4,7 +4,7 @@ stdenv.mkDerivation rec {
|
|||||||
name = "levmar-2.6";
|
name = "levmar-2.6";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://www.ics.forth.gr/~lourakis/levmar/${name}.tgz";
|
url = "https://www.ics.forth.gr/~lourakis/levmar/${name}.tgz";
|
||||||
sha256 = "1mxsjip9x782z6qa6k5781wjwpvj5aczrn782m9yspa7lhgfzx1v";
|
sha256 = "1mxsjip9x782z6qa6k5781wjwpvj5aczrn782m9yspa7lhgfzx1v";
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "ANSI C implementations of Levenberg-Marquardt, usable also from C++";
|
description = "ANSI C implementations of Levenberg-Marquardt, usable also from C++";
|
||||||
homepage = http://www.ics.forth.gr/~lourakis/levmar/;
|
homepage = https://www.ics.forth.gr/~lourakis/levmar/;
|
||||||
license = stdenv.lib.licenses.gpl2Plus;
|
license = stdenv.lib.licenses.gpl2Plus;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = stdenv.lib.platforms.linux;
|
||||||
};
|
};
|
||||||
|
@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
|
|||||||
version = "3.8.8";
|
version = "3.8.8";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://www.libxl.com/download/${pname}-lin-${version}.tar.gz";
|
url = "https://www.libxl.com/download/${pname}-lin-${version}.tar.gz";
|
||||||
sha256 = "08jarfcl8l5mrmkx6bcifi3ghkaja9isz77zgggl84yl66js5pc3";
|
sha256 = "08jarfcl8l5mrmkx6bcifi3ghkaja9isz77zgggl84yl66js5pc3";
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A library for parsing Excel files";
|
description = "A library for parsing Excel files";
|
||||||
homepage = "http://www.libxl.com/";
|
homepage = "https://www.libxl.com/";
|
||||||
license = licenses.unfree;
|
license = licenses.unfree;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = with maintainers; [ ];
|
maintainers = with maintainers; [ ];
|
||||||
|
@ -23,7 +23,7 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "RabbitMQ Java client library which allows Java code to interface to AMQP servers";
|
description = "RabbitMQ Java client library which allows Java code to interface to AMQP servers";
|
||||||
homepage = http://www.rabbitmq.com/java-client.html;
|
homepage = https://www.rabbitmq.com/java-client.html;
|
||||||
license = with licenses; [ mpl11 gpl2 ];
|
license = with licenses; [ mpl11 gpl2 ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
|
@ -9,7 +9,7 @@ stdenv.mkDerivation {
|
|||||||
};
|
};
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://www.arg0.net/rlog;
|
homepage = https://www.arg0.net/rlog;
|
||||||
description = "A C++ logging library used in encfs";
|
description = "A C++ logging library used in encfs";
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = stdenv.lib.platforms.linux;
|
||||||
license = stdenv.lib.licenses.lgpl3;
|
license = stdenv.lib.licenses.lgpl3;
|
||||||
|
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
|||||||
license = stdenv.lib.licenses.asl20 ;
|
license = stdenv.lib.licenses.asl20 ;
|
||||||
maintainers = [stdenv.lib.maintainers.raskin];
|
maintainers = [stdenv.lib.maintainers.raskin];
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = stdenv.lib.platforms.linux;
|
||||||
homepage = http://research.cs.wisc.edu/mist/safefile/;
|
homepage = https://research.cs.wisc.edu/mist/safefile/;
|
||||||
updateWalker = true;
|
updateWalker = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -4,7 +4,7 @@ stdenv.mkDerivation rec {
|
|||||||
name = "shhmsg-1.4.2";
|
name = "shhmsg-1.4.2";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://shh.thathost.com/pub-unix/files/${name}.tar.gz";
|
url = "https://shh.thathost.com/pub-unix/files/${name}.tar.gz";
|
||||||
sha256 = "0ax02fzqpaxr7d30l5xbndy1s5vgg1ag643c7zwiw2wj1czrxil8";
|
sha256 = "0ax02fzqpaxr7d30l5xbndy1s5vgg1ag643c7zwiw2wj1czrxil8";
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A library for displaying messages";
|
description = "A library for displaying messages";
|
||||||
homepage = http://shh.thathost.com/pub-unix/;
|
homepage = https://shh.thathost.com/pub-unix/;
|
||||||
license = licenses.artistic1;
|
license = licenses.artistic1;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
|
@ -4,7 +4,7 @@ stdenv.mkDerivation rec {
|
|||||||
name = "shhopt-1.1.7";
|
name = "shhopt-1.1.7";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://shh.thathost.com/pub-unix/files/${name}.tar.gz";
|
url = "https://shh.thathost.com/pub-unix/files/${name}.tar.gz";
|
||||||
sha256 = "0yd6bl6qw675sxa81nxw6plhpjf9d2ywlm8a5z66zyjf28sl7sds";
|
sha256 = "0yd6bl6qw675sxa81nxw6plhpjf9d2ywlm8a5z66zyjf28sl7sds";
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A library for parsing command line options";
|
description = "A library for parsing command line options";
|
||||||
homepage = http://shh.thathost.com/pub-unix/;
|
homepage = https://shh.thathost.com/pub-unix/;
|
||||||
license = licenses.artistic1;
|
license = licenses.artistic1;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
|
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Compression library that can be used with the hdf5 library";
|
description = "Compression library that can be used with the hdf5 library";
|
||||||
homepage = http://www.hdfgroup.org/doc_resource/SZIP/;
|
homepage = https://www.hdfgroup.org/doc_resource/SZIP/;
|
||||||
license = stdenv.lib.licenses.unfree;
|
license = stdenv.lib.licenses.unfree;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -4,7 +4,7 @@ stdenv.mkDerivation rec {
|
|||||||
name = "tokyotyrant-1.1.41";
|
name = "tokyotyrant-1.1.41";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://fallabs.com/tokyotyrant/${name}.tar.gz";
|
url = "https://fallabs.com/tokyotyrant/${name}.tar.gz";
|
||||||
sha256 = "13xqcinhydqmh7231qlir6pymacjwcf98drybkhd9597kzxp1bs2";
|
sha256 = "13xqcinhydqmh7231qlir6pymacjwcf98drybkhd9597kzxp1bs2";
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
|
|||||||
licensed under the GNU Lesser General Public License.
|
licensed under the GNU Lesser General Public License.
|
||||||
'';
|
'';
|
||||||
|
|
||||||
homepage = http://fallabs.com/tokyotyrant/;
|
homepage = https://fallabs.com/tokyotyrant/;
|
||||||
|
|
||||||
license = stdenv.lib.licenses.lgpl21Plus;
|
license = stdenv.lib.licenses.lgpl21Plus;
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "World Coordinate System Library for Astronomy";
|
description = "World Coordinate System Library for Astronomy";
|
||||||
homepage = http://www.atnf.csiro.au/people/mcalabre/WCS/;
|
homepage = https://www.atnf.csiro.au/people/mcalabre/WCS/;
|
||||||
|
|
||||||
longDescription = ''Library for world coordinate systems for
|
longDescription = ''Library for world coordinate systems for
|
||||||
spherical geometries and their conversion to image coordinate
|
spherical geometries and their conversion to image coordinate
|
||||||
|
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Library for reading and writing ZIM files";
|
description = "Library for reading and writing ZIM files";
|
||||||
homepage = http://www.openzim.org/wiki/Zimlib;
|
homepage = https://www.openzim.org/wiki/Zimlib;
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
maintainers = with maintainers; [ robbinch ];
|
maintainers = with maintainers; [ robbinch ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
@ -1173,7 +1173,7 @@ luautf8 = buildLuarocksPackage {
|
|||||||
propagatedBuildInputs = [ lua ];
|
propagatedBuildInputs = [ lua ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = "http://github.com/starwing/luautf8";
|
homepage = "https://github.com/starwing/luautf8";
|
||||||
description = "A UTF-8 support module for Lua";
|
description = "A UTF-8 support module for Lua";
|
||||||
maintainers = with maintainers; [ pstn ];
|
maintainers = with maintainers; [ pstn ];
|
||||||
license = {
|
license = {
|
||||||
@ -1212,7 +1212,7 @@ lua-yajl = buildLuarocksPackage {
|
|||||||
propagatedBuildInputs = [ lua ];
|
propagatedBuildInputs = [ lua ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = "http://github.com/brimworks/lua-yajl";
|
homepage = "https://github.com/brimworks/lua-yajl";
|
||||||
description = "Integrate the yajl JSON library with Lua.";
|
description = "Integrate the yajl JSON library with Lua.";
|
||||||
maintainers = with maintainers; [ pstn ];
|
maintainers = with maintainers; [ pstn ];
|
||||||
license = {
|
license = {
|
||||||
|
@ -12,7 +12,7 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A very fast JSON encoder/decoder for Python";
|
description = "A very fast JSON encoder/decoder for Python";
|
||||||
homepage = http://ag-projects.com/;
|
homepage = https://ag-projects.com/;
|
||||||
license = licenses.lgpl2;
|
license = licenses.lgpl2;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -23,7 +23,7 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Eventlib bindings for python";
|
description = "Eventlib bindings for python";
|
||||||
homepage = "http://ag-projects.com/";
|
homepage = "https://ag-projects.com/";
|
||||||
license = licenses.lgpl2;
|
license = licenses.lgpl2;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A robust materials analysis code that defines core object representations for structures and molecules";
|
description = "A robust materials analysis code that defines core object representations for structures and molecules";
|
||||||
homepage = http://pymatgen.org/;
|
homepage = https://pymatgen.org/;
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ psyanticy ];
|
maintainers = with maintainers; [ psyanticy ];
|
||||||
};
|
};
|
||||||
|
@ -30,7 +30,7 @@ buildPythonPackage rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://pysqlite.org/;
|
homepage = https://pysqlite.org/;
|
||||||
description = "Python bindings for the SQLite embedded relational database engine";
|
description = "Python bindings for the SQLite embedded relational database engine";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
pysqlite is a DB-API 2.0-compliant database interface for SQLite.
|
pysqlite is a DB-API 2.0-compliant database interface for SQLite.
|
||||||
|
@ -35,7 +35,7 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "SIP SIMPLE implementation for Python";
|
description = "SIP SIMPLE implementation for Python";
|
||||||
homepage = http://sipsimpleclient.org/;
|
homepage = https://sipsimpleclient.org/;
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
maintainers = with maintainers; [ pSub ];
|
maintainers = with maintainers; [ pSub ];
|
||||||
};
|
};
|
||||||
|
@ -5,7 +5,7 @@ buildPythonPackage rec {
|
|||||||
version = "3.2b1";
|
version = "3.2b1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://www.stringtemplate.org/download/${pname}-${version}.tar.gz";
|
url = "https://www.stringtemplate.org/download/${pname}-${version}.tar.gz";
|
||||||
sha256 = "0lbib0l8c1q7i1j610rwcdagymr1idahrql4dkgnm5rzyg2vk3ml";
|
sha256 = "0lbib0l8c1q7i1j610rwcdagymr1idahrql4dkgnm5rzyg2vk3ml";
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -17,7 +17,7 @@ buildPythonPackage rec {
|
|||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://www.stringtemplate.org/;
|
homepage = https://www.stringtemplate.org/;
|
||||||
description = "Text Templating Library";
|
description = "Text Templating Library";
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = stdenv.lib.platforms.linux;
|
||||||
};
|
};
|
||||||
|
@ -52,7 +52,7 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Higher-level text processing, built on spaCy";
|
description = "Higher-level text processing, built on spaCy";
|
||||||
homepage = "http://textacy.readthedocs.io/";
|
homepage = "https://textacy.readthedocs.io/";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = with maintainers; [ rvl ];
|
maintainers = with maintainers; [ rvl ];
|
||||||
};
|
};
|
||||||
|
@ -42,7 +42,7 @@ def test_umap_transform_on_iris()"
|
|||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Uniform Manifold Approximation and Projection";
|
description = "Uniform Manifold Approximation and Projection";
|
||||||
homepage = http://github.com/lmcinnes/umap;
|
homepage = https://github.com/lmcinnes/umap;
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
maintainers = [ maintainers.costrouc ];
|
maintainers = [ maintainers.costrouc ];
|
||||||
};
|
};
|
||||||
|
@ -38,7 +38,7 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Fast implementation of asyncio event loop on top of libuv";
|
description = "Fast implementation of asyncio event loop on top of libuv";
|
||||||
homepage = http://github.com/MagicStack/uvloop;
|
homepage = https://github.com/MagicStack/uvloop;
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = [ maintainers.costrouc ];
|
maintainers = [ maintainers.costrouc ];
|
||||||
};
|
};
|
||||||
|
@ -22,7 +22,7 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A library for deferring decorator actions";
|
description = "A library for deferring decorator actions";
|
||||||
homepage = http://pylonsproject.org/;
|
homepage = https://pylonsproject.org/;
|
||||||
license = licenses.bsd0;
|
license = licenses.bsd0;
|
||||||
maintainers = with maintainers; [ domenkozar ];
|
maintainers = with maintainers; [ domenkozar ];
|
||||||
};
|
};
|
||||||
|
@ -20,7 +20,7 @@ buildPythonPackage rec {
|
|||||||
Think about the ideal way to write a web app.
|
Think about the ideal way to write a web app.
|
||||||
Write the code to make it happen.
|
Write the code to make it happen.
|
||||||
'';
|
'';
|
||||||
homepage = "http://webpy.org/";
|
homepage = "https://webpy.org/";
|
||||||
license = licenses.publicDomain;
|
license = licenses.publicDomain;
|
||||||
maintainers = with maintainers; [ layus ];
|
maintainers = with maintainers; [ layus ];
|
||||||
};
|
};
|
||||||
|
@ -19,7 +19,7 @@ buildPythonPackage rec {
|
|||||||
propagatedBuildInputs = [ xstatic-jquery ];
|
propagatedBuildInputs = [ xstatic-jquery ];
|
||||||
|
|
||||||
meta = with lib;{
|
meta = with lib;{
|
||||||
homepage = http://jqueryui.com/;
|
homepage = https://jqueryui.com/;
|
||||||
description = "jquery-ui packaged static files for python";
|
description = "jquery-ui packaged static files for python";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ makefu ];
|
maintainers = with maintainers; [ makefu ];
|
||||||
|
@ -22,7 +22,7 @@ mkDerivation rec {
|
|||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "DB Browser for SQLite";
|
description = "DB Browser for SQLite";
|
||||||
homepage = http://sqlitebrowser.org/;
|
homepage = https://sqlitebrowser.org/;
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
maintainers = with maintainers; [ ];
|
maintainers = with maintainers; [ ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
|
|||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://swapoff.org/devtodo1.html;
|
homepage = https://swapoff.org/devtodo1.html;
|
||||||
description = "A hierarchical command-line task manager";
|
description = "A hierarchical command-line task manager";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
maintainers = [ maintainers.woffs ];
|
maintainers = [ maintainers.woffs ];
|
||||||
|
@ -89,7 +89,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Software for Saleae logic analyzers";
|
description = "Software for Saleae logic analyzers";
|
||||||
homepage = http://www.saleae.com/;
|
homepage = https://www.saleae.com/;
|
||||||
license = licenses.unfree;
|
license = licenses.unfree;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = [ maintainers.bjornfor ];
|
maintainers = [ maintainers.bjornfor ];
|
||||||
|
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "An inline issue manager";
|
description = "An inline issue manager";
|
||||||
homepage = http://goosecode.com/watson/;
|
homepage = https://goosecode.com/watson/;
|
||||||
license = with licenses; mit;
|
license = with licenses; mit;
|
||||||
maintainers = with maintainers; [ robertodr nicknovitski ];
|
maintainers = with maintainers; [ robertodr nicknovitski ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
@ -4,7 +4,7 @@ stdenv.mkDerivation rec {
|
|||||||
name = "snake4-1.0.14";
|
name = "snake4-1.0.14";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://shh.thathost.com/pub-unix/files/${name}.tar.gz";
|
url = "https://shh.thathost.com/pub-unix/files/${name}.tar.gz";
|
||||||
sha256 = "14cng9l857np42zixp440mbc8y5675frb6lhsds53j1cws9cncw9";
|
sha256 = "14cng9l857np42zixp440mbc8y5675frb6lhsds53j1cws9cncw9";
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A game starring a fruit-eating snake";
|
description = "A game starring a fruit-eating snake";
|
||||||
homepage = http://shh.thathost.com/pub-unix/html/snake4.html;
|
homepage = https://shh.thathost.com/pub-unix/html/snake4.html;
|
||||||
license = licenses.artistic1;
|
license = licenses.artistic1;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
|
@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://springlobby.info/;
|
homepage = https://springlobby.info/;
|
||||||
repositories.git = git://github.com/springlobby/springlobby.git;
|
repositories.git = git://github.com/springlobby/springlobby.git;
|
||||||
description = "Cross-platform lobby client for the Spring RTS project";
|
description = "Cross-platform lobby client for the Spring RTS project";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
|
@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
|
|||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = http://www.stepmania.com/;
|
homepage = https://www.stepmania.com/;
|
||||||
description = "Free dance and rhythm game for Windows, Mac, and Linux";
|
description = "Free dance and rhythm game for Windows, Mac, and Linux";
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
license = licenses.mit; # expat version
|
license = licenses.mit; # expat version
|
||||||
|
@ -20,7 +20,7 @@ let
|
|||||||
in stdenv.mkDerivation {
|
in stdenv.mkDerivation {
|
||||||
name = "${pname}-${version}";
|
name = "${pname}-${version}";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://www.thedarkmod.com/sources/thedarkmod.${version}.src.7z";
|
url = "https://www.thedarkmod.com/sources/thedarkmod.${version}.src.7z";
|
||||||
sha256 = "17wdpip8zvm2njz0xrf7xcxl73hnsc6i83zj18kn8rnjkpy50dd6";
|
sha256 = "17wdpip8zvm2njz0xrf7xcxl73hnsc6i83zj18kn8rnjkpy50dd6";
|
||||||
};
|
};
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -75,7 +75,7 @@ in stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://zandronum.com/;
|
homepage = https://zandronum.com/;
|
||||||
description = "Multiplayer oriented port, based off Skulltag, for Doom and Doom II by id Software";
|
description = "Multiplayer oriented port, based off Skulltag, for Doom and Doom II by id Software";
|
||||||
maintainers = with maintainers; [ lassulus MP2E ];
|
maintainers = with maintainers; [ lassulus MP2E ];
|
||||||
license = licenses.unfreeRedistributable;
|
license = licenses.unfreeRedistributable;
|
||||||
|
@ -46,6 +46,6 @@ in
|
|||||||
maintainers = [ maintainers.simonvandel ];
|
maintainers = [ maintainers.simonvandel ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
license = licenses.unfree;
|
license = licenses.unfree;
|
||||||
homepage = http://support.sundtek.com/index.php/topic,1573.0.html;
|
homepage = https://support.sundtek.com/index.php/topic,1573.0.html;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -28,7 +28,7 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "User-space tools for the Linux kernel ftrace subsystem";
|
description = "User-space tools for the Linux kernel ftrace subsystem";
|
||||||
homepage = http://kernelshark.org/;
|
homepage = https://kernelshark.org/;
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = with maintainers; [ thoughtpolice basvandijk ];
|
maintainers = with maintainers; [ thoughtpolice basvandijk ];
|
||||||
|
@ -59,7 +59,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://www.rabbitmq.com/;
|
homepage = https://www.rabbitmq.com/;
|
||||||
description = "An implementation of the AMQP messaging protocol";
|
description = "An implementation of the AMQP messaging protocol";
|
||||||
license = stdenv.lib.licenses.mpl11;
|
license = stdenv.lib.licenses.mpl11;
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = stdenv.lib.platforms.unix;
|
||||||
|
@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = "http://redmine.lighttpd.net/projects/spawn-fcgi";
|
homepage = "https://redmine.lighttpd.net/projects/spawn-fcgi";
|
||||||
description = "Provides an interface to external programs that support the FastCGI interface";
|
description = "Provides an interface to external programs that support the FastCGI interface";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
maintainers = with maintainers; [ cstrahan ];
|
maintainers = with maintainers; [ cstrahan ];
|
||||||
|
@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
|
|||||||
installCheckPhase = "$out/bin/groonga --version";
|
installCheckPhase = "$out/bin/groonga --version";
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://groonga.org/;
|
homepage = https://groonga.org/;
|
||||||
description = "An open-source fulltext search engine and column store";
|
description = "An open-source fulltext search engine and column store";
|
||||||
license = licenses.lgpl21;
|
license = licenses.lgpl21;
|
||||||
maintainers = [ maintainers.ericsagnes ];
|
maintainers = [ maintainers.ericsagnes ];
|
||||||
|
@ -37,7 +37,7 @@ stdenv.mkDerivation rec {
|
|||||||
- history mechanism
|
- history mechanism
|
||||||
- job control
|
- job control
|
||||||
'';
|
'';
|
||||||
homepage = http://www.tcsh.org/;
|
homepage = https://www.tcsh.org/;
|
||||||
license = licenses.bsd2;
|
license = licenses.bsd2;
|
||||||
maintainers = with maintainers; [ AndersonTorres ];
|
maintainers = with maintainers; [ AndersonTorres ];
|
||||||
platforms = platforms.linux ++ platforms.darwin;
|
platforms = platforms.linux ++ platforms.darwin;
|
||||||
|
@ -37,7 +37,7 @@ python3Packages.buildPythonApplication rec {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A Python-ish, BASHwards-compatible shell";
|
description = "A Python-ish, BASHwards-compatible shell";
|
||||||
homepage = http://xon.sh/;
|
homepage = https://xon.sh/;
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
maintainers = with maintainers; [ spwhitt vrthra ];
|
maintainers = with maintainers; [ spwhitt vrthra ];
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
|
@ -37,7 +37,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Utility for RAR archives";
|
description = "Utility for RAR archives";
|
||||||
homepage = http://www.rarlab.com/;
|
homepage = https://www.rarlab.com/;
|
||||||
license = licenses.unfreeRedistributable;
|
license = licenses.unfreeRedistributable;
|
||||||
maintainers = [ maintainers.ehmry ];
|
maintainers = [ maintainers.ehmry ];
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
|
@ -4,7 +4,7 @@ stdenv.mkDerivation rec {
|
|||||||
name = "rsnapshot-1.4.3";
|
name = "rsnapshot-1.4.3";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://rsnapshot.org/downloads/${name}.tar.gz";
|
url = "https://rsnapshot.org/downloads/${name}.tar.gz";
|
||||||
sha256 = "1lavqmmsf53pim0nvming7fkng6p0nk2a51k2c2jdq0l7snpl31b";
|
sha256 = "1lavqmmsf53pim0nvming7fkng6p0nk2a51k2c2jdq0l7snpl31b";
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A filesystem snapshot utility for making backups of local and remote systems";
|
description = "A filesystem snapshot utility for making backups of local and remote systems";
|
||||||
homepage = http://rsnapshot.org/;
|
homepage = https://rsnapshot.org/;
|
||||||
license = stdenv.lib.licenses.gpl2Plus;
|
license = stdenv.lib.licenses.gpl2Plus;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
|
@ -46,7 +46,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://help.yandex.com/disk/cli-clients.xml;
|
homepage = https://help.yandex.com/disk/cli-clients.xml;
|
||||||
description = "A free cloud file storage service";
|
description = "A free cloud file storage service";
|
||||||
maintainers = with stdenv.lib.maintainers; [ smironov jagajaga ];
|
maintainers = with stdenv.lib.maintainers; [ smironov jagajaga ];
|
||||||
platforms = ["i686-linux" "x86_64-linux"];
|
platforms = ["i686-linux" "x86_64-linux"];
|
||||||
|
@ -10,7 +10,7 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Command-line dutch dictionary application";
|
description = "Command-line dutch dictionary application";
|
||||||
homepage = http://www.djcbsoftware.nl/code/gnuvd/;
|
homepage = https://www.djcbsoftware.nl/code/gnuvd/;
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
|
@ -77,7 +77,7 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
meta = with stdenv.lib;
|
meta = with stdenv.lib;
|
||||||
{ description = "Network boot firmware";
|
{ description = "Network boot firmware";
|
||||||
homepage = http://ipxe.org/;
|
homepage = https://ipxe.org/;
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
maintainers = with maintainers; [ ehmry ];
|
maintainers = with maintainers; [ ehmry ];
|
||||||
platforms = [ "x86_64-linux" "i686-linux" ];
|
platforms = [ "x86_64-linux" "i686-linux" ];
|
||||||
|
@ -25,7 +25,7 @@ stdenv.mkDerivation {
|
|||||||
longDescription = ''
|
longDescription = ''
|
||||||
Idle time passes when the user does not act, i.e. when the user doesn't move the mouse or use the keyboard.
|
Idle time passes when the user does not act, i.e. when the user doesn't move the mouse or use the keyboard.
|
||||||
'';
|
'';
|
||||||
homepage = http://orgmode.org/;
|
homepage = https://orgmode.org/;
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = [ maintainers.swflint ];
|
maintainers = [ maintainers.swflint ];
|
||||||
|
@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Universal tls/ssl wrapper";
|
description = "Universal tls/ssl wrapper";
|
||||||
homepage = "http://www.stunnel.org/";
|
homepage = "https://www.stunnel.org/";
|
||||||
license = stdenv.lib.licenses.gpl2Plus;
|
license = stdenv.lib.licenses.gpl2Plus;
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = stdenv.lib.platforms.unix;
|
||||||
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
||||||
|
@ -43,7 +43,7 @@ stdenv.mkDerivation ({
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://www.washington.edu/imap/;
|
homepage = https://www.washington.edu/imap/;
|
||||||
description = "UW IMAP toolkit - IMAP-supporting software developed by the UW";
|
description = "UW IMAP toolkit - IMAP-supporting software developed by the UW";
|
||||||
license = stdenv.lib.licenses.asl20;
|
license = stdenv.lib.licenses.asl20;
|
||||||
platforms = with stdenv.lib.platforms; linux;
|
platforms = with stdenv.lib.platforms; linux;
|
||||||
|
Loading…
Reference in New Issue
Block a user