···337337 The "gnu" ABI is ambiguous on 32-bit ARM. Use "gnueabi" or "gnueabihf" instead.338338 '';339339 }340340+ { assertion = platform: platform.system != "powerpc64-linux";341341+ message = ''342342+ The "gnu" ABI is ambiguous on big-endian 64-bit PPC. Use "elfv1" or "elfv2" instead.343343+ '';344344+ }340345 ];341346 };342347 gnuabi64 = { abi = "64"; };348348+349349+ elfv1 = { abi = "elfv1"; };350350+ elfv2 = { abi = "elfv2"; };343351344352 musleabi = { float = "soft"; };345353 musleabihf = { float = "hard"; };···452444 if lib.versionAtLeast (parsed.cpu.version or "0") "6"453445 then abis.gnueabihf454446 else abis.gnueabi447447+ else if cpu == "powerpc64" then abis.elfv2455448 else abis.gnu456449 else abis.unknown;457450 };
···112112113113 acmeRoot = mkOption {114114 type = types.str;115115- default = "/var/lib/acme/acme-challenges";115115+ default = "/var/lib/acme/acme-challenge";116116 description = "Directory for the acme challenge which is PUBLIC, don't put certs or keys in here";117117 };118118
···77 pname = "linuxband";8899 src = fetchurl {1010- url = "http://linuxband.org/assets/sources/${pname}-${version}.tar.gz";1010+ url = "https://linuxband.org/assets/sources/${pname}-${version}.tar.gz";1111 sha256 = "1r71h4yg775m4gax4irrvygmrsclgn503ykmc2qwjsxa42ri4n2n";1212 };1313···29293030 meta = {3131 description = "A GUI front-end for MMA: Type in the chords, choose the groove and it will play an accompaniment";3232- homepage = "http://linuxband.org/";3232+ homepage = "https://linuxband.org/";3333 license = lib.licenses.gpl2;3434 maintainers = [ lib.maintainers.magnetophon ];3535 platforms = lib.platforms.linux;
···1212}:13131414# Additional plugins that can be added:1515-# wavpack (http://www.wavpack.com/)1515+# wavpack (https://www.wavpack.com/)1616# gme (Game music support)1717# Ogg Opus support1818# BS2B effect plugin (http://bs2b.sourceforge.net/)
···11+# Use `glimpse-with-plugins` package for Glimpse with all plug-ins.22+# If you just want a subset of plug-ins, you can specify them explicitly:33+# `glimpse-with-plugins.override { plugins = with glimpsePlugins; [ gap ]; }`.44+55+{ gimpPlugins, glimpse }:66+77+# This attrs can be extended in the future if there happen to be glimpse-only88+# plugins or some that need further modification in order to work with Glimpse.99+gimpPlugins.overrideScope' (self: super: {1010+ gimp = glimpse;1111+})
···3838 substituteInPlace setup.py --replace 'pyxdg==0.26' 'pyxdg'3939 '';40404141+ # no tests executed4242+ doCheck = false;4343+4144 meta = with lib; {4245 description = "A simple emoji and character picker for rofi";4346 homepage = "https://github.com/fdw/rofimoji";
+1-1
pkgs/applications/misc/snowmachine/default.nix
···17171818 meta = with lib; {1919 description = "A python script that will make your terminal snow";2020- homepage = "http://github.com/sontek/snowmachine";2020+ homepage = "https://github.com/sontek/snowmachine";2121 license = with licenses; [ bsd3 ];2222 maintainers = with maintainers; [ djanatyn ];2323 };
···55 version = "1.0.3";6677 src = fetchzip {88- url = "http://cgi.csc.liv.ac.uk/~ullrich/CLProver++/CLProver++-v1.0.3-18-04-2015.zip";88+ url = "https://cgi.csc.liv.ac.uk/~ullrich/CLProver++/CLProver++-v1.0.3-18-04-2015.zip";99 sha256 = "10kmlg4m572qwfzi6hkyb0ypb643xw8sfb55xx7866lyh37w1q3s";1010 stripRoot = false;1111 };···19192020 meta = with lib; {2121 description = "Resolution-based theorem prover for Coalition Logic implemented in C++";2222- homepage = "http://cgi.csc.liv.ac.uk/~ullrich/CLProver++/";2222+ homepage = "https://cgi.csc.liv.ac.uk/~ullrich/CLProver++/";2323 license = licenses.gpl3; # Note that while the website states that it is GPLv2 but the file in the zip as well as the comments in the source state it is GPLv32424 maintainers = with maintainers; [ mgttlinger ];2525 platforms = [ "x86_64-linux" ];
+1-1
pkgs/applications/science/math/ginac/default.nix
···20202121 meta = with lib; {2222 description = "GiNaC is Not a CAS";2323- homepage = "http://www.ginac.de/";2323+ homepage = "https://www.ginac.de/";2424 maintainers = with maintainers; [ lovek323 ];2525 license = licenses.gpl2;2626 platforms = platforms.all;
···3232 ];33333434 meta = with lib; {3535- homepage = "http://named-data.net/";3535+ homepage = "https://named-data.net/";3636 description = "A Named Data Neworking (NDN) or Content Centric Networking (CCN) abstraction";3737 longDescription = ''3838 ndn-cxx is a C++ library, implementing Named Data Networking (NDN)
···88, pytest99, mock1010, util-linux1111-, isPy381211}:13121413buildPythonPackage rec {···23242425 # capturer is broken on darwin / py38, so we skip the test until a fix for2526 # https://github.com/xolox/python-capturer/issues/10 is released.2626- doCheck = !(isPy38 && stdenv.isDarwin);2727+ doCheck = !stdenv.isDarwin;2728 checkPhase = ''2829 PATH=$PATH:$out/bin pytest . -k "not test_plain_text_output_format \2930 and not test_auto_install"
-7
pkgs/development/python-modules/gym/default.nix
···1212 sha256 = "96a7dd4e9cdb39e30c7a79e5773570fd9408f7fdb58c714c293cfbb314818eb6";1313 };14141515- postPatch = ''1616- substituteInPlace setup.py \1717- --replace "pyglet>=1.2.0,<=1.3.2" "pyglet" \1818- --replace "cloudpickle>=1.2.0,<1.4.0" "cloudpickle~=1.2"1919- '';2020- # cloudpickle range has been expanded in package but not yet released2121-2215 propagatedBuildInputs = [2316 numpy requests six pyglet scipy cloudpickle2417 ];
···55 version = "2.8";6677 src = fetchurl {88- url = "http://excess.org/speedometer/speedometer-${version}.tar.gz";88+ url = "https://excess.org/speedometer/speedometer-${version}.tar.gz";99 sha256 = "060bikv3gwr203jbdmvawsfhc0yq0bg1m42dk8czx1nqvwvgv6fm";1010 };1111···18181919 meta = with lib; {2020 description = "Measure and display the rate of data across a network connection or data being stored in a file";2121- homepage = "http://excess.org/speedometer/";2121+ homepage = "https://excess.org/speedometer/";2222 license = licenses.lgpl21Plus;2323 platforms = platforms.linux;2424 maintainers = with maintainers; [ Baughn ];