+1
-1
doc/contributing/contributing-to-documentation.chapter.md
+1
-1
doc/contributing/contributing-to-documentation.chapter.md
+3
-4
doc/default.nix
+3
-4
doc/default.nix
······
+2
-2
pkgs/applications/audio/bjumblr/default.nix
+2
-2
pkgs/applications/audio/bjumblr/default.nix
···
+2
-2
pkgs/applications/audio/bsequencer/default.nix
+2
-2
pkgs/applications/audio/bsequencer/default.nix
···
+2
-2
pkgs/applications/audio/bshapr/default.nix
+2
-2
pkgs/applications/audio/bshapr/default.nix
···
+2
-2
pkgs/applications/audio/bslizr/default.nix
+2
-2
pkgs/applications/audio/bslizr/default.nix
···
+20
-5
pkgs/applications/networking/instant-messengers/ferdi/default.nix
+20
-5
pkgs/applications/networking/instant-messengers/ferdi/default.nix
···url = "https://github.com/getferdi/ferdi/releases/download/v${version}/ferdi_${version}_amd64.deb";
+3
-2
pkgs/applications/networking/instant-messengers/franz/generic.nix
+3
-2
pkgs/applications/networking/instant-messengers/franz/generic.nix
······
+4
-1
pkgs/applications/networking/instant-messengers/rambox/default.nix
+4
-1
pkgs/applications/networking/instant-messengers/rambox/default.nix
···description = "Free and Open Source messaging and emailing app that combines common web applications into one";+"Electron 7.2.4 is EOL and contains at least the following vulnerabilities: CVE-2020-6458, CVE-2020-6460 and more (https://www.electronjs.org/releases/stable?version=7). Consider using an alternative such as `ferdi'."
+2
-2
pkgs/applications/networking/instant-messengers/signal-desktop/default.nix
+2
-2
pkgs/applications/networking/instant-messengers/signal-desktop/default.nix
······url = "https://updates.signal.org/desktop/apt/pool/main/s/signal-desktop/signal-desktop_${version}_amd64.deb";
+3
-2
pkgs/applications/networking/sniffers/wireshark/default.nix
+3
-2
pkgs/applications/networking/sniffers/wireshark/default.nix
·········
+1
-1
pkgs/applications/science/logic/acgtk/default.nix
+1
-1
pkgs/applications/science/logic/acgtk/default.nix
···
+1
-1
pkgs/applications/science/logic/why3/default.nix
+1
-1
pkgs/applications/science/logic/why3/default.nix
+1
-1
pkgs/development/compilers/compcert/default.nix
+1
-1
pkgs/development/compilers/compcert/default.nix
···
+1
-1
pkgs/development/compilers/fstar/default.nix
+1
-1
pkgs/development/compilers/fstar/default.nix
···
+34
-23
pkgs/development/compilers/go/1.14.nix
+34
-23
pkgs/development/compilers/go/1.14.nix
···············# prepend the nix path to the zoneinfo files but also leave the original value for static binariessed -i 's,\"/usr/share/zoneinfo/,"${tzdata}/share/zoneinfo/\"\,\n\t&,' src/time/zoneinfo_unix.go···-GOARM = toString (lib.intersectLists [(stdenv.hostPlatform.parsed.cpu.version or "")] ["5" "6" "7"]);+GOARM = toString (lib.intersectLists [ (stdenv.hostPlatform.parsed.cpu.version or "") ] [ "5" "6" "7" ]);·········
+34
-23
pkgs/development/compilers/go/1.15.nix
+34
-23
pkgs/development/compilers/go/1.15.nix
···············# prepend the nix path to the zoneinfo files but also leave the original value for static binariessed -i 's,\"/usr/share/zoneinfo/,"${tzdata}/share/zoneinfo/\"\,\n\t&,' src/time/zoneinfo_unix.go···-GOARM = toString (lib.intersectLists [(stdenv.hostPlatform.parsed.cpu.version or "")] ["5" "6" "7"]);+GOARM = toString (lib.intersectLists [ (stdenv.hostPlatform.parsed.cpu.version or "") ] [ "5" "6" "7" ]);·········
+36
-25
pkgs/development/compilers/go/1.16.nix
+36
-25
pkgs/development/compilers/go/1.16.nix
············# prepend the nix path to the zoneinfo files but also leave the original value for static binariessed -i 's,\"/usr/share/zoneinfo/,"${tzdata}/share/zoneinfo/\"\,\n\t&,' src/time/zoneinfo_unix.go···-GOARM = toString (lib.intersectLists [(stdenv.hostPlatform.parsed.cpu.version or "")] ["5" "6" "7"]);+GOARM = toString (lib.intersectLists [ (stdenv.hostPlatform.parsed.cpu.version or "") ] [ "5" "6" "7" ]);·········
+34
-22
pkgs/development/compilers/go/2-dev.nix
+34
-22
pkgs/development/compilers/go/2-dev.nix
············# prepend the nix path to the zoneinfo files but also leave the original value for static binariessed -i 's,\"/usr/share/zoneinfo/,"${tzdata}/share/zoneinfo/\"\,\n\t&,' src/time/zoneinfo_unix.go···-GOARM = toString (lib.intersectLists [(stdenv.hostPlatform.parsed.cpu.version or "")] ["5" "6" "7"]);+GOARM = toString (lib.intersectLists [ (stdenv.hostPlatform.parsed.cpu.version or "") ] [ "5" "6" "7" ]);·········
+2
-1
pkgs/development/compilers/llvm/git/default.nix
+2
-1
pkgs/development/compilers/llvm/git/default.nix
···version = "${release_version}${dash-candidate}"; # differentiating these (variables) is important for RCs
+70
pkgs/development/compilers/llvm/update-git.py
+70
pkgs/development/compilers/llvm/update-git.py
···+clang_revision = re.search(r"^CLANG_REVISION = '(.+)'$", clang_update_script, re.MULTILINE).group(1)+clang_commit_short = re.search(r"llvmorg-[0-9]+-init-[0-9]+-g([0-9a-f]{8})", clang_revision).group(1)+release_version = re.search(r"^RELEASE_VERSION = '(.+)'$", clang_update_script, re.MULTILINE).group(1)+date = datetime.fromisoformat(commit['commit']['committer']['date'].rstrip('Z')).date().isoformat()+hash = nix_prefetch_url(f'https://github.com/llvm/llvm-project/archive/{commit["sha"]}.tar.gz')+result = re.sub(r'^ release_version = ".+";', f' release_version = "{release_version}";', line)
+2
-2
pkgs/development/compilers/mezzo/default.nix
+2
-2
pkgs/development/compilers/mezzo/default.nix
···-{ lib, stdenv, fetchFromGitHub, ocaml, findlib, ocamlbuild, menhir, yojson, ulex, pprint, fix, functory }:+{ lib, stdenv, fetchFromGitHub, ocaml, findlib, ocamlbuild, menhir, menhirLib, yojson, ulex, pprint, fix, functory }:···
+4
-4
pkgs/development/compilers/reason/default.nix
+4
-4
pkgs/development/compilers/reason/default.nix
······
+1
-2
pkgs/development/libraries/libunwind/default.nix
+1
-2
pkgs/development/libraries/libunwind/default.nix
···
+3
-3
pkgs/development/ocaml-modules/dolmen/default.nix
+3
-3
pkgs/development/ocaml-modules/dolmen/default.nix
······
+2
-2
pkgs/development/ocaml-modules/earlybird/default.nix
+2
-2
pkgs/development/ocaml-modules/earlybird/default.nix
···-, cmdliner, dap, fmt, iter, logs, lru, lwt_ppx, lwt_react, menhir, path_glob, ppx_deriving_yojson+, cmdliner, dap, fmt, iter, logs, lru, lwt_ppx, lwt_react, menhir, menhirLib, path_glob, ppx_deriving_yojson···-buildInputs = [ cmdliner dap fmt iter logs lru lwt_ppx lwt_react menhir path_glob ppx_deriving_yojson ];+buildInputs = [ cmdliner dap fmt iter logs lru lwt_ppx lwt_react menhir menhirLib path_glob ppx_deriving_yojson ];
+13
-13
pkgs/development/ocaml-modules/menhir/default.nix
+13
-13
pkgs/development/ocaml-modules/menhir/default.nix
···-if version == "20140422" then { url = "http://cristal.inria.fr/~fpottier/menhir/menhir-20140422.tar.gz"; sha256 = "1ki1f2id6a14h9xpv2k8yb6px7dyw8cvwh39csyzj4qpzx7wia0d"; }-else if version == "20170712" then { url = "http://gallium.inria.fr/~fpottier/menhir/menhir-20170712.tar.gz"; sha256 = "006hq3bwj81j67f2k9cgzj5wr4hai8j36925p5n3sd2j01ljsj6a"; }-else if version == "20181113" then { url = "https://gitlab.inria.fr/fpottier/menhir/repository/20181113/archive.tar.gz"; sha256 = "0hl611l0gyl7b2bm7m0sk7vjz14m0i7znrnjq3gw58pylj934dx4"; }-else if version == "20190626" then { url = "https://gitlab.inria.fr/fpottier/menhir/repository/20190626/archive.tar.gz"; sha256 = "0nigjnskg89knyi2zj1w211mb1pvkrwfqpz9a0qbw80k3hm8gg0h"; }
-43
pkgs/development/ocaml-modules/menhir/generic.nix
-43
pkgs/development/ocaml-modules/menhir/generic.nix
···
+29
pkgs/development/ocaml-modules/menhir/lib.nix
+29
pkgs/development/ocaml-modules/menhir/lib.nix
···
+15
pkgs/development/ocaml-modules/menhir/sdk.nix
+15
pkgs/development/ocaml-modules/menhir/sdk.nix
···
+3
-3
pkgs/development/ocaml-modules/mustache/default.nix
+3
-3
pkgs/development/ocaml-modules/mustache/default.nix
······
+24
pkgs/development/ocaml-modules/stdcompat/default.nix
+24
pkgs/development/ocaml-modules/stdcompat/default.nix
···+url = "https://github.com/thierry-martinez/stdcompat/releases/download/v${version}/stdcompat-${version}.tar.gz";
+8
pkgs/development/python-modules/aiomultiprocess/default.nix
+8
pkgs/development/python-modules/aiomultiprocess/default.nix
···
-7
pkgs/development/python-modules/angrop/default.nix
-7
pkgs/development/python-modules/angrop/default.nix
···
+11
-18
pkgs/development/python-modules/pyls-black/default.nix
+11
-18
pkgs/development/python-modules/pyls-black/default.nix
···-url = "https://github.com/rupert/pyls-black/commit/728207b540d9c25eb0d1cd96419ebfda2e257f63.patch";
+1
-1
pkgs/development/python-modules/zipstream/default.nix
+1
-1
pkgs/development/python-modules/zipstream/default.nix
+2
-2
pkgs/development/tools/analysis/frama-c/default.nix
+2
-2
pkgs/development/tools/analysis/frama-c/default.nix
······
+2
-2
pkgs/development/tools/esbuild/default.nix
+2
-2
pkgs/development/tools/esbuild/default.nix
···
+5
-21
pkgs/development/tools/misc/coccinelle/default.nix
+5
-21
pkgs/development/tools/misc/coccinelle/default.nix
···
+3
-5
pkgs/development/tools/misc/strace/default.nix
+3
-5
pkgs/development/tools/misc/strace/default.nix
······
+2
-2
pkgs/development/tools/ocaml/js_of_ocaml/compiler.nix
+2
-2
pkgs/development/tools/ocaml/js_of_ocaml/compiler.nix
······
+4
pkgs/development/tools/ocaml/merlin/4.x.nix
+4
pkgs/development/tools/ocaml/merlin/4.x.nix
+8
pkgs/development/tools/ocaml/ocamlformat/generic.nix
+8
pkgs/development/tools/ocaml/ocamlformat/generic.nix
············
+10
-2
pkgs/os-specific/linux/pam_u2f/default.nix
+10
-2
pkgs/os-specific/linux/pam_u2f/default.nix
······
+1
-1
pkgs/tools/audio/liquidsoap/full.nix
+1
-1
pkgs/tools/audio/liquidsoap/full.nix
···
+2
-2
pkgs/tools/misc/plantuml/default.nix
+2
-2
pkgs/tools/misc/plantuml/default.nix
···
+3
-3
pkgs/tools/misc/zellij/default.nix
+3
-3
pkgs/tools/misc/zellij/default.nix
···
+1
-1
pkgs/tools/typesetting/satysfi/default.nix
+1
-1
pkgs/tools/typesetting/satysfi/default.nix
+4
-5
pkgs/top-level/all-packages.nix
+4
-5
pkgs/top-level/all-packages.nix
······
+6
pkgs/top-level/ocaml-packages.nix
+6
pkgs/top-level/ocaml-packages.nix
······