Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 25952ac03649
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9993ffb6ab1c
Choose a head ref
  • 3 commits
  • 18 files changed
  • 1 contributor

Commits on Nov 27, 2020

  1. Verified

    This commit was signed with the committer’s verified signature.
    Copy the full SHA
    60c5486 View commit details
  2. Verified

    This commit was signed with the committer’s verified signature.
    Copy the full SHA
    67c2129 View commit details
  3. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    9993ffb View commit details
Original file line number Diff line number Diff line change
@@ -9,3 +9,4 @@ 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
rm script.sed
2 changes: 1 addition & 1 deletion pkgs/applications/audio/faust/faust1.nix
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ let
};

meta = with stdenv.lib; {
homepage = "http://faust.grame.fr/";
homepage = "https://faust.grame.fr/";
downloadPage = "https://sourceforge.net/projects/faudiostream/files/";
license = licenses.gpl2;
platforms = platforms.linux;
2 changes: 1 addition & 1 deletion pkgs/applications/audio/faust/faust2.nix
Original file line number Diff line number Diff line change
@@ -31,7 +31,7 @@ let
};

meta = with stdenv.lib; {
homepage = "http://faust.grame.fr/";
homepage = "https://faust.grame.fr/";
downloadPage = "https://github.com/grame-cncm/faust/";
license = licenses.gpl2;
platforms = platforms.linux;
2 changes: 1 addition & 1 deletion pkgs/applications/audio/faust/faustlive.nix
Original file line number Diff line number Diff line change
@@ -37,7 +37,7 @@ stdenv.mkDerivation rec {
together the convenience of a standalone interpreted language with the
efficiency of a compiled language. It's ideal for fast prototyping.
'';
homepage = "http://faust.grame.fr/";
homepage = "https://faust.grame.fr/";
license = licenses.gpl3;
};
}
2 changes: 1 addition & 1 deletion pkgs/development/compilers/wla-dx/default.nix
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake ];

