lol

treewide: fix redirected urls (run 3)

Related:
- 9fc5e7e473874762fdb1b49d17dcf703d48352c3
- 593e11fd944ce961ecf5425c3540df09e4f52265
- 508ae42a0f64c350036d722b84c2e2905bbc5418

Since the last time I ran this script, the Repology API changed, so I had to
adapt the script used in the previous PR. The new API should be more robust, so
overall this is a positive (no more grepping the error messages for our relevant
data but just a nice json structure).

Here's the new script I used:

```sh
curl https://repology.org/api/v1/repository/nix_unstable/problems \
| jq -r '.[] | select(.type == "homepage_permanent_https_redirect") | .data | "s@\(.url)@\(.target)@"' \
| sort | uniq | tee script.sed
find -name '*.nix' | xargs -P4 -- sed -f script.sed -i
```

I will also add this script to `maintainers/scripts`.

authored by

Patrick Hilhorst and committed by
Jon
f7e390e6 bc99830b

+79 -79
+1 -1
pkgs/applications/audio/opus-tools/default.nix
··· 12 12 13 13 meta = { 14 14 description = "Tools to work with opus encoded audio streams"; 15 - homepage = "http://www.opus-codec.org/"; 15 + homepage = "https://www.opus-codec.org/"; 16 16 license = stdenv.lib.licenses.bsd2; 17 17 maintainers = with stdenv.lib.maintainers; [ ]; 18 18 platforms = with stdenv.lib.platforms; unix;
+1 -1
pkgs/applications/audio/opusfile/default.nix
··· 15 15 16 16 meta = with stdenv.lib; { 17 17 description = "High-level API for decoding and seeking in .opus files"; 18 - homepage = "http://www.opus-codec.org/"; 18 + homepage = "https://www.opus-codec.org/"; 19 19 license = licenses.bsd3; 20 20 platforms = platforms.linux ++ platforms.darwin; 21 21 maintainers = with maintainers; [ ];
+1 -1
pkgs/applications/audio/pmidi/default.nix
··· 14 14 buildInputs = [ alsaLib ]; 15 15 16 16 meta = with stdenv.lib; { 17 - homepage = "http://www.parabola.me.uk/alsa/pmidi.html"; 17 + homepage = "https://www.parabola.me.uk/alsa/pmidi.html"; 18 18 description = "A straightforward command line program to play midi files through the ALSA sequencer"; 19 19 maintainers = with maintainers; [ lheckemann ]; 20 20 license = licenses.gpl2;
+1 -1
pkgs/applications/audio/praat/default.nix
··· 23 23 24 24 meta = { 25 25 description = "Doing phonetics by computer"; 26 - homepage = "http://www.fon.hum.uva.nl/praat/"; 26 + homepage = "https://www.fon.hum.uva.nl/praat/"; 27 27 license = stdenv.lib.licenses.gpl2Plus; # Has some 3rd-party code in it though 28 28 platforms = stdenv.lib.platforms.linux; 29 29 };
+1 -1
pkgs/applications/graphics/meshlab/default.nix
··· 88 88 89 89 meta = { 90 90 description = "A system for processing and editing 3D triangular meshes."; 91 - homepage = "http://www.meshlab.net/"; 91 + homepage = "https://www.meshlab.net/"; 92 92 license = lib.licenses.gpl3; 93 93 maintainers = with lib.maintainers; [ viric ]; 94 94 platforms = with lib.platforms; linux;
+1 -1
pkgs/applications/graphics/pinta/default.nix
··· 74 74 ''; 75 75 76 76 meta = { 77 - homepage = "http://www.pinta-project.com/"; 77 + homepage = "https://www.pinta-project.com/"; 78 78 description = "Drawing/editing program modeled after Paint.NET"; 79 79 license = stdenv.lib.licenses.mit; 80 80 maintainers = with stdenv.lib.maintainers; [ ];
+1 -1
pkgs/applications/graphics/unigine-valley/default.nix
··· 107 107 108 108 meta = { 109 109 description = "The Unigine Valley GPU benchmarking tool"; 110 - homepage = "http://unigine.com/products/benchmarks/valley/"; 110 + homepage = "https://unigine.com/products/benchmarks/valley/"; 111 111 license = stdenv.lib.licenses.unfree; # see also: $out/$instPath/documentation/License.pdf 112 112 maintainers = [ stdenv.lib.maintainers.kierdavis ]; 113 113 platforms = ["x86_64-linux" "i686-linux"];
+1 -1
pkgs/applications/misc/calcurse/default.nix
··· 27 27 customized to suit user needs and a very powerful set of command line options can 28 28 be used to filter and format appointments, making it suitable for use in scripts. 29 29 ''; 30 - homepage = "http://calcurse.org/"; 30 + homepage = "https://calcurse.org/"; 31 31 license = licenses.bsd2; 32 32 platforms = platforms.linux; 33 33 };
+1 -1
pkgs/applications/misc/sakura/default.nix
··· 18 18 19 19 meta = with stdenv.lib; { 20 20 description = "A terminal emulator based on GTK and VTE"; 21 - homepage = "http://www.pleyades.net/david/projects/sakura"; 21 + homepage = "https://www.pleyades.net/david/projects/sakura"; 22 22 license = licenses.gpl2; 23 23 maintainers = with maintainers; [ astsmtl codyopel ]; 24 24 platforms = platforms.linux;
+1 -1
pkgs/applications/misc/taskjuggler/3.x/default.nix
··· 8 8 9 9 meta = { 10 10 description = "A modern and powerful project management tool"; 11 - homepage = "http://taskjuggler.org/"; 11 + homepage = "https://taskjuggler.org/"; 12 12 license = lib.licenses.gpl2; 13 13 platforms = lib.platforms.unix; 14 14 };
+1 -1
pkgs/applications/misc/taskjuggler/default.nix
··· 13 13 14 14 meta = with lib; { 15 15 description = "A modern and powerful project management tool"; 16 - homepage = "http://taskjuggler.org/"; 16 + homepage = "https://taskjuggler.org/"; 17 17 license = licenses.gpl2; 18 18 platforms = platforms.unix; 19 19 maintainers = with maintainers; [ manveru nicknovitski ];
+1 -1
pkgs/applications/misc/vp/default.nix
··· 18 18 NIX_CFLAGS_COMPILE="-I${SDL}/include/SDL -I${SDL_image}/include/SDL"; 19 19 20 20 meta = with stdenv.lib; { 21 - homepage = "http://brlcad.org/~erik/"; 21 + homepage = "https://brlcad.org/~erik/"; 22 22 description = "SDL based picture viewer/slideshow"; 23 23 platforms = platforms.unix; 24 24 license = licenses.gpl3;
+1 -1
pkgs/applications/misc/xiphos/default.nix
··· 47 47 and featureful environment for reading, study, and research using 48 48 modules from The SWORD Project and elsewhere. 49 49 ''; 50 - homepage = "http://www.xiphos.org/"; 50 + homepage = "https://www.xiphos.org/"; 51 51 license = licenses.gpl2Plus; 52 52 maintainers = [ maintainers.AndersonTorres ]; 53 53 platforms = platforms.linux;
+1 -1
pkgs/applications/networking/Sylk/default.nix
··· 24 24 25 25 meta = with lib; { 26 26 description = "Sylk WebRTC client"; 27 - homepage = "http://sylkserver.com/"; 27 + homepage = "https://sylkserver.com/"; 28 28 license = licenses.agpl3Plus; 29 29 maintainers = with maintainers; [ zimbatm ]; 30 30 platforms = [ "i386-linux" "x86_64-linux" ];
+1 -1
pkgs/applications/radio/hackrf/default.nix
··· 29 29 30 30 meta = with stdenv.lib; { 31 31 description = "An open source SDR platform"; 32 - homepage = "http://greatscottgadgets.com/hackrf/"; 32 + homepage = "https://greatscottgadgets.com/hackrf/"; 33 33 license = licenses.gpl2; 34 34 platforms = platforms.all; 35 35 maintainers = with maintainers; [ sjmackenzie ];
+1 -1
pkgs/applications/science/electronics/fritzing/default.nix
··· 38 38 39 39 meta = { 40 40 description = "An open source prototyping tool for Arduino-based projects"; 41 - homepage = "http://fritzing.org/"; 41 + homepage = "https://fritzing.org/"; 42 42 license = stdenv.lib.licenses.gpl3; 43 43 maintainers = [ stdenv.lib.maintainers.robberer ]; 44 44 platforms = stdenv.lib.platforms.linux;
+2 -2
pkgs/data/fonts/lato/default.nix
··· 3 3 fetchzip { 4 4 name = "lato-2.0"; 5 5 6 - url = "http://www.latofonts.com/download/Lato2OFL.zip"; 6 + url = "https://www.latofonts.com/download/Lato2OFL.zip"; 7 7 8 8 postFetch = '' 9 9 mkdir -p $out/share/fonts ··· 13 13 sha256 = "1amwn6vcaggxrd2s4zw21s2pr47zmzdf2xfy4x9lxa2cd9bkhvg5"; 14 14 15 15 meta = with lib; { 16 - homepage = "http://www.latofonts.com/"; 16 + homepage = "https://www.latofonts.com/"; 17 17 18 18 description = '' 19 19 Sans-serif typeface family designed in Summer 2010 by Łukasz Dziedzic
+2 -2
pkgs/development/interpreters/acl2/default.nix
··· 6 6 7 7 let 8 8 # Disable immobile space so we don't run out of memory on large books; see 9 - # http://www.cs.utexas.edu/users/moore/acl2/current/HTML/installation/requirements.html#Obtaining-SBCL 9 + # https://www.cs.utexas.edu/users/moore/acl2/current/HTML/installation/requirements.html#Obtaining-SBCL 10 10 sbcl = args.sbcl.override { disableImmobileSpace = true; }; 11 11 12 12 # Wrap to add `-model` argument because some of the books in 8.3 need this. ··· 121 121 '' else '' 122 122 The community books are not included in this package. 123 123 ''); 124 - homepage = "http://www.cs.utexas.edu/users/moore/acl2/"; 124 + homepage = "https://www.cs.utexas.edu/users/moore/acl2/"; 125 125 downloadPage = "https://github.com/acl2-devel/acl2-devel/releases"; 126 126 license = with licenses; [ 127 127 # ACL2 itself is bsd3
+1 -1
pkgs/development/interpreters/self/default.nix
··· 35 35 36 36 meta = { 37 37 description = "A prototype-based dynamic object-oriented programming language, environment, and virtual machine"; 38 - homepage = "http://selflanguage.org/"; 38 + homepage = "https://selflanguage.org/"; 39 39 license = stdenv.lib.licenses.bsd3; 40 40 maintainers = [ stdenv.lib.maintainers.doublec ]; 41 41 platforms = with stdenv.lib.platforms; linux;
+1 -1
pkgs/development/libraries/editline/default.nix
··· 23 23 outputs = [ "out" "dev" "man" "doc" ]; 24 24 25 25 meta = with stdenv.lib; { 26 - homepage = "http://troglobit.com/editline.html"; 26 + homepage = "https://troglobit.com/editline.html"; 27 27 description = "A readline() replacement for UNIX without termcap (ncurses)"; 28 28 license = licenses.bsdOriginal; 29 29 maintainers = with maintainers; [ dtzWill ];
+1 -1
pkgs/development/libraries/hivex/default.nix
··· 6 6 version = "1.3.19"; 7 7 8 8 src = fetchurl { 9 - url = "http://libguestfs.org/download/hivex/${pname}-${version}.tar.gz"; 9 + url = "https://libguestfs.org/download/hivex/${pname}-${version}.tar.gz"; 10 10 sha256 = "0qppahpf7jq950nf8ial47h90nyqgnsffsj3zgdjjwkn958wq0ji"; 11 11 }; 12 12
+1 -1
pkgs/development/libraries/libevent/default.nix
··· 53 53 and then add or remove events dynamically without having to change 54 54 the event loop. 55 55 ''; 56 - homepage = "http://libevent.org/"; 56 + homepage = "https://libevent.org/"; 57 57 license = licenses.bsd3; 58 58 platforms = platforms.all; 59 59 };
+2 -2
pkgs/development/libraries/libguestfs/default.nix
··· 14 14 version = "1.40.2"; 15 15 16 16 src = fetchurl { 17 - url = "http://libguestfs.org/download/1.40-stable/${pname}-${version}.tar.gz"; 17 + url = "https://libguestfs.org/download/1.40-stable/${pname}-${version}.tar.gz"; 18 18 sha256 = "ad6562c48c38e922a314cb45a90996843d81045595c4917f66b02a6c2dfe8058"; 19 19 }; 20 20 ··· 86 86 meta = with stdenv.lib; { 87 87 description = "Tools for accessing and modifying virtual machine disk images"; 88 88 license = with licenses; [ gpl2 lgpl21 ]; 89 - homepage = "http://libguestfs.org/"; 89 + homepage = "https://libguestfs.org/"; 90 90 maintainers = with maintainers; [offline]; 91 91 platforms = platforms.linux; 92 92 };
+1 -1
pkgs/development/libraries/libopus/default.nix
··· 23 23 meta = with stdenv.lib; { 24 24 description = "Open, royalty-free, highly versatile audio codec"; 25 25 license = stdenv.lib.licenses.bsd3; 26 - homepage = "http://www.opus-codec.org/"; 26 + homepage = "https://www.opus-codec.org/"; 27 27 platforms = platforms.unix; 28 28 }; 29 29 }
+1 -1
pkgs/development/libraries/libopusenc/default.nix
··· 22 22 meta = with stdenv.lib; { 23 23 description = "Library for encoding .opus audio files and live streams"; 24 24 license = licenses.bsd3; 25 - homepage = "http://www.opus-codec.org/"; 25 + homepage = "https://www.opus-codec.org/"; 26 26 platforms = platforms.unix; 27 27 maintainers = with maintainers; [ pmiddend ]; 28 28 };
+1 -1
pkgs/development/libraries/pcl/default.nix
··· 25 25 ]; 26 26 27 27 meta = { 28 - homepage = "http://pointclouds.org/"; 28 + homepage = "https://pointclouds.org/"; 29 29 broken = stdenv.lib.versionAtLeast qtbase.version "5.15"; 30 30 description = "Open project for 2D/3D image and point cloud processing"; 31 31 license = stdenv.lib.licenses.bsd3;
+2 -2
pkgs/development/libraries/tecla/default.nix
··· 4 4 name = "tecla-1.6.3"; 5 5 6 6 src = fetchurl { 7 - url = "http://www.astro.caltech.edu/~mcs/tecla/lib${name}.tar.gz"; 7 + url = "https://www.astro.caltech.edu/~mcs/tecla/lib${name}.tar.gz"; 8 8 sha256 = "06pfq5wa8d25i9bdjkp4xhms5101dsrbg82riz7rz1a0a32pqxgj"; 9 9 }; 10 10 11 11 meta = { 12 - homepage = "http://www.astro.caltech.edu/~mcs/tecla/"; 12 + homepage = "https://www.astro.caltech.edu/~mcs/tecla/"; 13 13 description = "Command-line editing library"; 14 14 license = "as-is"; 15 15
+1 -1
pkgs/development/libraries/twolame/default.nix
··· 26 26 tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 27 27 code and portions of LAME. 28 28 ''; 29 - homepage = "http://www.twolame.org/"; 29 + homepage = "https://www.twolame.org/"; 30 30 license = with licenses; [ lgpl2Plus ]; 31 31 platforms = with platforms; unix; 32 32 maintainers = with maintainers; [ AndersonTorres ];
+11 -11
pkgs/development/lua-modules/generated-packages.nix
··· 173 173 propagatedBuildInputs = [ lua ]; 174 174 175 175 meta = with stdenv.lib; { 176 - homepage = "http://www.kyne.com.au/~mark/software/lua-cjson.php"; 176 + homepage = "https://www.kyne.com.au/~mark/software/lua-cjson.php"; 177 177 description = "A fast JSON encoding/parsing module"; 178 178 license.fullName = "MIT"; 179 179 }; ··· 268 268 propagatedBuildInputs = [ lua ]; 269 269 270 270 meta = with stdenv.lib; { 271 - homepage = "http://github.com/JorjBauer/lua-cyrussasl"; 271 + homepage = "https://github.com/JorjBauer/lua-cyrussasl"; 272 272 description = "Cyrus SASL library for Lua 5.1+"; 273 273 maintainers = with maintainers; [ vcunat ]; 274 274 license.fullName = "BSD"; ··· 420 420 propagatedBuildInputs = [ lua ]; 421 421 422 422 meta = with stdenv.lib; { 423 - homepage = "http://github.com/pavouk/lgi"; 423 + homepage = "https://github.com/pavouk/lgi"; 424 424 description = "Lua bindings to GObject libraries"; 425 425 license.fullName = "MIT/X11"; 426 426 }; ··· 546 546 propagatedBuildInputs = [ lua ]; 547 547 548 548 meta = with stdenv.lib; { 549 - homepage = "http://github.com/rrthomas/lrexlib"; 549 + homepage = "https://github.com/rrthomas/lrexlib"; 550 550 description = "Regular expression library binding (GNU flavour)."; 551 551 license.fullName = "MIT/X11"; 552 552 }; ··· 563 563 propagatedBuildInputs = [ lua ]; 564 564 565 565 meta = with stdenv.lib; { 566 - homepage = "http://github.com/rrthomas/lrexlib"; 566 + homepage = "https://github.com/rrthomas/lrexlib"; 567 567 description = "Regular expression library binding (PCRE flavour)."; 568 568 maintainers = with maintainers; [ vyp ]; 569 569 license.fullName = "MIT/X11"; ··· 581 581 propagatedBuildInputs = [ lua ]; 582 582 583 583 meta = with stdenv.lib; { 584 - homepage = "http://github.com/rrthomas/lrexlib"; 584 + homepage = "https://github.com/rrthomas/lrexlib"; 585 585 description = "Regular expression library binding (POSIX flavour)."; 586 586 license.fullName = "MIT/X11"; 587 587 }; ··· 625 625 propagatedBuildInputs = [ lua ]; 626 626 627 627 meta = with stdenv.lib; { 628 - homepage = "http://github.com/antirez/lua-cmsgpack"; 628 + homepage = "https://github.com/antirez/lua-cmsgpack"; 629 629 description = "MessagePack C implementation and bindings for Lua 5.1/5.2/5.3"; 630 630 license.fullName = "Two-clause BSD"; 631 631 }; ··· 1109 1109 propagatedBuildInputs = [ bit32 lua ]; 1110 1110 1111 1111 meta = with stdenv.lib; { 1112 - homepage = "http://github.com/luaposix/luaposix/"; 1112 + homepage = "https://github.com/luaposix/luaposix/"; 1113 1113 description = "Lua bindings for POSIX"; 1114 1114 maintainers = with maintainers; [ vyp lblasc ]; 1115 1115 license.fullName = "MIT/X11"; ··· 1253 1253 propagatedBuildInputs = [ lua ]; 1254 1254 1255 1255 meta = with stdenv.lib; { 1256 - homepage = "http://github.com/starwing/luautf8"; 1256 + homepage = "https://github.com/starwing/luautf8"; 1257 1257 description = "A UTF-8 support module for Lua"; 1258 1258 maintainers = with maintainers; [ pstn ]; 1259 1259 license.fullName = "MIT"; ··· 1288 1288 propagatedBuildInputs = [ lua ]; 1289 1289 1290 1290 meta = with stdenv.lib; { 1291 - homepage = "http://github.com/brimworks/lua-yajl"; 1291 + homepage = "https://github.com/brimworks/lua-yajl"; 1292 1292 description = "Integrate the yajl JSON library with Lua."; 1293 1293 maintainers = with maintainers; [ pstn ]; 1294 1294 license.fullName = "MIT/X11"; ··· 1340 1340 propagatedBuildInputs = [ lua ]; 1341 1341 1342 1342 meta = with stdenv.lib; { 1343 - homepage = "http://github.com/gvvaughan/lyaml"; 1343 + homepage = "https://github.com/gvvaughan/lyaml"; 1344 1344 description = "libYAML binding for Lua"; 1345 1345 maintainers = with maintainers; [ lblasc ]; 1346 1346 license.fullName = "MIT/X11";
+1 -1
pkgs/development/python-modules/bumps/default.nix
··· 16 16 }; 17 17 18 18 meta = with stdenv.lib; { 19 - homepage = "http://www.reflectometry.org/danse/software.html"; 19 + homepage = "https://www.reflectometry.org/danse/software.html"; 20 20 description = "Data fitting with bayesian uncertainty analysis"; 21 21 maintainers = with maintainers; [ rprospero ]; 22 22 license = licenses.publicDomain;
+1 -1
pkgs/development/python-modules/colorful/default.nix
··· 20 20 21 21 meta = with lib; { 22 22 description = "Terminal string styling done right, in Python."; 23 - homepage = "http://github.com/timofurrer/colorful"; 23 + homepage = "https://github.com/timofurrer/colorful"; 24 24 license = licenses.mit; 25 25 maintainers = with maintainers; [ kalbasit ]; 26 26 };
+1 -1
pkgs/development/python-modules/dnspython/1.nix
··· 16 16 meta = { 17 17 description = "A DNS toolkit for Python 3.x"; 18 18 homepage = "http://www.dnspython.org"; 19 - # BSD-like, check http://www.dnspython.org/LICENSE for details 19 + # BSD-like, check https://www.dnspython.org/LICENSE for details 20 20 license = lib.licenses.free; 21 21 }; 22 22 }
+1 -1
pkgs/development/python-modules/dnspython/default.nix
··· 17 17 meta = { 18 18 description = "A DNS toolkit for Python 3.x"; 19 19 homepage = "http://www.dnspython.org"; 20 - # BSD-like, check http://www.dnspython.org/LICENSE for details 20 + # BSD-like, check https://www.dnspython.org/LICENSE for details 21 21 license = lib.licenses.free; 22 22 }; 23 23 }
+1 -1
pkgs/development/python-modules/guestfs/default.nix
··· 12 12 propagatedBuildInputs = [ libguestfs qemu ]; 13 13 14 14 meta = with stdenv.lib; { 15 - homepage = "http://libguestfs.org/guestfs-python.3.html"; 15 + homepage = "https://libguestfs.org/guestfs-python.3.html"; 16 16 description = "Use libguestfs from Python"; 17 17 license = licenses.lgpl2Plus; 18 18 maintainers = with maintainers; [ grahamc ];
+1 -1
pkgs/development/python-modules/iterm2/default.nix
··· 24 24 25 25 meta = with lib; { 26 26 description = "Python interface to iTerm2's scripting API"; 27 - homepage = "http://github.com/gnachman/iTerm2"; 27 + homepage = "https://github.com/gnachman/iTerm2"; 28 28 license = licenses.gpl2; 29 29 maintainers = with maintainers; [ jeremyschlatter ]; 30 30 };
+1 -1
pkgs/development/python-modules/periodictable/default.nix
··· 12 12 }; 13 13 14 14 meta = { 15 - homepage = "http://www.reflectometry.org/danse/software.html"; 15 + homepage = "https://www.reflectometry.org/danse/software.html"; 16 16 description = "an extensible periodic table of the elements prepopulated with data important to neutron and x-ray scattering experiments"; 17 17 license = lib.licenses.publicDomain; 18 18 maintainers = with lib.maintainers; [ rprospero ];
+1 -1
pkgs/development/python-modules/unicodedata2/default.nix
··· 16 16 17 17 meta = with lib; { 18 18 description = "Backport and updates for the unicodedata module"; 19 - homepage = "http://github.com/mikekap/unicodedata2"; 19 + homepage = "https://github.com/mikekap/unicodedata2"; 20 20 license = licenses.asl20; 21 21 maintainers = [ maintainers.sternenseemann ]; 22 22 };
+1 -1
pkgs/development/python-modules/unicorn/default.nix
··· 16 16 17 17 meta = with stdenv.lib; { 18 18 description = "Python bindings for Unicorn CPU emulator engine"; 19 - homepage = "http://www.unicorn-engine.org/"; 19 + homepage = "https://www.unicorn-engine.org/"; 20 20 license = [ licenses.gpl2 ]; 21 21 maintainers = with maintainers; [ bennofs ris ]; 22 22 };
+1 -1
pkgs/development/tools/database/liquibase/default.nix
··· 57 57 58 58 meta = { 59 59 description = "Version Control for your database"; 60 - homepage = "http://www.liquibase.org/"; 60 + homepage = "https://www.liquibase.org/"; 61 61 changelog = "https://raw.githubusercontent.com/liquibase/liquibase/v${version}/changelog.txt"; 62 62 license = licenses.asl20; 63 63 maintainers = with maintainers; [ nequissimus ];
+1 -1
pkgs/development/tools/misc/kdbg/default.nix
··· 22 22 ''; 23 23 24 24 meta = with stdenv.lib; { 25 - homepage = "http://www.kdbg.org/"; 25 + homepage = "https://www.kdbg.org/"; 26 26 description = '' 27 27 A graphical user interface to gdb, the GNU debugger. It provides an 28 28 intuitive interface for setting breakpoints, inspecting variables, and
+1 -1
pkgs/games/gemrb/default.nix
··· 35 35 support pseudo-3D role playing games based on the Dungeons & Dragons 36 36 ruleset (Baldur's Gate and Icewind Dale series, Planescape: Torment). 37 37 ''; 38 - homepage = "http://gemrb.org/"; 38 + homepage = "https://gemrb.org/"; 39 39 license = licenses.gpl2; 40 40 maintainers = with maintainers; [ peterhoeg ]; 41 41 platforms = platforms.all;
+2 -2
pkgs/games/instead/default.nix
··· 3 3 let 4 4 version = "3.3.2"; 5 5 6 - # I took several games at random from http://instead.syscall.ru/games/ 6 + # I took several games at random from https://instead.syscall.ru/games/ 7 7 games = [ 8 8 (fetchurl { 9 9 url = "http://instead-games.googlecode.com/files/instead-apple-day-1.2.zip"; ··· 64 64 65 65 meta = with stdenv.lib; { 66 66 description = "Simple text adventure interpreter for Unix and Windows"; 67 - homepage = "http://instead.syscall.ru/"; 67 + homepage = "https://instead.syscall.ru/"; 68 68 license = stdenv.lib.licenses.gpl2; 69 69 platforms = with stdenv.lib.platforms; linux; 70 70 maintainers = with maintainers; [ pSub ];
+1 -1
pkgs/misc/emulators/stella/default.nix
··· 27 27 maintained by Stephen Anthony. 28 28 As of its 3.5 release, Stella is officially donationware. 29 29 ''; 30 - homepage = "http://stella-emu.github.io/"; 30 + homepage = "https://stella-emu.github.io/"; 31 31 license = licenses.gpl2; 32 32 maintainers = [ maintainers.AndersonTorres ]; 33 33 platforms = platforms.linux;
+1 -1
pkgs/misc/solfege/default.nix
··· 39 39 40 40 meta = with lib; { 41 41 description = "Ear training program"; 42 - homepage = "http://www.solfege.org/"; 42 + homepage = "https://www.solfege.org/"; 43 43 license = licenses.gpl3; 44 44 platforms = platforms.linux; 45 45 maintainers = with maintainers; [ bjornfor orivej ];
+1 -1
pkgs/misc/sound-of-sorting/default.nix
··· 21 21 22 22 meta = with stdenv.lib; { 23 23 description = "Audibilization and Visualization of Sorting Algorithms"; 24 - homepage = "http://panthema.net/2013/sound-of-sorting/"; 24 + homepage = "https://panthema.net/2013/sound-of-sorting/"; 25 25 license = with licenses; gpl3; 26 26 maintainers = with maintainers; [ AndersonTorres ]; 27 27 };
+1 -1
pkgs/os-specific/linux/schedtool/default.nix
··· 15 15 16 16 meta = with stdenv.lib; { 17 17 description = "Query or alter a process' scheduling policy under Linux"; 18 - homepage = "http://freequaos.host.sk/schedtool/"; 18 + homepage = "https://freequaos.host.sk/schedtool/"; 19 19 license = licenses.gpl2; 20 20 platforms = platforms.linux; 21 21 maintainers = with maintainers; [ abbradar ];
+1 -1
pkgs/servers/http/jboss/default.nix
··· 17 17 ''; 18 18 19 19 meta = with stdenv.lib; { 20 - homepage = "http://www.jboss.org/"; 20 + homepage = "https://www.jboss.org/"; 21 21 description = "Open Source J2EE application server"; 22 22 license = licenses.lgpl21; 23 23 maintainers = [ maintainers.sander ];
+1 -1
pkgs/shells/zsh/default.nix
··· 81 81 a host of other features. 82 82 ''; 83 83 license = "MIT-like"; 84 - homepage = "http://www.zsh.org/"; 84 + homepage = "https://www.zsh.org/"; 85 85 maintainers = with stdenv.lib.maintainers; [ pSub ]; 86 86 platforms = stdenv.lib.platforms.unix; 87 87 };
+1 -1
pkgs/shells/zsh/grml-zsh-config/default.nix
··· 33 33 34 34 meta = with stdenv.lib; { 35 35 description = "grml's zsh setup"; 36 - homepage = "http://grml.org/zsh/"; 36 + homepage = "https://grml.org/zsh/"; 37 37 license = licenses.gpl2; 38 38 platforms = platforms.unix; 39 39 maintainers = with maintainers; [ msteen rvolosatovs ];
+1 -1
pkgs/tools/archivers/fsarchiver/default.nix
··· 36 36 checksummed in the archive in order to protect the data. If the archive is 37 37 corrupt, you just loose the current file, not the whole archive. 38 38 ''; 39 - homepage = "http://www.fsarchiver.org/"; 39 + homepage = "https://www.fsarchiver.org/"; 40 40 license = licenses.lgpl2; 41 41 maintainers = [ maintainers.etu ]; 42 42 platforms = platforms.linux;
+1 -1
pkgs/tools/audio/ezstream/default.nix
··· 25 25 from standard input without reencoding and thus requires only 26 26 very little CPU resources. 27 27 ''; 28 - homepage = "http://icecast.org/ezstream/"; 28 + homepage = "https://icecast.org/ezstream/"; 29 29 license = licenses.gpl2; 30 30 maintainers = [ maintainers.barrucadu ]; 31 31 platforms = platforms.all;
+1 -1
pkgs/tools/filesystems/xfsprogs/default.nix
··· 56 56 ''; 57 57 58 58 meta = with stdenv.lib; { 59 - homepage = "http://xfs.org/"; 59 + homepage = "https://xfs.org/"; 60 60 description = "SGI XFS utilities"; 61 61 license = licenses.lgpl21; 62 62 platforms = platforms.linux;
+1 -1
pkgs/tools/misc/git-town/default.nix
··· 16 16 17 17 meta = with stdenv.lib; { 18 18 description = "Generic, high-level git support for git-flow workflows"; 19 - homepage = "http://www.git-town.com/"; 19 + homepage = "https://www.git-town.com/"; 20 20 maintainers = [ maintainers.allonsy maintainers.blaggacao ]; 21 21 license = licenses.mit; 22 22 };
+2 -2
pkgs/tools/misc/lbdb/default.nix
··· 15 15 pname = "lbdb"; 16 16 inherit version; 17 17 src = fetchurl { 18 - url = "http://www.spinnaker.de/lbdb/download/lbdb_${version}.tar.gz"; 18 + url = "https://www.spinnaker.de/lbdb/download/lbdb_${version}.tar.gz"; 19 19 sha256 = "1gr5l2fr9qbdccga8bhsrpvz6jxigvfkdxrln9wyf2xpps5cdjxh"; 20 20 }; 21 21 ··· 47 47 + ":${perlldap}/${perl.libPrefix}"; 48 48 49 49 meta = { 50 - homepage = "http://www.spinnaker.de/lbdb/"; 50 + homepage = "https://www.spinnaker.de/lbdb/"; 51 51 license = licenses.gpl2; 52 52 platforms = platforms.all; 53 53 description = "The Little Brother's Database";
+1 -1
pkgs/tools/misc/mysql2pgsql/default.nix
··· 18 18 19 19 meta = { 20 20 description = "Convert MySQL dump files to PostgreSQL-loadable files"; 21 - homepage = "http://pgfoundry.org/projects/mysql2pgsql/"; 21 + homepage = "https://pgfoundry.org/projects/mysql2pgsql/"; 22 22 license = stdenv.lib.licenses.bsdOriginal; 23 23 platforms = stdenv.lib.platforms.unix; 24 24 };
+1 -1
pkgs/tools/networking/dropbear/default.nix
··· 31 31 buildInputs = [ zlib ] ++ lib.optionals enableStatic [ glibc.static zlib.static ]; 32 32 33 33 meta = with stdenv.lib; { 34 - homepage = "http://matt.ucc.asn.au/dropbear/dropbear.html"; 34 + homepage = "https://matt.ucc.asn.au/dropbear/dropbear.html"; 35 35 description = "A small footprint implementation of the SSH 2 protocol"; 36 36 license = licenses.mit; 37 37 maintainers = with maintainers; [ abbradar ];
+1 -1
pkgs/tools/security/eid-mw/default.nix
··· 58 58 59 59 meta = with stdenv.lib; { 60 60 description = "Belgian electronic identity card (eID) middleware"; 61 - homepage = "http://eid.belgium.be/en/using_your_eid/installing_the_eid_software/linux/"; 61 + homepage = "https://eid.belgium.be/en/using_your_eid/installing_the_eid_software/linux/"; 62 62 license = licenses.lgpl3; 63 63 longDescription = '' 64 64 Allows user authentication and digital signatures with Belgian ID cards.
+1 -1
pkgs/tools/security/pcsc-scm-scl011/default.nix
··· 39 39 40 40 meta = with stdenv.lib; { 41 41 description = "SCM Microsystems SCL011 chipcard reader user space driver"; 42 - homepage = "http://www.scm-pc-card.de/index.php?lang=en&page=product&function=show_product&product_id=630"; 42 + homepage = "https://www.scm-pc-card.de/index.php?lang=enhttp://www.scm-pc-card.de/index.php?lang=en&page=product&function=show_product&product_id=630page=producthttp://www.scm-pc-card.de/index.php?lang=en&page=product&function=show_product&product_id=630function=show_producthttp://www.scm-pc-card.de/index.php?lang=en&page=product&function=show_product&product_id=630product_id=630"; 43 43 downloadPage = "https://support.identiv.com/scl010-scl011/"; 44 44 license = licenses.unfreeRedistributable; 45 45 maintainers = with maintainers; [ sephalon ];
+1 -1
pkgs/tools/security/phrasendrescher/default.nix
··· 20 20 21 21 meta = with stdenv.lib; { 22 22 description = "A modular and multi processing pass phrase cracking tool"; 23 - homepage = "http://leidecker.info/projects/phrasendrescher/index.shtml"; 23 + homepage = "https://leidecker.info/projects/phrasendrescher/index.shtml"; 24 24 license = licenses.gpl2Plus; 25 25 platforms = platforms.all; 26 26 maintainers = with maintainers; [ bjornfor ];
+1 -1
pkgs/tools/text/xml/basex/default.nix
··· 65 65 highly interactive front-end (basexgui). Apart from two local standalone 66 66 modes, BaseX offers a client/server architecture. 67 67 ''; 68 - homepage = "http://basex.org/"; 68 + homepage = "https://basex.org/"; 69 69 license = licenses.bsd3; 70 70 platforms = platforms.linux; 71 71 maintainers = [ maintainers.bjornfor ];
+3 -3
pkgs/top-level/perl-packages.nix
··· 3993 3993 sha256 = "ea64a1e9eb42f3d79855a392e7cca6b86e8e0bcc9aabcc5efa5fa32415b67dba"; 3994 3994 }; 3995 3995 meta = { 3996 - homepage = "http://wiki.github.com/toddr/Crypt-RIPEMD160"; 3996 + homepage = "https://wiki.github.com/toddr/Crypt-RIPEMD160"; 3997 3997 description = "Perl extension for the RIPEMD-160 Hash function"; 3998 3998 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 3999 3999 maintainers = [ maintainers.sgo ]; ··· 10164 10164 sha256 = "c7d6311eb6c79e983833c9e6b4e8d426d07a9874d20f4bc641b313b99c9bc8a0"; 10165 10165 }; 10166 10166 meta = { 10167 - homepage = "http://metacpan.org/release/IRC-Utils"; 10167 + homepage = "https://metacpan.org/release/IRC-Utils"; 10168 10168 description = "Common utilities for IRC-related tasks"; 10169 10169 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 10170 10170 maintainers = with maintainers; [ sgo ]; ··· 18419 18419 meta = { 18420 18420 description = "lib/Safe/Hole.pm"; 18421 18421 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 18422 - homepage = "http://github.com/toddr/Safe-Hole"; 18422 + homepage = "https://github.com/toddr/Safe-Hole"; 18423 18423 }; 18424 18424 }; 18425 18425