meta = with stdenv.lib; {
homepage = "http://www.villehelin.com/wla.html";
homepage = "https://www.villehelin.com/wla.html";
description = "Yet Another GB-Z80/Z80/6502/65C02/6510/65816/HUC6280/SPC-700 Multi Platform Cross Assembler Package";
license = licenses.gpl2;
maintainers = with maintainers; [ matthewbauer ];
2 changes: 1 addition & 1 deletion pkgs/development/python-modules/cliapp/default.nix
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@ buildPythonPackage {
doCheck = false;

meta = with stdenv.lib; {
homepage = "http://liw.fi/cliapp/";
homepage = "https://liw.fi/cliapp/";
description = "Python framework for Unix command line programs";
license = licenses.gpl2;
maintainers = [];
2 changes: 1 addition & 1 deletion pkgs/development/python-modules/cmdtest/default.nix
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ buildPythonPackage rec {
doCheck = false;

meta = with stdenv.lib; {
homepage = "http://liw.fi/cmdtest/";
homepage = "https://liw.fi/cmdtest/";
description = "Black box tests Unix command line tools";
license = licenses.gpl3;
};
2 changes: 1 addition & 1 deletion pkgs/development/python-modules/pinboard/default.nix
Original file line number Diff line number Diff line change
@@ -18,6 +18,6 @@ buildPythonPackage rec {
description = "A Python wrapper for Pinboard.in";
maintainers = with maintainers; [ djanatyn ];
license = licenses.asl20;
homepage = "http://github.com/lionheart/pinboard.py";
homepage = "https://github.com/lionheart/pinboard.py";
};
}
2 changes: 1 addition & 1 deletion pkgs/development/python-modules/pure-pcapy3/default.nix
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ buildPythonPackage rec {

meta = with stdenv.lib; {
description = "Pure Python reimplementation of pcapy. This package is API compatible and a drop-in replacement.";
homepage = "http://bitbucket.org/viraptor/pure-pcapy";
homepage = "https://bitbucket.org/viraptor/pure-pcapy";
license = licenses.bsd2;
maintainers = with maintainers; [ etu ];
};
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ buildPythonPackage rec {

meta = with lib; {
description = "Package to parse logical tag expressions";
homepage = "http://github.com/timofurrer/tag-expressions";
homepage = "https://github.com/timofurrer/tag-expressions";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ kalbasit ];
};
2 changes: 1 addition & 1 deletion pkgs/development/python-modules/tracing/default.nix
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ buildPythonPackage rec {
doCheck = false;

meta = with stdenv.lib; {
homepage = "http://liw.fi/tracing/";
homepage = "https://liw.fi/tracing/";
description = "Python debug logging helper";
license = licenses.gpl3;
maintainers = [];
2 changes: 1 addition & 1 deletion pkgs/development/python-modules/ttystatus/default.nix
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@ buildPythonPackage rec {
doCheck = false;

meta = with stdenv.lib; {
homepage = "http://liw.fi/ttystatus/";
homepage = "https://liw.fi/ttystatus/";
description = "Progress and status updates on terminals for Python";
license = licenses.gpl3;
maintainers = [];
2 changes: 1 addition & 1 deletion pkgs/development/python-modules/zigpy-xbee/default.nix
Original file line number Diff line number Diff line change
@@ -38,7 +38,7 @@ buildPythonPackage rec {

meta = with lib; {
description = "A library which communicates with XBee radios for zigpy";
homepage = "http://github.com/zigpy/zigpy-xbee";
homepage = "https://github.com/zigpy/zigpy-xbee";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ etu mvnetbiz ];
platforms = platforms.linux;
2 changes: 1 addition & 1 deletion pkgs/development/python-modules/zope_interface/default.nix
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ buildPythonPackage rec {

meta = with stdenv.lib; {
description = "Zope.Interface";
homepage = "http://zope.org/Products/ZopeInterface";
homepage = "https://zope.org/Products/ZopeInterface";
license = licenses.zpl20;
maintainers = [ maintainers.goibhniu ];
};
2 changes: 1 addition & 1 deletion pkgs/development/tools/ocaml/ocamlify/default.nix
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ stdenv.mkDerivation {
dontStrip = true;

meta = {
homepage = "http://forge.ocamlcore.org/projects/ocamlmod/ocamlmod";
homepage = "https://forge.ocamlcore.org/projects/ocamlmod/ocamlmod";
description = "Generate OCaml modules from source files";
platforms = ocaml.meta.platforms or [];
license = stdenv.lib.licenses.lgpl21;
2 changes: 1 addition & 1 deletion pkgs/development/tools/ocaml/ocamlmod/default.nix
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@ stdenv.mkDerivation {
dontStrip = true;

meta = {
homepage = "http://forge.ocamlcore.org/projects/ocamlmod/ocamlmod";
homepage = "https://forge.ocamlcore.org/projects/ocamlmod/ocamlmod";
description = "Generate OCaml modules from source files";
platforms = ocaml.meta.platforms or [];
maintainers = with stdenv.lib.maintainers; [
2 changes: 1 addition & 1 deletion pkgs/tools/misc/staruml/default.nix
Original file line number Diff line number Diff line change
@@ -48,7 +48,7 @@ stdenv.mkDerivation rec {

meta = with stdenv.lib; {
description = "A sophisticated software modeler";
homepage = "http://staruml.io/";
homepage = "https://staruml.io/";
license = licenses.unfree;
platforms = [ "i686-linux" "x86_64-linux" ];
};
2 changes: 1 addition & 1 deletion pkgs/tools/networking/inadyn/default.nix
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;

meta = with stdenv.lib; {
homepage = "http://troglobit.com/project/inadyn/";
homepage = "https://troglobit.com/project/inadyn/";
description = "Free dynamic DNS client";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ ];