Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub 37314035 3262d954

+816 -478
+42 -40
lib/trivial.nix
··· 12 version 13 versionSuffix 14 warn; 15 in { 16 17 ## Simple (higher order) functions ··· 718 importTOML = path: 719 builtins.fromTOML (builtins.readFile path); 720 721 - ## Warnings 722 723 - # See https://github.com/NixOS/nix/issues/749. Eventually we'd like these 724 - # to expand to Nix builtins that carry metadata so that Nix can filter out 725 - # the INFO messages without parsing the message string. 726 - # 727 - # Usage: 728 - # { 729 - # foo = lib.warn "foo is deprecated" oldFoo; 730 - # bar = lib.warnIf (bar == "") "Empty bar is deprecated" bar; 731 - # } 732 - # 733 - # TODO: figure out a clever way to integrate location information from 734 - # something like __unsafeGetAttrPos. 735 736 - /** 737 - Print a warning before returning the second argument. This function behaves 738 - like `builtins.trace`, but requires a string message and formats it as a 739 - warning, including the `warning: ` prefix. 740 741 - To get a call stack trace and abort evaluation, set the environment variable 742 - `NIX_ABORT_ON_WARN=true` and set the Nix options `--option pure-eval false --show-trace` 743 744 # Inputs 745 746 - `msg` 747 748 - : Warning message to print. 749 750 - `val` 751 752 : Value to return as-is. 753 754 # Type 755 756 ``` 757 - string -> a -> a 758 ``` 759 */ 760 warn = 761 - if lib.elem (builtins.getEnv "NIX_ABORT_ON_WARN") ["1" "true" "yes"] 762 - then msg: builtins.trace "warning: ${msg}" (abort "NIX_ABORT_ON_WARN=true; warnings are treated as unrecoverable errors.") 763 - else msg: builtins.trace "warning: ${msg}"; 764 765 /** 766 - Like warn, but only warn when the first argument is `true`. 767 768 769 # Inputs 770 771 - `cond` 772 773 - : 1\. Function argument 774 775 - `msg` 776 777 - : 2\. Function argument 778 779 - `val` 780 781 : Value to return as-is. 782 783 # Type 784 785 ``` 786 - bool -> string -> a -> a 787 ``` 788 */ 789 warnIf = cond: msg: if cond then warn msg else x: x; 790 791 /** 792 - Like warnIf, but negated (warn if the first argument is `false`). 793 794 795 # Inputs 796 797 - `cond` 798 799 - : 1\. Function argument 800 801 - `msg` 802 803 - : 2\. Function argument 804 805 - `val` 806 807 : Value to return as-is. 808 809 # Type 810 811 ``` 812 - bool -> string -> a -> a 813 ``` 814 */ 815 warnIfNot = cond: msg: if cond then x: x else warn msg;
··· 12 version 13 versionSuffix 14 warn; 15 + inherit (lib) 16 + isString 17 + ; 18 in { 19 20 ## Simple (higher order) functions ··· 721 importTOML = path: 722 builtins.fromTOML (builtins.readFile path); 723 724 + /** 725 726 + `warn` *`message`* *`value`* 727 728 + Print a warning before returning the second argument. 729 730 + See [`builtins.warn`](https://nix.dev/manual/nix/latest/language/builtins.html#builtins-warn) (Nix >= 2.23). 731 + On older versions, the Nix 2.23 behavior is emulated with [`builtins.trace`](https://nix.dev/manual/nix/latest/language/builtins.html#builtins-warn), including the [`NIX_ABORT_ON_WARN`](https://nix.dev/manual/nix/latest/command-ref/conf-file#conf-abort-on-warn) behavior, but not the `nix.conf` setting or command line option. 732 733 # Inputs 734 735 + *`message`* (String) 736 737 + : Warning message to print before evaluating *`value`*. 738 739 + *`value`* (any value) 740 741 : Value to return as-is. 742 743 # Type 744 745 ``` 746 + String -> a -> a 747 ``` 748 */ 749 warn = 750 + # Since Nix 2.23, https://github.com/NixOS/nix/pull/10592 751 + builtins.warn or ( 752 + let mustAbort = lib.elem (builtins.getEnv "NIX_ABORT_ON_WARN") ["1" "true" "yes"]; 753 + in 754 + # Do not eta reduce v, so that we have the same strictness as `builtins.warn`. 755 + msg: v: 756 + # `builtins.warn` requires a string message, so we enforce that in our implementation, so that callers aren't accidentally incompatible with newer Nix versions. 757 + assert isString msg; 758 + if mustAbort 759 + then builtins.trace "evaluation warning: ${msg}" (abort "NIX_ABORT_ON_WARN=true; warnings are treated as unrecoverable errors.") 760 + else builtins.trace "evaluation warning: ${msg}" v 761 + ); 762 763 /** 764 765 + `warnIf` *`condition`* *`message`* *`value`* 766 + 767 + Like `warn`, but only warn when the first argument is `true`. 768 769 # Inputs 770 771 + *`condition`* (Boolean) 772 773 + : `true` to trigger the warning before continuing with *`value`*. 774 775 + *`message`* (String) 776 777 + : Warning message to print before evaluating 778 779 + *`value`* (any value) 780 781 : Value to return as-is. 782 783 # Type 784 785 ``` 786 + Bool -> String -> a -> a 787 ``` 788 */ 789 warnIf = cond: msg: if cond then warn msg else x: x; 790 791 /** 792 793 + `warnIfNot` *`condition`* *`message`* *`value`* 794 + 795 + Like `warnIf`, but negated: warn if the first argument is `false`. 796 797 # Inputs 798 799 + *`condition`* 800 801 + : `false` to trigger the warning before continuing with `val`. 802 803 + *`message`* 804 805 + : Warning message to print before evaluating *`value`*. 806 807 + *`value`* 808 809 : Value to return as-is. 810 811 # Type 812 813 ``` 814 + Boolean -> String -> a -> a 815 ``` 816 */ 817 warnIfNot = cond: msg: if cond then x: x else warn msg;
+2
nixos/doc/manual/release-notes/rl-2411.section.md
··· 56 57 - [Apache Tika](https://github.com/apache/tika), a toolkit that detects and extracts metadata and text from over a thousand different file types. Available as [services.tika](option.html#opt-services.tika). 58 59 ## Backward Incompatibilities {#sec-release-24.11-incompatibilities} 60 61 - `transmission` package has been aliased with a `trace` warning to `transmission_3`. Since [Transmission 4 has been released last year](https://github.com/transmission/transmission/releases/tag/4.0.0), and Transmission 3 will eventually go away, it was decided perform this warning alias to make people aware of the new version. The `services.transmission.package` defaults to `transmission_3` as well because the upgrade can cause data loss in certain specific usage patterns (examples: [#5153](https://github.com/transmission/transmission/issues/5153), [#6796](https://github.com/transmission/transmission/issues/6796)). Please make sure to back up to your data directory per your usage:
··· 56 57 - [Apache Tika](https://github.com/apache/tika), a toolkit that detects and extracts metadata and text from over a thousand different file types. Available as [services.tika](option.html#opt-services.tika). 58 59 + - [Improved File Manager](https://github.com/misterunknown/ifm), or IFM, a single-file web-based file manager. 60 + 61 ## Backward Incompatibilities {#sec-release-24.11-incompatibilities} 62 63 - `transmission` package has been aliased with a `trace` warning to `transmission_3`. Since [Transmission 4 has been released last year](https://github.com/transmission/transmission/releases/tag/4.0.0), and Transmission 3 will eventually go away, it was decided perform this warning alias to make people aware of the new version. The `services.transmission.package` defaults to `transmission_3` as well because the upgrade can cause data loss in certain specific usage patterns (examples: [#5153](https://github.com/transmission/transmission/issues/5153), [#6796](https://github.com/transmission/transmission/issues/6796)). Please make sure to back up to your data directory per your usage:
+1
nixos/modules/module-list.nix
··· 1405 ./services/web-apps/honk.nix 1406 ./services/web-apps/icingaweb2/icingaweb2.nix 1407 ./services/web-apps/icingaweb2/module-monitoring.nix 1408 ./services/web-apps/invidious.nix 1409 ./services/web-apps/invoiceplane.nix 1410 ./services/web-apps/isso.nix
··· 1405 ./services/web-apps/honk.nix 1406 ./services/web-apps/icingaweb2/icingaweb2.nix 1407 ./services/web-apps/icingaweb2/module-monitoring.nix 1408 + ./services/web-apps/ifm.nix 1409 ./services/web-apps/invidious.nix 1410 ./services/web-apps/invoiceplane.nix 1411 ./services/web-apps/isso.nix
+81
nixos/modules/services/web-apps/ifm.nix
···
··· 1 + { config, lib, pkgs, ...}: 2 + let 3 + cfg = config.services.ifm; 4 + 5 + version = "4.0.2"; 6 + src = pkgs.fetchurl { 7 + url = "https://github.com/misterunknown/ifm/releases/download/v${version}/cdn.ifm.php"; 8 + hash = "sha256-37WbRM6D7JGmd//06zMhxMGIh8ioY8vRUmxX4OHgqBE="; 9 + }; 10 + 11 + php = pkgs.php83; 12 + in { 13 + options.services.ifm = { 14 + enable = lib.mkEnableOption '' 15 + Improved file manager, a single-file web-based filemanager 16 + 17 + Lightweight and minimal, served using PHP's built-in server 18 + ''; 19 + 20 + dataDir = lib.mkOption { 21 + type = lib.types.str; 22 + description = "Directory to serve throught the file managing service"; 23 + }; 24 + 25 + listenAddress = lib.mkOption { 26 + type = lib.types.str; 27 + default = "127.0.0.1"; 28 + description = "Address on which the service is listening"; 29 + example = "0.0.0.0"; 30 + }; 31 + 32 + port = lib.mkOption { 33 + type = lib.types.port; 34 + default = 9090; 35 + description = "Port on which to serve the IFM service"; 36 + }; 37 + 38 + settings = lib.mkOption { 39 + type = with lib.types; attrsOf anything; 40 + default = {}; 41 + description = '' 42 + Configuration of the IFM service. 43 + 44 + See [the documentation](https://github.com/misterunknown/ifm/wiki/Configuration) 45 + for available options and default values. 46 + ''; 47 + example = { 48 + IFM_GUI_SHOWPATH = 0; 49 + }; 50 + }; 51 + }; 52 + 53 + config = lib.mkIf cfg.enable { 54 + systemd.services.ifm = { 55 + description = "Improved file manager, a single-file web based filemanager"; 56 + 57 + after = [ "network-online.target" ]; 58 + wantedBy = [ "multi-user.target" ]; 59 + 60 + environment = { 61 + IFM_ROOT_DIR = "/data"; 62 + } // (builtins.mapAttrs (_: val: toString val) cfg.settings); 63 + 64 + script = '' 65 + mkdir -p /tmp/ifm 66 + ln -s ${src} /tmp/ifm/index.php 67 + ${lib.getExe php} -S ${cfg.listenAddress}:${builtins.toString cfg.port} -t /tmp/ifm 68 + ''; 69 + 70 + serviceConfig = { 71 + DynamicUser = true; 72 + User = "ifm"; 73 + StandardOutput = "journal"; 74 + BindPaths = "${cfg.dataDir}:/data"; 75 + PrivateTmp = true; 76 + }; 77 + }; 78 + }; 79 + 80 + meta.maintainers = with lib.maintainers; [ litchipi ]; 81 + }
+1
nixos/tests/all-tests.nix
··· 441 hydra = handleTest ./hydra {}; 442 i3wm = handleTest ./i3wm.nix {}; 443 icingaweb2 = handleTest ./icingaweb2.nix {}; 444 iftop = handleTest ./iftop.nix {}; 445 incron = handleTest ./incron.nix {}; 446 incus = pkgs.recurseIntoAttrs (handleTest ./incus { inherit handleTestOn; inherit (pkgs) incus; });
··· 441 hydra = handleTest ./hydra {}; 442 i3wm = handleTest ./i3wm.nix {}; 443 icingaweb2 = handleTest ./icingaweb2.nix {}; 444 + ifm = handleTest ./ifm.nix {}; 445 iftop = handleTest ./iftop.nix {}; 446 incron = handleTest ./incron.nix {}; 447 incus = pkgs.recurseIntoAttrs (handleTest ./incus { inherit handleTestOn; inherit (pkgs) incus; });
+36
nixos/tests/ifm.nix
···
··· 1 + import ./make-test-python.nix ({ pkgs, ...} : 2 + 3 + { 4 + name = "ifm"; 5 + meta = with pkgs.lib.maintainers; { 6 + maintainers = [ litchipi ]; 7 + }; 8 + 9 + nodes = { 10 + server = rec { 11 + services.ifm = { 12 + enable = true; 13 + port = 9001; 14 + dataDir = "/data"; 15 + }; 16 + 17 + system.activationScripts.ifm-setup-dir = '' 18 + mkdir -p ${services.ifm.dataDir} 19 + chmod u+w,g+w,o+w ${services.ifm.dataDir} 20 + ''; 21 + }; 22 + }; 23 + 24 + testScript = '' 25 + start_all() 26 + server.wait_for_unit("ifm.service") 27 + server.wait_for_open_port(9001) 28 + server.succeed("curl --fail http://localhost:9001") 29 + 30 + server.succeed("echo \"testfile\" > testfile && shasum testfile >> checksums") 31 + server.succeed("curl --fail http://localhost:9001 -X POST -F \"api=upload\" -F \"dir=\" -F \"file=@testfile\" | grep \"OK\""); 32 + server.succeed("rm testfile") 33 + server.succeed("curl --fail http://localhost:9001 -X POST -F \"api=download\" -F \"filename=testfile\" -F \"dir=\" --output testfile"); 34 + server.succeed("shasum testfile >> checksums && shasum --check checksums") 35 + ''; 36 + })
+2 -2
pkgs/applications/blockchains/ledger-live-desktop/default.nix
··· 2 3 let 4 pname = "ledger-live-desktop"; 5 - version = "2.83.0"; 6 7 src = fetchurl { 8 url = "https://download.live.ledger.com/${pname}-${version}-linux-x86_64.AppImage"; 9 - hash = "sha256-W7K6jRM248PCsUEVhIPeb2em70QwKJ/20RgKzuwj29g="; 10 }; 11 12 appimageContents = appimageTools.extractType2 {
··· 2 3 let 4 pname = "ledger-live-desktop"; 5 + version = "2.84.0"; 6 7 src = fetchurl { 8 url = "https://download.live.ledger.com/${pname}-${version}-linux-x86_64.AppImage"; 9 + hash = "sha256-VqPiFcquR1AbtH3oZJ5l+/KmvFUGCdBrwZuPAJ+26nw="; 10 }; 11 12 appimageContents = appimageTools.extractType2 {
+8 -5
pkgs/applications/editors/emacs/elisp-packages/manual-packages/copilot/default.nix
··· 2 lib, 3 dash, 4 editorconfig, 5 fetchFromGitHub, 6 nodejs, 7 s, ··· 9 }: 10 melpaBuild { 11 pname = "copilot"; 12 - version = "0-unstable-2023-12-26"; 13 14 src = fetchFromGitHub { 15 - owner = "zerolfx"; 16 repo = "copilot.el"; 17 - rev = "d4fa14cea818e041b4a536c5052cf6d28c7223d7"; 18 - sha256 = "sha256-Tzs0Dawqa+OD0RSsf66ORbH6MdBp7BMXX7z+5UuNwq4="; 19 }; 20 21 files = ''(:defaults "dist")''; ··· 23 packageRequires = [ 24 dash 25 editorconfig 26 s 27 ]; 28 ··· 30 31 meta = { 32 description = "Unofficial copilot plugin for Emacs"; 33 - homepage = "https://github.com/zerolfx/copilot.el"; 34 license = lib.licenses.mit; 35 platforms = [ 36 "x86_64-darwin" 37 "x86_64-linux"
··· 2 lib, 3 dash, 4 editorconfig, 5 + f, 6 fetchFromGitHub, 7 nodejs, 8 s, ··· 10 }: 11 melpaBuild { 12 pname = "copilot"; 13 + version = "0-unstable-2024-05-01"; 14 15 src = fetchFromGitHub { 16 + owner = "copilot-emacs"; 17 repo = "copilot.el"; 18 + rev = "733bff26450255e092c10873580e9abfed8a81b8"; 19 + sha256 = "sha256-Knp36PtgA73gtYO+W1clQfr570bKCxTFsGW3/iH86A0="; 20 }; 21 22 files = ''(:defaults "dist")''; ··· 24 packageRequires = [ 25 dash 26 editorconfig 27 + f 28 s 29 ]; 30 ··· 32 33 meta = { 34 description = "Unofficial copilot plugin for Emacs"; 35 + homepage = "https://github.com/copilot-emacs/copilot.el"; 36 license = lib.licenses.mit; 37 + maintainers = with lib.maintainers; [ bbigras ]; 38 platforms = [ 39 "x86_64-darwin" 40 "x86_64-linux"
+3 -2
pkgs/applications/misc/safeeyes/default.nix
··· 18 19 buildPythonApplication rec { 20 pname = "safeeyes"; 21 - version = "2.1.9"; 22 23 src = fetchPypi { 24 inherit pname version; 25 - hash = "sha256-Z1c1DVwCwPiOPvCYNsoXJBMfVzIQA+/6wStV8BShahc="; 26 }; 27 28 postPatch = '' ··· 48 dbus-python 49 croniter 50 setuptools 51 ]; 52 53 # Prevent double wrapping, let the Python wrapper use the args in preFixup.
··· 18 19 buildPythonApplication rec { 20 pname = "safeeyes"; 21 + version = "2.2.1"; 22 23 src = fetchPypi { 24 inherit pname version; 25 + hash = "sha256-Ub/KcNG2jg4revtfOpr0vDyHzw3vCy+bqLeXX4Po+cw="; 26 }; 27 28 postPatch = '' ··· 48 dbus-python 49 croniter 50 setuptools 51 + packaging 52 ]; 53 54 # Prevent double wrapping, let the Python wrapper use the args in preFixup.
+2 -2
pkgs/applications/science/chemistry/jmol/default.nix
··· 25 }; 26 in 27 stdenv.mkDerivation rec { 28 - version = "16.2.17"; 29 pname = "jmol"; 30 31 src = let 32 baseVersion = "${lib.versions.major version}.${lib.versions.minor version}"; 33 in fetchurl { 34 url = "mirror://sourceforge/jmol/Jmol/Version%20${baseVersion}/Jmol%20${version}/Jmol-${version}-binary.tar.gz"; 35 - hash = "sha256-1iBLLfaoztbphhrG3NVWH+PVSbCZd+HQqvCYF3H9S/E="; 36 }; 37 38 patchPhase = ''
··· 25 }; 26 in 27 stdenv.mkDerivation rec { 28 + version = "16.2.19"; 29 pname = "jmol"; 30 31 src = let 32 baseVersion = "${lib.versions.major version}.${lib.versions.minor version}"; 33 in fetchurl { 34 url = "mirror://sourceforge/jmol/Jmol/Version%20${baseVersion}/Jmol%20${version}/Jmol-${version}-binary.tar.gz"; 35 + hash = "sha256-Lpy5A7TWxSrBeGSsp+HlEXDrbkB840QZlvIeop6YUTw="; 36 }; 37 38 patchPhase = ''
+86
pkgs/applications/science/math/maxima/5.47.0-CVE-2024-34490.patch
···
··· 1 + Based on upstream https://sourceforge.net/p/maxima/code/ci/51704ccb090f6f971b641e4e0b7c1c22c4828bf7/ 2 + adjusted to apply to 5.47.0 3 + 4 + diff --git a/src/gnuplot_def.lisp b/src/gnuplot_def.lisp 5 + index 80c174bd5..6fdc8da6d 100644 6 + --- a/src/gnuplot_def.lisp 7 + +++ b/src/gnuplot_def.lisp 8 + @@ -286,7 +286,7 @@ 9 + (format nil "set term postscript eps color solid lw 2 size 16.4 cm, 12.3 cm font \",24\" ~a" gstrings))) 10 + (if (getf plot-options :gnuplot_out_file) 11 + (setq out-file (getf plot-options :gnuplot_out_file)) 12 + - (setq out-file "maxplot.ps"))) 13 + + (setq out-file (format nil "~a.ps" (random-name 16))))) 14 + ((eq (getf plot-options :gnuplot_term) '$dumb) 15 + (if (getf plot-options :gnuplot_dumb_term_command) 16 + (setq terminal-command 17 + @@ -294,7 +294,7 @@ 18 + (setq terminal-command "set term dumb 79 22")) 19 + (if (getf plot-options :gnuplot_out_file) 20 + (setq out-file (getf plot-options :gnuplot_out_file)) 21 + - (setq out-file "maxplot.txt"))) 22 + + (setq out-file (format nil "~a.txt" (random-name 16))))) 23 + ((eq (getf plot-options :gnuplot_term) '$default) 24 + (if (getf plot-options :gnuplot_default_term_command) 25 + (setq terminal-command 26 + diff --git a/src/plot.lisp b/src/plot.lisp 27 + index fb2b3136b..8877f7025 100644 28 + --- a/src/plot.lisp 29 + +++ b/src/plot.lisp 30 + @@ -1755,16 +1755,24 @@ plot3d([cos(y)*(10.0+6*cos(x)), sin(y)*(10.0+6*cos(x)),-6*sin(x)], 31 + 32 + (defvar $xmaxima_plot_command "xmaxima") 33 + 34 + +;; random-file-name 35 + +;; Creates a random word of 'count' alphanumeric characters 36 + +(defun random-name (count) 37 + + (let ((chars "0123456789abcdefghijklmnopqrstuvwxyz") (name "")) 38 + + (setf *random-state* (make-random-state t)) 39 + + (dotimes (i count) 40 + + (setq name (format nil "~a~a" name (aref chars (random 36))))) 41 + + name)) 42 + + 43 + (defun plot-set-gnuplot-script-file-name (options) 44 + (let ((gnuplot-term (getf options :gnuplot_term)) 45 + (gnuplot-out-file (getf options :gnuplot_out_file))) 46 + (if (and (find (getf options :plot_format) '($gnuplot_pipes $gnuplot)) 47 + (eq gnuplot-term '$default) gnuplot-out-file) 48 + (plot-file-path gnuplot-out-file t options) 49 + - (plot-file-path 50 + - (format nil "maxout~d.~(~a~)" 51 + - (getpid) 52 + - (ensure-string (getf options :plot_format))) nil options)))) 53 + + (plot-file-path (format nil "~a.~a" (random-name 16) 54 + + (ensure-string (getf options :plot_format))) 55 + + nil options)))) 56 + 57 + (defun plot-temp-file0 (file &optional (preserve-file nil)) 58 + (let ((filename 59 + @@ -2577,9 +2585,13 @@ plot2d ( x^2+y^2 = 1, [x, -2, 2], [y, -2 ,2]); 60 + (format dest "}~%")) 61 + (format dest "}~%")) 62 + 63 + +; TODO: Check whether this function is still being used (villate 20240325) 64 + (defun show-open-plot (ans file) 65 + (cond ($show_openplot 66 + - (with-open-file (st1 (plot-temp-file (format nil "maxout~d.xmaxima" (getpid))) :direction :output :if-exists :supersede) 67 + + (with-open-file 68 + + (st1 (plot-temp-file 69 + + (format nil "~a.xmaxima" (random-name 16))) 70 + + :direction :output :if-exists :supersede) 71 + (princ ans st1)) 72 + ($system (concatenate 'string *maxima-prefix* 73 + (if (string= *autoconf-windows* "true") "\\bin\\" "/bin/") 74 + diff --git a/src/xmaxima_def.lisp b/src/xmaxima_def.lisp 75 + index b6513b564..5a13b6141 100644 76 + --- a/src/xmaxima_def.lisp 77 + +++ b/src/xmaxima_def.lisp 78 + @@ -431,7 +431,7 @@ 79 + (format $pstream "}~%")))))) 80 + 81 + (defmethod plot-shipout ((plot xmaxima-plot) options &optional output-file) 82 + - (let ((file (plot-file-path (format nil "maxout~d.xmaxima" (getpid))))) 83 + + (let ((file (plot-file-path (format nil "~a.xmaxima" (random-name 16))))) 84 + (cond ($show_openplot 85 + (with-open-file (fl 86 + #+sbcl (sb-ext:native-namestring file)
+4 -2
pkgs/applications/science/math/maxima/default.nix
··· 20 in 21 stdenv.mkDerivation (finalAttrs: { 22 pname = "maxima"; 23 - version = "5.46.0"; 24 25 src = fetchurl { 26 url = "mirror://sourceforge/maxima/maxima-${finalAttrs.version}.tar.gz"; 27 - sha256 = "sha256-c5Dwa0jaZckDPosvYpuXi5AFZFSlQCLbfecOIiWqiwc="; 28 }; 29 30 nativeBuildInputs = [ ··· 79 url = "https://raw.githubusercontent.com/sagemath/sage/07d6c37d18811e2b377a9689790a7c5e24da16ba/build/pkgs/maxima/patches/undoing_true_false_printing_patch.patch"; 80 sha256 = "0fvi3rcjv6743sqsbgdzazy9jb6r1p1yq63zyj9fx42wd1hgf7yx"; 81 }) 82 ]; 83 84 # The test suite is disabled since 5.42.2 because of the following issues:
··· 20 in 21 stdenv.mkDerivation (finalAttrs: { 22 pname = "maxima"; 23 + version = "5.47.0"; 24 25 src = fetchurl { 26 url = "mirror://sourceforge/maxima/maxima-${finalAttrs.version}.tar.gz"; 27 + sha256 = "sha256-kQQCGyT9U+jAOpg1CctC6TepJejAyFwzXXcJoU/UD3o="; 28 }; 29 30 nativeBuildInputs = [ ··· 79 url = "https://raw.githubusercontent.com/sagemath/sage/07d6c37d18811e2b377a9689790a7c5e24da16ba/build/pkgs/maxima/patches/undoing_true_false_printing_patch.patch"; 80 sha256 = "0fvi3rcjv6743sqsbgdzazy9jb6r1p1yq63zyj9fx42wd1hgf7yx"; 81 }) 82 + 83 + ./5.47.0-CVE-2024-34490.patch 84 ]; 85 86 # The test suite is disabled since 5.42.2 because of the following issues:
+293 -258
pkgs/by-name/bi/bicep/deps.nix
··· 2 # Please dont edit it manually, your changes might get overwritten! 3 4 { fetchNuGet }: [ 5 - (fetchNuGet { pname = "Azure.Bicep.Internal.RoslynAnalyzers"; version = "0.1.38"; sha256 = "1b13vbl0y851nr7rfhyxc0djihxfr7xv010f9zvvbibyz5wqis7v"; }) 6 - (fetchNuGet { pname = "Azure.Bicep.Types"; version = "0.5.9"; sha256 = "02v5jzrap5flk5r6jwbw3mzvkxb51kmz4g71j2nnikqgnc4v5dh2"; }) 7 - (fetchNuGet { pname = "Azure.Bicep.Types.Az"; version = "0.2.692"; sha256 = "1cc48z47wsqyhzszpkmm949qk85b9jq04qnahk4xwg643xkysr1b"; }) 8 - (fetchNuGet { pname = "Azure.Bicep.Types.K8s"; version = "0.1.626"; sha256 = "1c07igq6jqxkg9iln452fnng2n6ddd0008vb5lgbzdpgp1amz2ji"; }) 9 - (fetchNuGet { pname = "Azure.Containers.ContainerRegistry"; version = "1.1.1"; sha256 = "0hn6mq1bffcq7d5w4rj4ffdxb3grvymzrpyl1qrbxksqpfbd0bh4"; }) 10 - (fetchNuGet { pname = "Azure.Core"; version = "1.36.0"; sha256 = "14lsc6zik7s5by3gp86pf77wh58fcqrjy2xhx5p03gmhdn6iz2cn"; }) 11 - (fetchNuGet { pname = "Azure.Core"; version = "1.38.0"; sha256 = "1rnnip757kdzipfvrz9qc730mpkcq8r36lspwx20p0s9hss8qdc3"; }) 12 - (fetchNuGet { pname = "Azure.Core"; version = "1.39.0"; sha256 = "0b36vi12pzqls6ad1dwzc8zq8wb07rkg2y52divl8gh2za43x5wp"; }) 13 - (fetchNuGet { pname = "Azure.Deployments.Core"; version = "1.0.1243.1"; sha256 = "18lh45y9axc494hpxdp8w6d8c92n8m6k4lqjyh4znd2mcmm57wbz"; }) 14 - (fetchNuGet { pname = "Azure.Deployments.Expression"; version = "1.0.1243.1"; sha256 = "1shk9amp9d3v6lbf2s0j1fxf5xm468fvphhnni95v6w2cpv1fdv8"; }) 15 - (fetchNuGet { pname = "Azure.Deployments.Internal.GenerateNotice"; version = "0.1.38"; sha256 = "00jzm0c1ch24mh50hqmzs2jxda929zg1j1dgnhs5gbsyk7zjlvrd"; }) 16 - (fetchNuGet { pname = "Azure.Deployments.Templates"; version = "1.0.1243.1"; sha256 = "11glwwxq9xzi3vrnqx833dry9n6ykspf6gfab0g23d8fygd5d2rf"; }) 17 - (fetchNuGet { pname = "Azure.Identity"; version = "1.11.3"; sha256 = "1hxjr7np25b3pr2z8vnkq6v4dvmrd7brm8zfz2qggvpqr48yyzxf"; }) 18 - (fetchNuGet { pname = "Azure.ResourceManager"; version = "1.11.1"; sha256 = "0vfp2rs4r9x3zkvw0za8q6xz3rrb8nywjd1137rpbpy0zx7qnbry"; }) 19 - (fetchNuGet { pname = "Azure.ResourceManager.Resources"; version = "1.7.3"; sha256 = "1nlaammdg10xyq7g0kig093l6nl1fxn2yk6dbc7xqagfmdnkbx29"; }) 20 - (fetchNuGet { pname = "coverlet.collector"; version = "6.0.2"; sha256 = "0fll8yssdzi2wv8l26qz2zl0qqrp5nlbdqxjwfh5p356nd991m1d"; }) 21 - (fetchNuGet { pname = "FluentAssertions"; version = "6.12.0"; sha256 = "04fhn67930zv3i0d8xbrbw5vwz99c83bbvgdwqiir55vw5xlys9c"; }) 22 - (fetchNuGet { pname = "Humanizer.Core"; version = "2.14.1"; sha256 = "1ai7hgr0qwd7xlqfd92immddyi41j3ag91h3594yzfsgsy6yhyqi"; }) 23 - (fetchNuGet { pname = "IPNetwork2"; version = "2.6.598"; sha256 = "03nxkiwy1bxgpv5n1lfd06grdyjc10a3k9gyc04rhzysjsswiy0l"; }) 24 - (fetchNuGet { pname = "JetBrains.Annotations"; version = "2023.3.0"; sha256 = "0vp4mpn6gfckn8grzjm1jxlbqiq2fglm2rk9wq787adw7rxs8k7w"; }) 25 - (fetchNuGet { pname = "Json.More.Net"; version = "2.0.1.2"; sha256 = "1fzw9d55hvynrwz01gj0xv6ybjm7nsrm2vxqy6d15wr75w3pyyky"; }) 26 - (fetchNuGet { pname = "JsonPatch.Net"; version = "3.1.0"; sha256 = "1dq9wl2xvkq8yplq1l9qknfj4jb8824kv8szbjcvnjpn44x8xw3f"; }) 27 - (fetchNuGet { pname = "JsonPath.Net"; version = "1.1.0"; sha256 = "0jn5k2iwr0q8cii63nzxr4m54zrpgd4q9iyx8jghq7xisshqy08m"; }) 28 - (fetchNuGet { pname = "JsonPointer.Net"; version = "5.0.0"; sha256 = "0rwxhyf2brw5x56pndfyxpi8qawx7jv9xsbbhyr9873jj8g9f9rq"; }) 29 - (fetchNuGet { pname = "MessagePack"; version = "2.5.108"; sha256 = "0cnaz28lhrdmavnxjkakl9q8p2yv8mricvp1b0wxdfnz8v41gwzs"; }) 30 - (fetchNuGet { pname = "MessagePack.Annotations"; version = "2.5.108"; sha256 = "0nb1fx8dwl7304kw0bc375bvlhb7pg351l4cl3vqqd7d8zqjwx5v"; }) 31 - (fetchNuGet { pname = "Microsoft.ApplicationInsights"; version = "2.21.0"; sha256 = "1q034jbqkxb8lddkd0ijp0wp0ymnnf3bg2mjpay027zv7jswnc4x"; }) 32 - (fetchNuGet { pname = "Microsoft.Automata.SRM"; version = "1.2.2"; sha256 = "0329j527pk3scfap9pjx8vi9n3g49wj1ydp98qb8ymrfm0m72mbi"; }) 33 - (fetchNuGet { pname = "Microsoft.Bcl.AsyncInterfaces"; version = "1.1.1"; sha256 = "0a1ahssqds2ympr7s4xcxv5y8jgxs7ahd6ah6fbgglj4rki1f1vw"; }) 34 - (fetchNuGet { pname = "Microsoft.Bcl.AsyncInterfaces"; version = "5.0.0"; sha256 = "0cp5jbax2mf6xr3dqiljzlwi05fv6n9a35z337s92jcljiq674kf"; }) 35 - (fetchNuGet { pname = "Microsoft.Bcl.AsyncInterfaces"; version = "7.0.0"; sha256 = "1waiggh3g1cclc81gmjrqbh128kwfjky3z79ma4bd2ms9pa3gvfm"; }) 36 - (fetchNuGet { pname = "Microsoft.Build.Tasks.Git"; version = "8.0.0"; sha256 = "0055f69q3hbagqp8gl3nk0vfn4qyqyxsxyy7pd0g7wm3z28byzmx"; }) 37 - (fetchNuGet { pname = "Microsoft.CodeAnalysis.BannedApiAnalyzers"; version = "3.3.4"; sha256 = "1vzrni7n94f17bzc13lrvcxvgspx9s25ap1p005z6i1ikx6wgx30"; }) 38 - (fetchNuGet { pname = "Microsoft.CodeCoverage"; version = "17.10.0"; sha256 = "0s0v7jmrq85n356xv7zixvwa4z94fszjcr5vll8x4im1a2lp00f9"; }) 39 - (fetchNuGet { pname = "Microsoft.CSharp"; version = "4.0.1"; sha256 = "0zxc0apx1gcx361jlq8smc9pfdgmyjh6hpka8dypc9w23nlsh6yj"; }) 40 - (fetchNuGet { pname = "Microsoft.Diagnostics.Tracing.EventRegister"; version = "1.1.28"; sha256 = "1lh0ifj9xndiqspmnj7x9lcz2c7kdhyjgcmk5wz2yn8gimg0xy03"; }) 41 - (fetchNuGet { pname = "Microsoft.Diagnostics.Tracing.TraceEvent"; version = "3.1.3"; sha256 = "1bappkn6vzaaq5yw9fzhds2gz557bhgmxvh38ifw6l39jkar2lii"; }) 42 - (fetchNuGet { pname = "Microsoft.Extensions.Configuration"; version = "8.0.0"; sha256 = "080kab87qgq2kh0ijry5kfdiq9afyzb8s0k3jqi5zbbi540yq4zl"; }) 43 - (fetchNuGet { pname = "Microsoft.Extensions.Configuration.Abstractions"; version = "8.0.0"; sha256 = "1jlpa4ggl1gr5fs7fdcw04li3y3iy05w3klr9lrrlc7v8w76kq71"; }) 44 - (fetchNuGet { pname = "Microsoft.Extensions.Configuration.Binder"; version = "8.0.1"; sha256 = "0w5w0h1clv7585qkajy0vqb28blghhcv5j9ygfi13219idhx10r9"; }) 45 - (fetchNuGet { pname = "Microsoft.Extensions.Configuration.FileExtensions"; version = "8.0.0"; sha256 = "1jrmlfzy4h32nzf1nm5q8bhkpx958b0ww9qx1k1zm4pyaf6mqb04"; }) 46 - (fetchNuGet { pname = "Microsoft.Extensions.Configuration.Json"; version = "8.0.0"; sha256 = "1n3ss26v1lq6b69fxk1vz3kqv9ppxq8ypgdqpd7415xrq66y4bqn"; }) 47 - (fetchNuGet { pname = "Microsoft.Extensions.DependencyInjection"; version = "8.0.0"; sha256 = "0i7qziz0iqmbk8zzln7kx9vd0lbx1x3va0yi3j1bgkjir13h78ps"; }) 48 - (fetchNuGet { pname = "Microsoft.Extensions.DependencyInjection.Abstractions"; version = "8.0.0"; sha256 = "1zw0bpp5742jzx03wvqc8csnvsbgdqi0ls9jfc5i2vd3cl8b74pg"; }) 49 - (fetchNuGet { pname = "Microsoft.Extensions.FileProviders.Abstractions"; version = "8.0.0"; sha256 = "1idq65fxwcn882c06yci7nscy9i0rgw6mqjrl7362prvvsd9f15r"; }) 50 - (fetchNuGet { pname = "Microsoft.Extensions.FileProviders.Physical"; version = "8.0.0"; sha256 = "05wxjvjbx79ir7vfkri6b28k8zl8fa6bbr0i7gahqrim2ijvkp6v"; }) 51 - (fetchNuGet { pname = "Microsoft.Extensions.FileSystemGlobbing"; version = "8.0.0"; sha256 = "1igf2bqism22fxv7km5yv028r4rg12a4lki2jh4xg3brjkagiv7q"; }) 52 - (fetchNuGet { pname = "Microsoft.Extensions.Logging"; version = "8.0.0"; sha256 = "0nppj34nmq25gnrg0wh1q22y4wdqbih4ax493f226azv8mkp9s1i"; }) 53 - (fetchNuGet { pname = "Microsoft.Extensions.Logging.Abstractions"; version = "8.0.0"; sha256 = "1klcqhg3hk55hb6vmjiq2wgqidsl81aldw0li2z98lrwx26msrr6"; }) 54 - (fetchNuGet { pname = "Microsoft.Extensions.ObjectPool"; version = "5.0.10"; sha256 = "07fk669pjydkcg6bxxv7aj548fzab4yb7ba8370d719lgi9y425l"; }) 55 - (fetchNuGet { pname = "Microsoft.Extensions.Options"; version = "8.0.0"; sha256 = "0p50qn6zhinzyhq9sy5svnmqqwhw2jajs2pbjh9sah504wjvhscz"; }) 56 - (fetchNuGet { pname = "Microsoft.Extensions.Primitives"; version = "8.0.0"; sha256 = "0aldaz5aapngchgdr7dax9jw5wy7k7hmjgjpfgfv1wfif27jlkqm"; }) 57 - (fetchNuGet { pname = "Microsoft.Graph.Bicep.Types"; version = "0.1.5-preview"; sha256 = "0k26hh1mbrchmkymhf0in7g7dpgyzn2i1dfffi58w5wi5f25gsph"; }) 58 - (fetchNuGet { pname = "Microsoft.Identity.Client"; version = "4.60.3"; sha256 = "065iifhffri8wc5i4nfbnkzjrvflav9v5bfkwvmax8f35rks1mnn"; }) 59 - (fetchNuGet { pname = "Microsoft.Identity.Client.Extensions.Msal"; version = "4.60.3"; sha256 = "19l92ynvrhb76r0zpj8qhyymxgz45knyhdqr6za4s7rzbssibi08"; }) 60 - (fetchNuGet { pname = "Microsoft.IdentityModel.Abstractions"; version = "6.35.0"; sha256 = "0i6kdvqdbzynzrr4g5idx4ph4ckggsbsy0869lwa10fhmyxrh73g"; }) 61 - (fetchNuGet { pname = "Microsoft.NET.StringTools"; version = "17.4.0"; sha256 = "1smx30nq22plrn2mw4wb5vfgxk6hyx12b60c4wabmpnr81lq3nzv"; }) 62 - (fetchNuGet { pname = "Microsoft.NET.Test.Sdk"; version = "17.10.0"; sha256 = "13g8fwl09li8fc71nk13dgkb7gahd4qhamyg2xby7am63nlchhdf"; }) 63 - (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.0.1"; sha256 = "01al6cfxp68dscl15z7rxfw9zvhm64dncsw09a1vmdkacsa2v6lr"; }) 64 - (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.1.0"; sha256 = "08vh1r12g6ykjygq5d3vq09zylgb84l63k49jc4v8faw9g93iqqm"; }) 65 - (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "3.1.0"; sha256 = "1gc1x8f95wk8yhgznkwsg80adk1lc65v9n5rx4yaa4bc5dva0z3j"; }) 66 - (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "5.0.0"; sha256 = "0mwpwdflidzgzfx2dlpkvvnkgkr2ayaf0s80737h4wa35gaj11rc"; }) 67 - (fetchNuGet { pname = "Microsoft.NETCore.Targets"; version = "1.0.1"; sha256 = "0ppdkwy6s9p7x9jix3v4402wb171cdiibq7js7i13nxpdky7074p"; }) 68 - (fetchNuGet { pname = "Microsoft.NETCore.Targets"; version = "1.1.0"; sha256 = "193xwf33fbm0ni3idxzbr5fdq3i2dlfgihsac9jj7whj0gd902nh"; }) 69 - (fetchNuGet { pname = "Microsoft.PowerPlatform.ResourceStack"; version = "7.0.0.2007"; sha256 = "1higvig4ajwgcw6bdhxmf0s5p4gy1m69rnngdi1ik42731wrafay"; }) 70 - (fetchNuGet { pname = "Microsoft.SourceLink.Common"; version = "8.0.0"; sha256 = "0xrr8yd34ij7dqnyddkp2awfmf9qn3c89xmw2f3npaa4wnajmx81"; }) 71 - (fetchNuGet { pname = "Microsoft.SourceLink.GitHub"; version = "8.0.0"; sha256 = "1gdx7n45wwia3yvang3ls92sk3wrymqcx9p349j8wba2lyjf9m44"; }) 72 - (fetchNuGet { pname = "Microsoft.Testing.Extensions.Telemetry"; version = "1.0.2"; sha256 = "00psv2mvynd2bz8xnzvqvb32qr33glqxg4ni5j91b93k84yjy5ma"; }) 73 - (fetchNuGet { pname = "Microsoft.Testing.Extensions.TrxReport.Abstractions"; version = "1.0.2"; sha256 = "09yn3hi9npgi8rs2vyfyzcl8vbfa1lqcl6lgpymw5d7lg0hc511w"; }) 74 - (fetchNuGet { pname = "Microsoft.Testing.Extensions.VSTestBridge"; version = "1.0.2"; sha256 = "0c65fsc23xxw648xh83sjcmrn9hvs9q58l5lb36wflvaajbsjf2r"; }) 75 - (fetchNuGet { pname = "Microsoft.Testing.Platform"; version = "1.0.2"; sha256 = "0bq46f4v2r4nzwly7g0dsakyc1lcql9nh85sp59d1fwzaknf1n94"; }) 76 - (fetchNuGet { pname = "Microsoft.Testing.Platform.MSBuild"; version = "1.0.2"; sha256 = "1vjqrpqjx3z1irqgy0ckmkgyvrzqqqcikxs36q6gadyj643ra1c5"; }) 77 - (fetchNuGet { pname = "Microsoft.TestPlatform.ObjectModel"; version = "17.10.0"; sha256 = "07j69cw8r39533w4p39mnj00kahazz38760in3jfc45kmlcdb26x"; }) 78 - (fetchNuGet { pname = "Microsoft.TestPlatform.ObjectModel"; version = "17.5.0"; sha256 = "0qkjyf3ky6xpjg5is2sdsawm99ka7fzgid2bvpglwmmawqgm8gls"; }) 79 - (fetchNuGet { pname = "Microsoft.TestPlatform.TestHost"; version = "17.10.0"; sha256 = "1bl471s7fx9jycr0cc8rylwf34mrvlg9qn1an6l86nisavfcyb7v"; }) 80 - (fetchNuGet { pname = "Microsoft.VisualStudio.Threading"; version = "17.7.35"; sha256 = "1sr2ydgl6clnpf7axjhnffx3z2jz1zhnxfiizsv1prl26r3y52f9"; }) 81 - (fetchNuGet { pname = "Microsoft.VisualStudio.Threading.Analyzers"; version = "17.10.48"; sha256 = "00p3ywq4ppfl14l9yzxl5id5zmay8fv42b4w3ppr1b3d5ipldxhj"; }) 82 - (fetchNuGet { pname = "Microsoft.VisualStudio.Validation"; version = "17.6.11"; sha256 = "0qx4nzsx28galgzzjkgf541254d433dgxcaf7y2y1qyyxgsfjj1f"; }) 83 - (fetchNuGet { pname = "Microsoft.Win32.Registry"; version = "4.7.0"; sha256 = "0bx21jjbs7l5ydyw4p6cn07chryxpmchq2nl5pirzz4l3b0q4dgs"; }) 84 - (fetchNuGet { pname = "Microsoft.Win32.Registry"; version = "5.0.0"; sha256 = "102hvhq2gmlcbq8y2cb7hdr2dnmjzfp2k3asr1ycwrfacwyaak7n"; }) 85 - (fetchNuGet { pname = "Microsoft.Win32.Registry.AccessControl"; version = "6.0.0"; sha256 = "1c1x47c6p21l6l84kw8wvsdhnd7ifrrrl8in0bnkaq7y1va4fvsn"; }) 86 - (fetchNuGet { pname = "Microsoft.Win32.SystemEvents"; version = "6.0.1"; sha256 = "1map729br97ny6mqkaw5qsg55yjbfz2hskvy56qz8rf7p1bjhky2"; }) 87 - (fetchNuGet { pname = "Microsoft.Windows.Compatibility"; version = "6.0.7"; sha256 = "1b01dg77mw2ih3dy5sajjvqd89zv4yjqffmb8gs7dpzwnncin91d"; }) 88 - (fetchNuGet { pname = "MSTest.TestAdapter"; version = "3.2.2"; sha256 = "14nrxg1cd3lzaxw7zz8z91168sgnsf1xxnrpdy7wkd6ggk22hi19"; }) 89 - (fetchNuGet { pname = "MSTest.TestFramework"; version = "3.3.1"; sha256 = "1k706rfifdx28kxhnqpfhfc79zvzd7wnyqvf3g6r27p9ramzw3j9"; }) 90 - (fetchNuGet { pname = "Nerdbank.GitVersioning"; version = "3.6.133"; sha256 = "1cdw8krvsnx0n34f7fm5hiiy7bs6h3asvncqcikc0g46l50w2j80"; }) 91 - (fetchNuGet { pname = "Nerdbank.Streams"; version = "2.10.69"; sha256 = "1klsyly7k1xhbhrpq2s2iwdlmw3xyvh51rcakfazwxkv2hm5fj3b"; }) 92 - (fetchNuGet { pname = "Newtonsoft.Json"; version = "13.0.1"; sha256 = "0fijg0w6iwap8gvzyjnndds0q4b8anwxxvik7y8vgq97dram4srb"; }) 93 - (fetchNuGet { pname = "Newtonsoft.Json"; version = "13.0.3"; sha256 = "0xrwysmrn4midrjal8g2hr1bbg38iyisl0svamb11arqws4w2bw7"; }) 94 - (fetchNuGet { pname = "Newtonsoft.Json"; version = "9.0.1"; sha256 = "0mcy0i7pnfpqm4pcaiyzzji4g0c8i3a5gjz28rrr28110np8304r"; }) 95 - (fetchNuGet { pname = "NuGet.Frameworks"; version = "5.11.0"; sha256 = "0wv26gq39hfqw9md32amr5771s73f5zn1z9vs4y77cgynxr73s4z"; }) 96 - (fetchNuGet { pname = "runtime.any.System.Collections"; version = "4.3.0"; sha256 = "0bv5qgm6vr47ynxqbnkc7i797fdi8gbjjxii173syrx14nmrkwg0"; }) 97 - (fetchNuGet { pname = "runtime.any.System.Diagnostics.Tools"; version = "4.3.0"; sha256 = "1wl76vk12zhdh66vmagni66h5xbhgqq7zkdpgw21jhxhvlbcl8pk"; }) 98 - (fetchNuGet { pname = "runtime.any.System.Diagnostics.Tracing"; version = "4.3.0"; sha256 = "00j6nv2xgmd3bi347k00m7wr542wjlig53rmj28pmw7ddcn97jbn"; }) 99 - (fetchNuGet { pname = "runtime.any.System.Globalization"; version = "4.3.0"; sha256 = "1daqf33hssad94lamzg01y49xwndy2q97i2lrb7mgn28656qia1x"; }) 100 - (fetchNuGet { pname = "runtime.any.System.IO"; version = "4.3.0"; sha256 = "0l8xz8zn46w4d10bcn3l4yyn4vhb3lrj2zw8llvz7jk14k4zps5x"; }) 101 - (fetchNuGet { pname = "runtime.any.System.Reflection"; version = "4.3.0"; sha256 = "02c9h3y35pylc0zfq3wcsvc5nqci95nrkq0mszifc0sjx7xrzkly"; }) 102 - (fetchNuGet { pname = "runtime.any.System.Reflection.Extensions"; version = "4.3.0"; sha256 = "0zyri97dfc5vyaz9ba65hjj1zbcrzaffhsdlpxc9bh09wy22fq33"; }) 103 - (fetchNuGet { pname = "runtime.any.System.Reflection.Primitives"; version = "4.3.0"; sha256 = "0x1mm8c6iy8rlxm8w9vqw7gb7s1ljadrn049fmf70cyh42vdfhrf"; }) 104 - (fetchNuGet { pname = "runtime.any.System.Resources.ResourceManager"; version = "4.3.0"; sha256 = "03kickal0iiby82wa5flar18kyv82s9s6d4xhk5h4bi5kfcyfjzl"; }) 105 - (fetchNuGet { pname = "runtime.any.System.Runtime"; version = "4.3.0"; sha256 = "1cqh1sv3h5j7ixyb7axxbdkqx6cxy00p4np4j91kpm492rf4s25b"; }) 106 - (fetchNuGet { pname = "runtime.any.System.Runtime.Handles"; version = "4.3.0"; sha256 = "0bh5bi25nk9w9xi8z23ws45q5yia6k7dg3i4axhfqlnj145l011x"; }) 107 - (fetchNuGet { pname = "runtime.any.System.Runtime.InteropServices"; version = "4.3.0"; sha256 = "0c3g3g3jmhlhw4klrc86ka9fjbl7i59ds1fadsb2l8nqf8z3kb19"; }) 108 - (fetchNuGet { pname = "runtime.any.System.Text.Encoding"; version = "4.3.0"; sha256 = "0aqqi1v4wx51h51mk956y783wzags13wa7mgqyclacmsmpv02ps3"; }) 109 - (fetchNuGet { pname = "runtime.any.System.Text.Encoding.Extensions"; version = "4.3.0"; sha256 = "0lqhgqi0i8194ryqq6v2gqx0fb86db2gqknbm0aq31wb378j7ip8"; }) 110 - (fetchNuGet { pname = "runtime.any.System.Threading.Tasks"; version = "4.3.0"; sha256 = "03mnvkhskbzxddz4hm113zsch1jyzh2cs450dk3rgfjp8crlw1va"; }) 111 - (fetchNuGet { pname = "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "16rnxzpk5dpbbl1x354yrlsbvwylrq456xzpsha1n9y3glnhyx9d"; }) 112 - (fetchNuGet { pname = "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "0hkg03sgm2wyq8nqk6dbm9jh5vcq57ry42lkqdmfklrw89lsmr59"; }) 113 - (fetchNuGet { pname = "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "0c2p354hjx58xhhz7wv6div8xpi90sc6ibdm40qin21bvi7ymcaa"; }) 114 - (fetchNuGet { pname = "runtime.linux-arm.runtime.native.System.IO.Ports"; version = "6.0.0"; sha256 = "0mazvx8npn10vh0k1pvck8ijz4pin7h9mjrvdydim4bmnn4iwgdc"; }) 115 - (fetchNuGet { pname = "runtime.linux-arm64.runtime.native.System.IO.Ports"; version = "6.0.0"; sha256 = "0yrcswvz1xyv17gy39gxpn2cr9ynnlnbm9112nqzkj58s6gk2iyj"; }) 116 - (fetchNuGet { pname = "runtime.linux-x64.runtime.native.System.IO.Ports"; version = "6.0.0"; sha256 = "0ss8fzqnvxps1ybfy70fj4vs2w78mizg4sxdriw8bvcdcfsv0rg2"; }) 117 - (fetchNuGet { pname = "runtime.native.System"; version = "4.3.0"; sha256 = "15hgf6zaq9b8br2wi1i3x0zvmk410nlmsmva9p0bbg73v6hml5k4"; }) 118 - (fetchNuGet { pname = "runtime.native.System.Data.SqlClient.sni"; version = "4.7.0"; sha256 = "1b84b8rkwwwgvx1hh5r6icd975rl1ry3bc1xb87br2d8k433wgbj"; }) 119 - (fetchNuGet { pname = "runtime.native.System.IO.Ports"; version = "6.0.0"; sha256 = "0nl8z42aiqfz0v4h1lx84jz312n1f01rlr2kzd7yfiv7p7i1dl3w"; }) 120 - (fetchNuGet { pname = "runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "18pzfdlwsg2nb1jjjjzyb5qlgy6xjxzmhnfaijq5s2jw3cm3ab97"; }) 121 - (fetchNuGet { pname = "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "0qyynf9nz5i7pc26cwhgi8j62ps27sqmf78ijcfgzab50z9g8ay3"; }) 122 - (fetchNuGet { pname = "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "1klrs545awhayryma6l7g2pvnp9xy4z0r1i40r80zb45q3i9nbyf"; }) 123 - (fetchNuGet { pname = "runtime.osx-arm64.runtime.native.System.IO.Ports"; version = "6.0.0"; sha256 = "114swwc99lg4zjzywfcfxvbxynrlh9pvgl1wpihf88jbs2mjicw5"; }) 124 - (fetchNuGet { pname = "runtime.osx-x64.runtime.native.System.IO.Ports"; version = "6.0.0"; sha256 = "1kwip1pj1xaqrlkf5flkk30zn2lg4821g64nfj1glpjjcj49b3wv"; }) 125 - (fetchNuGet { pname = "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "0zcxjv5pckplvkg0r6mw3asggm7aqzbdjimhvsasb0cgm59x09l3"; }) 126 - (fetchNuGet { pname = "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "0vhynn79ih7hw7cwjazn87rm9z9fj0rvxgzlab36jybgcpcgphsn"; }) 127 - (fetchNuGet { pname = "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "160p68l2c7cqmyqjwxydcvgw7lvl1cr0znkw8fp24d1by9mqc8p3"; }) 128 - (fetchNuGet { pname = "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "15zrc8fgd8zx28hdghcj5f5i34wf3l6bq5177075m2bc2j34jrqy"; }) 129 - (fetchNuGet { pname = "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "1p4dgxax6p7rlgj4q73k73rslcnz4wdcv8q2flg1s8ygwcm58ld5"; }) 130 - (fetchNuGet { pname = "runtime.unix.System.Diagnostics.Debug"; version = "4.3.0"; sha256 = "1lps7fbnw34bnh3lm31gs5c0g0dh7548wfmb8zz62v0zqz71msj5"; }) 131 - (fetchNuGet { pname = "runtime.unix.System.IO.FileSystem"; version = "4.3.0"; sha256 = "14nbkhvs7sji5r1saj2x8daz82rnf9kx28d3v2qss34qbr32dzix"; }) 132 - (fetchNuGet { pname = "runtime.unix.System.Private.Uri"; version = "4.3.0"; sha256 = "1jx02q6kiwlvfksq1q9qr17fj78y5v6mwsszav4qcz9z25d5g6vk"; }) 133 - (fetchNuGet { pname = "runtime.unix.System.Runtime.Extensions"; version = "4.3.0"; sha256 = "0pnxxmm8whx38dp6yvwgmh22smknxmqs5n513fc7m4wxvs1bvi4p"; }) 134 - (fetchNuGet { pname = "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni"; version = "4.4.0"; sha256 = "07byf1iyqb7jkb17sp0mmjk46fwq6fx8mlpzywxl7qk09sma44gk"; }) 135 - (fetchNuGet { pname = "runtime.win-x64.runtime.native.System.Data.SqlClient.sni"; version = "4.4.0"; sha256 = "0167s4mpq8bzk3y11pylnynzjr2nc84w96al9x4l8yrf34ccm18y"; }) 136 - (fetchNuGet { pname = "runtime.win-x86.runtime.native.System.Data.SqlClient.sni"; version = "4.4.0"; sha256 = "0k3rkfrlm9jjz56dra61jgxinb8zsqlqzik2sjwz7f8v6z6ddycc"; }) 137 - (fetchNuGet { pname = "Sarif.Sdk"; version = "4.5.4"; sha256 = "0bw2r6qndqj49x2g90rxyp966mdzik9355jgjan6ijib1rad2z2w"; }) 138 - (fetchNuGet { pname = "SharpYaml"; version = "2.1.1"; sha256 = "171s60qpqj5r7krkn2zq6fg6f09ixsd5czrw91qm5lg3vpvknar9"; }) 139 - (fetchNuGet { pname = "StreamJsonRpc"; version = "2.17.11"; sha256 = "1y6pr2lcpqbwian0iiyf9bagwyx0l7dbarazk3cyah1fl3rrjaqd"; }) 140 - (fetchNuGet { pname = "System.Buffers"; version = "4.3.0"; sha256 = "0fgns20ispwrfqll4q1zc1waqcmylb3zc50ys9x8zlwxh9pmd9jy"; }) 141 - (fetchNuGet { pname = "System.ClientModel"; version = "1.0.0"; sha256 = "0rhbabgfnxx6qcaxq218h5si4gbq6sn4rgg6cn9bgw6rrzcgnxn8"; }) 142 - (fetchNuGet { pname = "System.CodeDom"; version = "6.0.0"; sha256 = "1i55cxp8ycc03dmxx4n22qi6jkwfl23cgffb95izq7bjar8avxxq"; }) 143 - (fetchNuGet { pname = "System.Collections"; version = "4.0.11"; sha256 = "1ga40f5lrwldiyw6vy67d0sg7jd7ww6kgwbksm19wrvq9hr0bsm6"; }) 144 - (fetchNuGet { pname = "System.Collections"; version = "4.3.0"; sha256 = "19r4y64dqyrq6k4706dnyhhw7fs24kpp3awak7whzss39dakpxk9"; }) 145 - (fetchNuGet { pname = "System.Collections.Immutable"; version = "1.6.0"; sha256 = "1pbxzdz3pwqyybzv5ff2b7nrc281bhg7hq34w0fn1w3qfgrbwyw2"; }) 146 - (fetchNuGet { pname = "System.Collections.Immutable"; version = "5.0.0"; sha256 = "1kvcllagxz2q92g81zkz81djkn2lid25ayjfgjalncyc68i15p0r"; }) 147 - (fetchNuGet { pname = "System.Collections.Immutable"; version = "7.0.0"; sha256 = "1n9122cy6v3qhsisc9lzwa1m1j62b8pi2678nsmnlyvfpk0zdagm"; }) 148 - (fetchNuGet { pname = "System.ComponentModel.Composition"; version = "6.0.0"; sha256 = "16zfx5mivkkykp76krw8x68izmjf79ldfmn26k9x3m55lmp9i77c"; }) 149 - (fetchNuGet { pname = "System.ComponentModel.Composition.Registration"; version = "6.0.0"; sha256 = "1lv5b42lssrkzbk2fz9phmdgwmqzi2n3yg3rl081q661nij3vv1l"; }) 150 - (fetchNuGet { pname = "System.Configuration.ConfigurationManager"; version = "4.4.0"; sha256 = "1hjgmz47v5229cbzd2pwz2h0dkq78lb2wp9grx8qr72pb5i0dk7v"; }) 151 - (fetchNuGet { pname = "System.Configuration.ConfigurationManager"; version = "6.0.1"; sha256 = "1d6cx49fzycbl2fam8d1j3491sqx6mh7qkb5ddrawr00x74hgzak"; }) 152 - (fetchNuGet { pname = "System.Data.Odbc"; version = "6.0.1"; sha256 = "12g9fzx6y5gb1bb5lyfxin1d5snw69pdwv481x13m6qhkfhk3lx4"; }) 153 - (fetchNuGet { pname = "System.Data.OleDb"; version = "6.0.0"; sha256 = "0cbf6qw7k13rjrk5zfd158yri023ryaifd6fz5cbqgwdg4vpnvpz"; }) 154 - (fetchNuGet { pname = "System.Data.SqlClient"; version = "4.8.6"; sha256 = "153wgkb8gcbqk00zsdj8lw8d4ms60h6k08n57yiyxlyyimrg5ks1"; }) 155 - (fetchNuGet { pname = "System.Diagnostics.Debug"; version = "4.3.0"; sha256 = "00yjlf19wjydyr6cfviaph3vsjzg3d5nvnya26i2fvfg53sknh3y"; }) 156 - (fetchNuGet { pname = "System.Diagnostics.DiagnosticSource"; version = "5.0.0"; sha256 = "0phd2qizshjvglhzws1jd0cq4m54gscz4ychzr3x6wbgl4vvfrga"; }) 157 - (fetchNuGet { pname = "System.Diagnostics.DiagnosticSource"; version = "6.0.1"; sha256 = "17h8bkcv0vf9a7gp9ajkd107zid98wql5kzlzwrjm5nm92nk0bsy"; }) 158 - (fetchNuGet { pname = "System.Diagnostics.DiagnosticSource"; version = "7.0.2"; sha256 = "1h97ikph775gya93qsjjaka87qcygbyh1064rh1hnfcnp5xv0ipi"; }) 159 - (fetchNuGet { pname = "System.Diagnostics.EventLog"; version = "6.0.0"; sha256 = "08y1x2d5w2hnhkh9r1998pjc7r4qp0rmzax062abha85s11chifd"; }) 160 - (fetchNuGet { pname = "System.Diagnostics.PerformanceCounter"; version = "6.0.1"; sha256 = "17p5vwbgrycsrvv9a9ksxbiziy75x4s25dw71fnbw1ci5kpp8yz7"; }) 161 - (fetchNuGet { pname = "System.Diagnostics.Tools"; version = "4.0.1"; sha256 = "19cknvg07yhakcvpxg3cxa0bwadplin6kyxd8mpjjpwnp56nl85x"; }) 162 - (fetchNuGet { pname = "System.Diagnostics.Tracing"; version = "4.3.0"; sha256 = "1m3bx6c2s958qligl67q7grkwfz3w53hpy7nc97mh6f7j5k168c4"; }) 163 - (fetchNuGet { pname = "System.DirectoryServices"; version = "6.0.1"; sha256 = "17abibzqmr4amxpnbpv198qzdpb5mafn655ayisfc4mmhmyks39a"; }) 164 - (fetchNuGet { pname = "System.DirectoryServices.AccountManagement"; version = "6.0.0"; sha256 = "1hvmasf4zsjpds0q8j8k5n61lr6mqhi37bsz1m65r6fs5kx5jrfn"; }) 165 - (fetchNuGet { pname = "System.DirectoryServices.Protocols"; version = "6.0.2"; sha256 = "0zy5ga8ys72bmw65zikg4qv4cizx9mcns3mc0dddi6657mpzp2pv"; }) 166 - (fetchNuGet { pname = "System.Drawing.Common"; version = "6.0.0"; sha256 = "02n8rzm58dac2np8b3xw8ychbvylja4nh6938l5k2fhyn40imlgz"; }) 167 - (fetchNuGet { pname = "System.Dynamic.Runtime"; version = "4.0.11"; sha256 = "1pla2dx8gkidf7xkciig6nifdsb494axjvzvann8g2lp3dbqasm9"; }) 168 - (fetchNuGet { pname = "System.Formats.Asn1"; version = "6.0.0"; sha256 = "1vvr7hs4qzjqb37r0w1mxq7xql2b17la63jwvmgv65s1hj00g8r9"; }) 169 - (fetchNuGet { pname = "System.Globalization"; version = "4.0.11"; sha256 = "070c5jbas2v7smm660zaf1gh0489xanjqymkvafcs4f8cdrs1d5d"; }) 170 - (fetchNuGet { pname = "System.Globalization"; version = "4.3.0"; sha256 = "1cp68vv683n6ic2zqh2s1fn4c2sd87g5hpp6l4d4nj4536jz98ki"; }) 171 - (fetchNuGet { pname = "System.IO"; version = "4.1.0"; sha256 = "1g0yb8p11vfd0kbkyzlfsbsp5z44lwsvyc0h3dpw6vqnbi035ajp"; }) 172 - (fetchNuGet { pname = "System.IO"; version = "4.3.0"; sha256 = "05l9qdrzhm4s5dixmx68kxwif4l99ll5gqmh7rqgw554fx0agv5f"; }) 173 - (fetchNuGet { pname = "System.IO.Abstractions"; version = "21.0.2"; sha256 = "1mp73hkrxb83bs16458qgf7l3n20ddnfkij1pd603dr8w22j7279"; }) 174 - (fetchNuGet { pname = "System.IO.FileSystem"; version = "4.0.1"; sha256 = "0kgfpw6w4djqra3w5crrg8xivbanh1w9dh3qapb28q060wb9flp1"; }) 175 - (fetchNuGet { pname = "System.IO.FileSystem.Primitives"; version = "4.3.0"; sha256 = "0j6ndgglcf4brg2lz4wzsh1av1gh8xrzdsn9f0yznskhqn1xzj9c"; }) 176 - (fetchNuGet { pname = "System.IO.Packaging"; version = "6.0.0"; sha256 = "112nq0k2jc4vh71rifqqmpjxkaanxfapk7g8947jkfgq3lmfmaac"; }) 177 - (fetchNuGet { pname = "System.IO.Pipelines"; version = "7.0.0"; sha256 = "1ila2vgi1w435j7g2y7ykp2pdbh9c5a02vm85vql89az93b7qvav"; }) 178 - (fetchNuGet { pname = "System.IO.Ports"; version = "6.0.0"; sha256 = "0b0gvn7b2xsy2b0wwa170jzm5cwy3xxwpyqm21m4cbpc0ckri802"; }) 179 - (fetchNuGet { pname = "System.Linq"; version = "4.1.0"; sha256 = "1ppg83svb39hj4hpp5k7kcryzrf3sfnm08vxd5sm2drrijsla2k5"; }) 180 - (fetchNuGet { pname = "System.Linq.Expressions"; version = "4.1.0"; sha256 = "1gpdxl6ip06cnab7n3zlcg6mqp7kknf73s8wjinzi4p0apw82fpg"; }) 181 - (fetchNuGet { pname = "System.Management"; version = "6.0.2"; sha256 = "190bxmg0y5dmzh0yv9gzh8k6safdz20gqaifpnl8v7yw3z5wcpgj"; }) 182 - (fetchNuGet { pname = "System.Memory"; version = "4.5.4"; sha256 = "14gbbs22mcxwggn0fcfs1b062521azb9fbb7c113x0mq6dzq9h6y"; }) 183 - (fetchNuGet { pname = "System.Memory"; version = "4.5.5"; sha256 = "08jsfwimcarfzrhlyvjjid61j02irx6xsklf32rv57x2aaikvx0h"; }) 184 - (fetchNuGet { pname = "System.Memory.Data"; version = "1.0.2"; sha256 = "1p8qdg0gzxhjvabryc3xws2629pj8w5zz2iqh86kw8sh0rann9ay"; }) 185 - (fetchNuGet { pname = "System.Numerics.Vectors"; version = "4.5.0"; sha256 = "1kzrj37yzawf1b19jq0253rcs8hsq1l2q8g69d7ipnhzb0h97m59"; }) 186 - (fetchNuGet { pname = "System.ObjectModel"; version = "4.0.12"; sha256 = "1sybkfi60a4588xn34nd9a58png36i0xr4y4v4kqpg8wlvy5krrj"; }) 187 - (fetchNuGet { pname = "System.Private.ServiceModel"; version = "4.9.0"; sha256 = "117vxa0pfgg6xfdxfpza4296ay7sqiaynyvfbsai43yrkh0lmch1"; }) 188 - (fetchNuGet { pname = "System.Private.Uri"; version = "4.3.0"; sha256 = "04r1lkdnsznin0fj4ya1zikxiqr0h6r6a1ww2dsm60gqhdrf0mvx"; }) 189 - (fetchNuGet { pname = "System.Reflection"; version = "4.1.0"; sha256 = "1js89429pfw79mxvbzp8p3q93il6rdff332hddhzi5wqglc4gml9"; }) 190 - (fetchNuGet { pname = "System.Reflection"; version = "4.3.0"; sha256 = "0xl55k0mw8cd8ra6dxzh974nxif58s3k1rjv1vbd7gjbjr39j11m"; }) 191 - (fetchNuGet { pname = "System.Reflection.Context"; version = "6.0.0"; sha256 = "1vy3b143429amaa0501xjgdszvpdygkrs5rkivnrkl69f67dad5j"; }) 192 - (fetchNuGet { pname = "System.Reflection.DispatchProxy"; version = "4.7.1"; sha256 = "10yh3q2i71gcw7c0dfz9qxql2vlvnqjav1hyf1q9rpbvdbgsabrs"; }) 193 - (fetchNuGet { pname = "System.Reflection.Emit"; version = "4.0.1"; sha256 = "0ydqcsvh6smi41gyaakglnv252625hf29f7kywy2c70nhii2ylqp"; }) 194 - (fetchNuGet { pname = "System.Reflection.Emit.ILGeneration"; version = "4.0.1"; sha256 = "1pcd2ig6bg144y10w7yxgc9d22r7c7ww7qn1frdfwgxr24j9wvv0"; }) 195 - (fetchNuGet { pname = "System.Reflection.Emit.Lightweight"; version = "4.0.1"; sha256 = "1s4b043zdbx9k39lfhvsk68msv1nxbidhkq6nbm27q7sf8xcsnxr"; }) 196 - (fetchNuGet { pname = "System.Reflection.Emit.Lightweight"; version = "4.7.0"; sha256 = "0mbjfajmafkca47zr8v36brvknzks5a7pgb49kfq2d188pyv6iap"; }) 197 - (fetchNuGet { pname = "System.Reflection.Extensions"; version = "4.0.1"; sha256 = "0m7wqwq0zqq9gbpiqvgk3sr92cbrw7cp3xn53xvw7zj6rz6fdirn"; }) 198 - (fetchNuGet { pname = "System.Reflection.Metadata"; version = "1.6.0"; sha256 = "1wdbavrrkajy7qbdblpbpbalbdl48q3h34cchz24gvdgyrlf15r4"; }) 199 - (fetchNuGet { pname = "System.Reflection.Primitives"; version = "4.0.1"; sha256 = "1bangaabhsl4k9fg8khn83wm6yial8ik1sza7401621jc6jrym28"; }) 200 - (fetchNuGet { pname = "System.Reflection.Primitives"; version = "4.3.0"; sha256 = "04xqa33bld78yv5r93a8n76shvc8wwcdgr1qvvjh959g3rc31276"; }) 201 - (fetchNuGet { pname = "System.Reflection.TypeExtensions"; version = "4.1.0"; sha256 = "1bjli8a7sc7jlxqgcagl9nh8axzfl11f4ld3rjqsyxc516iijij7"; }) 202 - (fetchNuGet { pname = "System.Resources.ResourceManager"; version = "4.0.1"; sha256 = "0b4i7mncaf8cnai85jv3wnw6hps140cxz8vylv2bik6wyzgvz7bi"; }) 203 - (fetchNuGet { pname = "System.Resources.ResourceManager"; version = "4.3.0"; sha256 = "0sjqlzsryb0mg4y4xzf35xi523s4is4hz9q4qgdvlvgivl7qxn49"; }) 204 - (fetchNuGet { pname = "System.Runtime"; version = "4.1.0"; sha256 = "02hdkgk13rvsd6r9yafbwzss8kr55wnj8d5c7xjnp8gqrwc8sn0m"; }) 205 - (fetchNuGet { pname = "System.Runtime"; version = "4.3.0"; sha256 = "066ixvgbf2c929kgknshcxqj6539ax7b9m570cp8n179cpfkapz7"; }) 206 - (fetchNuGet { pname = "System.Runtime.Caching"; version = "6.0.0"; sha256 = "0wh98a77cby4i3h2mar241k01105x661kh03vlyd399shxkfk60a"; }) 207 - (fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "4.5.2"; sha256 = "1vz4275fjij8inf31np78hw50al8nqkngk04p3xv5n4fcmf1grgi"; }) 208 - (fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "5.0.0"; sha256 = "02k25ivn50dmqx5jn8hawwmz24yf0454fjd823qk6lygj9513q4x"; }) 209 - (fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "6.0.0"; sha256 = "0qm741kh4rh57wky16sq4m0v05fxmkjjr87krycf5vp9f0zbahbc"; }) 210 - (fetchNuGet { pname = "System.Runtime.Extensions"; version = "4.1.0"; sha256 = "0rw4rm4vsm3h3szxp9iijc3ksyviwsv6f63dng3vhqyg4vjdkc2z"; }) 211 - (fetchNuGet { pname = "System.Runtime.Extensions"; version = "4.3.0"; sha256 = "1ykp3dnhwvm48nap8q23893hagf665k0kn3cbgsqpwzbijdcgc60"; }) 212 - (fetchNuGet { pname = "System.Runtime.Handles"; version = "4.0.1"; sha256 = "1g0zrdi5508v49pfm3iii2hn6nm00bgvfpjq1zxknfjrxxa20r4g"; }) 213 - (fetchNuGet { pname = "System.Runtime.Handles"; version = "4.3.0"; sha256 = "0sw2gfj2xr7sw9qjn0j3l9yw07x73lcs97p8xfc9w1x9h5g5m7i8"; }) 214 - (fetchNuGet { pname = "System.Runtime.InteropServices"; version = "4.1.0"; sha256 = "01kxqppx3dr3b6b286xafqilv4s2n0gqvfgzfd4z943ga9i81is1"; }) 215 - (fetchNuGet { pname = "System.Runtime.InteropServices"; version = "4.3.0"; sha256 = "00hywrn4g7hva1b2qri2s6rabzwgxnbpw9zfxmz28z09cpwwgh7j"; }) 216 - (fetchNuGet { pname = "System.Runtime.Serialization.Primitives"; version = "4.1.1"; sha256 = "042rfjixknlr6r10vx2pgf56yming8lkjikamg3g4v29ikk78h7k"; }) 217 - (fetchNuGet { pname = "System.Security.AccessControl"; version = "4.7.0"; sha256 = "0n0k0w44flkd8j0xw7g3g3vhw7dijfm51f75xkm1qxnbh4y45mpz"; }) 218 - (fetchNuGet { pname = "System.Security.AccessControl"; version = "5.0.0"; sha256 = "17n3lrrl6vahkqmhlpn3w20afgz09n7i6rv0r3qypngwi7wqdr5r"; }) 219 - (fetchNuGet { pname = "System.Security.AccessControl"; version = "6.0.0"; sha256 = "0a678bzj8yxxiffyzy60z2w1nczzpi8v97igr4ip3byd2q89dv58"; }) 220 - (fetchNuGet { pname = "System.Security.Cryptography.Pkcs"; version = "6.0.4"; sha256 = "0hh5h38pnxmlrnvs72f2hzzpz4b2caiiv6xf8y7fzdg84r3imvfr"; }) 221 - (fetchNuGet { pname = "System.Security.Cryptography.ProtectedData"; version = "4.4.0"; sha256 = "1q8ljvqhasyynp94a1d7jknk946m20lkwy2c3wa8zw2pc517fbj6"; }) 222 - (fetchNuGet { pname = "System.Security.Cryptography.ProtectedData"; version = "4.7.0"; sha256 = "1s1sh8k10s0apa09c5m2lkavi3ys90y657whg2smb3y8mpkfr5vm"; }) 223 - (fetchNuGet { pname = "System.Security.Cryptography.ProtectedData"; version = "6.0.0"; sha256 = "05kd3a8w7658hjxq9vvszxip30a479fjmfq4bq1r95nrsvs4hbss"; }) 224 - (fetchNuGet { pname = "System.Security.Cryptography.Xml"; version = "6.0.1"; sha256 = "15d0np1njvy2ywf0qzdqyjk5sjs4zbfxg917jrvlbfwrqpqxb5dj"; }) 225 - (fetchNuGet { pname = "System.Security.Permissions"; version = "6.0.0"; sha256 = "0jsl4xdrkqi11iwmisi1r2f2qn5pbvl79mzq877gndw6ans2zhzw"; }) 226 - (fetchNuGet { pname = "System.Security.Principal.Windows"; version = "4.7.0"; sha256 = "1a56ls5a9sr3ya0nr086sdpa9qv0abv31dd6fp27maqa9zclqq5d"; }) 227 - (fetchNuGet { pname = "System.Security.Principal.Windows"; version = "5.0.0"; sha256 = "1mpk7xj76lxgz97a5yg93wi8lj0l8p157a5d50mmjy3gbz1904q8"; }) 228 - (fetchNuGet { pname = "System.ServiceModel.Duplex"; version = "4.9.0"; sha256 = "0jwbpcpgxv5zar3raypgvfnwvn4bv3n212cbcgyj7r0xj33c1kqi"; }) 229 - (fetchNuGet { pname = "System.ServiceModel.Http"; version = "4.9.0"; sha256 = "1nxch0m50yvp0dxckl65802086bncs010lnx816196m2kc4bpc5p"; }) 230 - (fetchNuGet { pname = "System.ServiceModel.NetTcp"; version = "4.9.0"; sha256 = "06l7ffkxf6nj3x8dm5b42ansqq3nm17xpzrrmp0905602dr3z8zg"; }) 231 - (fetchNuGet { pname = "System.ServiceModel.Primitives"; version = "4.9.0"; sha256 = "1lzl69ar18fn4iqya2ymm9kdv54d4mi0hcdnyvyxjq3bnhnb22qf"; }) 232 - (fetchNuGet { pname = "System.ServiceModel.Security"; version = "4.9.0"; sha256 = "0ai2h31hrz1js3k8q0lh1y87757la300slqp3g7544kil5wcbmpw"; }) 233 - (fetchNuGet { pname = "System.ServiceModel.Syndication"; version = "6.0.0"; sha256 = "1xk1dh5nd5h6fhrkys9r9na6kww7v4fsg4ianaibjkl9f0a1w929"; }) 234 - (fetchNuGet { pname = "System.ServiceProcess.ServiceController"; version = "6.0.1"; sha256 = "15nvnflqfrz2fsclcwgaq8r532x2fbv1ds3rck95l8psb7pgx1v5"; }) 235 - (fetchNuGet { pname = "System.Speech"; version = "6.0.0"; sha256 = "1g7b077189x9xy4l9yrh2yfnhc83mk6aj7b0v64xdqsrsqv1z16v"; }) 236 - (fetchNuGet { pname = "System.Text.Encoding"; version = "4.0.11"; sha256 = "1dyqv0hijg265dwxg6l7aiv74102d6xjiwplh2ar1ly6xfaa4iiw"; }) 237 - (fetchNuGet { pname = "System.Text.Encoding"; version = "4.3.0"; sha256 = "1f04lkir4iladpp51sdgmis9dj4y8v08cka0mbmsy0frc9a4gjqr"; }) 238 - (fetchNuGet { pname = "System.Text.Encoding.CodePages"; version = "4.3.0"; sha256 = "0lgxg1gn7pg7j0f942pfdc9q7wamzxsgq3ng248ikdasxz0iadkv"; }) 239 - (fetchNuGet { pname = "System.Text.Encoding.CodePages"; version = "6.0.0"; sha256 = "0gm2kiz2ndm9xyzxgi0jhazgwslcs427waxgfa30m7yqll1kcrww"; }) 240 - (fetchNuGet { pname = "System.Text.Encoding.Extensions"; version = "4.3.0"; sha256 = "11q1y8hh5hrp5a3kw25cb6l00v5l5dvirkz8jr3sq00h1xgcgrxy"; }) 241 - (fetchNuGet { pname = "System.Text.Encodings.Web"; version = "4.7.2"; sha256 = "0ap286ykazrl42if59bxhzv81safdfrrmfqr3112siwyajx4wih9"; }) 242 - (fetchNuGet { pname = "System.Text.Encodings.Web"; version = "7.0.0"; sha256 = "1151hbyrcf8kyg1jz8k9awpbic98lwz9x129rg7zk1wrs6vjlpxl"; }) 243 - (fetchNuGet { pname = "System.Text.Encodings.Web"; version = "8.0.0"; sha256 = "1wbypkx0m8dgpsaqgyywz4z760xblnwalb241d5qv9kx8m128i11"; }) 244 - (fetchNuGet { pname = "System.Text.Json"; version = "4.7.2"; sha256 = "10xj1pw2dgd42anikvj9qm23ccssrcp7dpznpj4j7xjp1ikhy3y4"; }) 245 - (fetchNuGet { pname = "System.Text.Json"; version = "7.0.3"; sha256 = "0zjrnc9lshagm6kdb9bdh45dmlnkpwcpyssa896sda93ngbmj8k9"; }) 246 - (fetchNuGet { pname = "System.Text.Json"; version = "8.0.0"; sha256 = "134savxw0sq7s448jnzw17bxcijsi1v38mirpbb6zfxmqlf04msw"; }) 247 - (fetchNuGet { pname = "System.Text.Json"; version = "8.0.2"; sha256 = "1pi1dkypmn34qqspvwfcp1fx78v0nh78dpdyj4rcaa2qch40y15r"; }) 248 - (fetchNuGet { pname = "System.Text.RegularExpressions"; version = "4.1.0"; sha256 = "1mw7vfkkyd04yn2fbhm38msk7dz2xwvib14ygjsb8dq2lcvr18y7"; }) 249 - (fetchNuGet { pname = "System.Threading"; version = "4.0.11"; sha256 = "19x946h926bzvbsgj28csn46gak2crv2skpwsx80hbgazmkgb1ls"; }) 250 - (fetchNuGet { pname = "System.Threading"; version = "4.3.0"; sha256 = "0rw9wfamvhayp5zh3j7p1yfmx9b5khbf4q50d8k5rk993rskfd34"; }) 251 - (fetchNuGet { pname = "System.Threading.AccessControl"; version = "6.0.0"; sha256 = "1f036x8994yqz13a1cx6vvzd2bqzwy4mchn1pgfsybaw1xa10jk6"; }) 252 - (fetchNuGet { pname = "System.Threading.Tasks"; version = "4.0.11"; sha256 = "0nr1r41rak82qfa5m0lhk9mp0k93bvfd7bbd9sdzwx9mb36g28p5"; }) 253 - (fetchNuGet { pname = "System.Threading.Tasks"; version = "4.3.0"; sha256 = "134z3v9abw3a6jsw17xl3f6hqjpak5l682k2vz39spj4kmydg6k7"; }) 254 - (fetchNuGet { pname = "System.Threading.Tasks.Dataflow"; version = "7.0.0"; sha256 = "0ham9l8xrmlq2qwin53n82iz1wanci2h695i3cq83jcw4n28qdr9"; }) 255 - (fetchNuGet { pname = "System.Threading.Tasks.Extensions"; version = "4.0.0"; sha256 = "1cb51z062mvc2i8blpzmpn9d9mm4y307xrwi65di8ri18cz5r1zr"; }) 256 - (fetchNuGet { pname = "System.Threading.Tasks.Extensions"; version = "4.5.4"; sha256 = "0y6ncasgfcgnjrhynaf0lwpkpkmv4a07sswwkwbwb5h7riisj153"; }) 257 - (fetchNuGet { pname = "System.Web.Services.Description"; version = "4.9.0"; sha256 = "08f9ksj826nz4pfw1bw7xg811x99yyj871nfmvav6yxfkx9faqkh"; }) 258 - (fetchNuGet { pname = "System.Windows.Extensions"; version = "6.0.0"; sha256 = "1wy9pq9vn1bqg5qnv53iqrbx04yzdmjw4x5yyi09y3459vaa1sip"; }) 259 - (fetchNuGet { pname = "System.Xml.ReaderWriter"; version = "4.0.11"; sha256 = "0c6ky1jk5ada9m94wcadih98l6k1fvf6vi7vhn1msjixaha419l5"; }) 260 - (fetchNuGet { pname = "System.Xml.XDocument"; version = "4.0.11"; sha256 = "0n4lvpqzy9kc7qy1a4acwwd7b7pnvygv895az5640idl2y9zbz18"; }) 261 - (fetchNuGet { pname = "TestableIO.System.IO.Abstractions"; version = "21.0.2"; sha256 = "1mc358wlq9y21gzj44af8hxlyjm0ws0i9f5vmsn31dn5wbfh4dy5"; }) 262 - (fetchNuGet { pname = "TestableIO.System.IO.Abstractions.Wrappers"; version = "21.0.2"; sha256 = "0q3vghssyh6rd7w7n4rjv5ngh5byf1y80i22yw9fx10f4hcsw1az"; }) 263 ]
··· 2 # Please dont edit it manually, your changes might get overwritten! 3 4 { fetchNuGet }: [ 5 + (fetchNuGet { pname = "Azure.Bicep.Internal.RoslynAnalyzers"; version = "0.1.38"; hash = "sha256-++iIefl+xbX3Tw4EsPvJrsMoG2DdQ5dPtqEgD+jaI6w="; }) 6 + (fetchNuGet { pname = "Azure.Bicep.Types"; version = "0.5.81"; hash = "sha256-eggoXh3X4h8UeyUN7EJEECW77yuM4sms7yogfasIB2I="; }) 7 + (fetchNuGet { pname = "Azure.Bicep.Types"; version = "0.5.9"; hash = "sha256-ArayCbMPz2itkOE88usMZfW5fx18cWlymdSVq/KXZQs="; }) 8 + (fetchNuGet { pname = "Azure.Bicep.Types.Az"; version = "0.2.698"; hash = "sha256-3O+CO+y8sqB3rJttuH9ymyoqygJVCtM4ybvPllCv+IU="; }) 9 + (fetchNuGet { pname = "Azure.Bicep.Types.K8s"; version = "0.1.626"; hash = "sha256-UYpfVbjvtr8eLWsjAEBrzVjxrHWiEEtjerNjafCLB7A="; }) 10 + (fetchNuGet { pname = "Azure.Containers.ContainerRegistry"; version = "1.1.1"; hash = "sha256-BC7QlrtYz74yDtTf/Kvf+Y3Vm3NEZsJLO5g5twKuxkI="; }) 11 + (fetchNuGet { pname = "Azure.Core"; version = "1.36.0"; hash = "sha256-lokfjW2wvgFu6bALLzNmDhXIz3HXoPuGX0WfGb9hmpI="; }) 12 + (fetchNuGet { pname = "Azure.Core"; version = "1.39.0"; hash = "sha256-l5c+iPoCPkR3bKJ48WY+YHGEP2Kft9CU0RT/K0LcZiw="; }) 13 + (fetchNuGet { pname = "Azure.Core"; version = "1.40.0"; hash = "sha256-c1DBQ+OmNAKoQkj3kC3U7yWy77yG+fo+H3vR1e+Qrpo="; }) 14 + (fetchNuGet { pname = "Azure.Deployments.Core"; version = "1.71.0"; hash = "sha256-voVequHvoUfk1SLLCibzsZrmYx6vQa4LCG1Na/m4weM="; }) 15 + (fetchNuGet { pname = "Azure.Deployments.DiffEngine"; version = "1.71.0"; hash = "sha256-tGy2ienvvMHd4jjGye5DdoGJlzBao8YKddqL3CQCAEA="; }) 16 + (fetchNuGet { pname = "Azure.Deployments.Engine"; version = "1.71.0"; hash = "sha256-J5mIPdbZcXuMT/sxb5aFQ0hFWn19yLyzoKqa0V+QEME="; }) 17 + (fetchNuGet { pname = "Azure.Deployments.Expression"; version = "1.71.0"; hash = "sha256-zycWbem1lFP49WosaYep7QwDdKm6cxx0ZHWWPXKnyqo="; }) 18 + (fetchNuGet { pname = "Azure.Deployments.Extensibility"; version = "1.71.0"; hash = "sha256-u16l7T2o4y+BA0wQ/u10ZGGjUI+bgzJBEE29ncsNEjI="; }) 19 + (fetchNuGet { pname = "Azure.Deployments.Extensibility.Core"; version = "0.1.55"; hash = "sha256-u5Xo/TkFJSOeI+/T1fWuEeFVQVT4gM6pE09jhY6b2vU="; }) 20 + (fetchNuGet { pname = "Azure.Deployments.Internal.GenerateNotice"; version = "0.1.38"; hash = "sha256-LW8q/5ler1c0tK8FGd5PIqnWpdC/YggKrERAFhioXwI="; }) 21 + (fetchNuGet { pname = "Azure.Deployments.JsonPath"; version = "1.0.1265"; hash = "sha256-67xm85aTEJHv/6iYXxnjmkHDEtRnTnFhzs9gv1H/J4c="; }) 22 + (fetchNuGet { pname = "Azure.Deployments.ResourceMetadata"; version = "1.0.1265"; hash = "sha256-kvFL2oHG7javm4K8Wkyjc72jUbJBWKunlt0yrL360Wg="; }) 23 + (fetchNuGet { pname = "Azure.Deployments.Templates"; version = "1.71.0"; hash = "sha256-ORtuQEvMr5j0yCKZMzBO5GuDfG9XFEho2gkpGtk944k="; }) 24 + (fetchNuGet { pname = "Azure.Identity"; version = "1.12.0"; hash = "sha256-F3dFL8/HHqYgINxe9OAkHW067KPcsKgLjcPTHmpfBAo="; }) 25 + (fetchNuGet { pname = "Azure.ResourceManager"; version = "1.11.1"; hash = "sha256-Pi+LT//A33XzGSE0yb1FK+fxu8FIfcD3/KOnTHQW120="; }) 26 + (fetchNuGet { pname = "Azure.ResourceManager.Resources"; version = "1.7.3"; hash = "sha256-SfQ1bavuKdwPW81ML2x3gVpDRwIvTvAO9h2E12pVito="; }) 27 + (fetchNuGet { pname = "CommandLineParser"; version = "2.9.1"; hash = "sha256-ApU9y1yX60daSjPk3KYDBeJ7XZByKW8hse9NRZGcjeo="; }) 28 + (fetchNuGet { pname = "coverlet.collector"; version = "6.0.2"; hash = "sha256-LdSQUrOmjFug47LjtqgtN2MM6BcfG0HR5iL+prVHlDo="; }) 29 + (fetchNuGet { pname = "FluentAssertions"; version = "6.12.0"; hash = "sha256-LGlPe+G7lBwj5u3ttQZiKX2+C195ddRAHPuDkY6x0BE="; }) 30 + (fetchNuGet { pname = "Google.Protobuf"; version = "3.27.1"; hash = "sha256-6BdAwStdmfFEwCqkYO4yffdq6QBDZskfmopI5fl0Dy8="; }) 31 + (fetchNuGet { pname = "Grpc.Core.Api"; version = "2.63.0"; hash = "sha256-tPvrMdQoVn6quCOkfiDyuTPzJN55vghMeIWmn1Gy2Ig="; }) 32 + (fetchNuGet { pname = "Grpc.Net.Client"; version = "2.63.0"; hash = "sha256-iq5O1Aa1SlBeuW5MoZnRotmQbPJmqSkhbyO53WVwSSk="; }) 33 + (fetchNuGet { pname = "Grpc.Net.Common"; version = "2.63.0"; hash = "sha256-JHpSo+cymATjLloCXRATzkXJr6zYRM2X2B/nQfXAdQ0="; }) 34 + (fetchNuGet { pname = "Grpc.Tools"; version = "2.64.0"; hash = "sha256-vL8NnlHu6X4g6VLMQ7K6ZpBg3SgahaELonRK2B8/47E="; }) 35 + (fetchNuGet { pname = "Humanizer.Core"; version = "2.14.1"; hash = "sha256-EXvojddPu+9JKgOG9NSQgUTfWq1RpOYw7adxDPKDJ6o="; }) 36 + (fetchNuGet { pname = "IPNetwork2"; version = "2.6.548"; hash = "sha256-6N61UG/WrJWNv+bO/l9BNWA17iPIMn5G4J7maw54UPg="; }) 37 + (fetchNuGet { pname = "IPNetwork2"; version = "2.6.598"; hash = "sha256-FPjItZbaf5gJYP6lORQITPqWnwHN0WDLvq+v4Hmc3Q4="; }) 38 + (fetchNuGet { pname = "JetBrains.Annotations"; version = "2019.1.3"; hash = "sha256-gn2Z7yANT+2tnK+qbOA2PviRf1M1VtvamABGajgGC6E="; }) 39 + (fetchNuGet { pname = "JetBrains.Annotations"; version = "2023.3.0"; hash = "sha256-/Eykez68qYMO5mlmUelzAke8aJehyp8fspO5Z+yt5G4="; }) 40 + (fetchNuGet { pname = "Json.More.Net"; version = "2.0.1.2"; hash = "sha256-fnp/By8n8xKa8bhvUbO2p8rlze5AvgA+z9ZvWEpL/Ls="; }) 41 + (fetchNuGet { pname = "JsonDiffPatch.Net"; version = "2.1.0"; hash = "sha256-lyUOusPMv1ZF3EcrEFG4Fze603CVPxLwOPmTVOy/HmU="; }) 42 + (fetchNuGet { pname = "JsonPatch.Net"; version = "3.1.0"; hash = "sha256-bvCOOiH2SruZXF+jPYlAaEkinZ040YDp9QjP3QXlCbc="; }) 43 + (fetchNuGet { pname = "JsonPath.Net"; version = "1.1.0"; hash = "sha256-FQGPodaxHwyfRN3HhEl7N39SKsn922FiZAiDzKOYxUo="; }) 44 + (fetchNuGet { pname = "JsonPointer.Net"; version = "5.0.0"; hash = "sha256-OCeXHpJyHJSyh2vpnrY8nSuM4u3eNXtN6YXnJZyHnWc="; }) 45 + (fetchNuGet { pname = "JsonSchema.Net"; version = "7.0.4"; hash = "sha256-sCaGr8m20DzNEkF3TS7Cb+wmvo3hYZPZwQ2bTqwlB5g="; }) 46 + (fetchNuGet { pname = "MessagePack"; version = "2.5.108"; hash = "sha256-+vMXyEbfutY5WOFuFnNF24uLcKJTTdntVrVlSJH4yjI="; }) 47 + (fetchNuGet { pname = "MessagePack.Annotations"; version = "2.5.108"; hash = "sha256-u3Qu8UftNIz3oIzQUMa7Z0G6VzmDLcAnAeNQ3lB3YVk="; }) 48 + (fetchNuGet { pname = "Microsoft.ApplicationInsights"; version = "2.22.0"; hash = "sha256-mUQ63atpT00r49ca50uZu2YCiLg3yd6r3HzTryqcuEA="; }) 49 + (fetchNuGet { pname = "Microsoft.AspNet.WebApi.Client"; version = "6.0.0"; hash = "sha256-lNL5C4W7/p8homWooO/3ZKDZQ2M0FUTDixJwqWBPVbo="; }) 50 + (fetchNuGet { pname = "Microsoft.Automata.SRM"; version = "1.2.2"; hash = "sha256-cVVxKqguV48WRuk2HyRP5A2b4kZd3nSVY3rMe0SRSQw="; }) 51 + (fetchNuGet { pname = "Microsoft.Bcl.AsyncInterfaces"; version = "1.1.1"; hash = "sha256-fAcX4sxE0veWM1CZBtXR/Unky+6sE33yrV7ohrWGKig="; }) 52 + (fetchNuGet { pname = "Microsoft.Bcl.AsyncInterfaces"; version = "5.0.0"; hash = "sha256-bpJjcJSUSZH0GeOXoZI12xUQOf2SRtxG7sZV0dWS5TI="; }) 53 + (fetchNuGet { pname = "Microsoft.Bcl.AsyncInterfaces"; version = "8.0.0"; hash = "sha256-9aWmiwMJKrKr9ohD1KSuol37y+jdDxPGJct3m2/Bknw="; }) 54 + (fetchNuGet { pname = "Microsoft.Build.Tasks.Git"; version = "8.0.0"; hash = "sha256-vX6/kPij8vNAu8f7rrvHHhPrNph20IcufmrBgZNxpQA="; }) 55 + (fetchNuGet { pname = "Microsoft.CodeAnalysis.BannedApiAnalyzers"; version = "3.3.4"; hash = "sha256-YPTHTZ8xRPMLADdcVYRO/eq3O9uZjsD+OsGRZE+0+e8="; }) 56 + (fetchNuGet { pname = "Microsoft.CodeCoverage"; version = "17.10.0"; hash = "sha256-yQFwqVChRtIRpbtkJr92JH2i+O7xn91NGbYgnKs8G2g="; }) 57 + (fetchNuGet { pname = "Microsoft.CSharp"; version = "4.0.1"; hash = "sha256-0huoqR2CJ3Z9Q2peaKD09TV3E6saYSqDGZ290K8CrH8="; }) 58 + (fetchNuGet { pname = "Microsoft.Diagnostics.Tracing.EventRegister"; version = "1.1.28"; hash = "sha256-A/gOXo0PWS8+L7OyJz1s8zDxGU39SFuvxrHZnqSLANI="; }) 59 + (fetchNuGet { pname = "Microsoft.Diagnostics.Tracing.TraceEvent"; version = "3.1.3"; hash = "sha256-MVKR1ZRpUMNdRAPuXh9cp5T/hG7wu8R9wUr9bey8V60="; }) 60 + (fetchNuGet { pname = "Microsoft.Extensions.Configuration"; version = "8.0.0"; hash = "sha256-9BPsASlxrV8ilmMCjdb3TiUcm5vFZxkBnAI/fNBSEyA="; }) 61 + (fetchNuGet { pname = "Microsoft.Extensions.Configuration.Abstractions"; version = "8.0.0"; hash = "sha256-4eBpDkf7MJozTZnOwQvwcfgRKQGcNXe0K/kF+h5Rl8o="; }) 62 + (fetchNuGet { pname = "Microsoft.Extensions.Configuration.Binder"; version = "8.0.1"; hash = "sha256-KYPQYYspiBGiez7JshmEjy4kFt7ASzVxQeVsygIEvHA="; }) 63 + (fetchNuGet { pname = "Microsoft.Extensions.Configuration.FileExtensions"; version = "8.0.0"; hash = "sha256-BCxcjVP+kvrDDB0nzsFCJfU74UK4VBvct2JA4r+jNcs="; }) 64 + (fetchNuGet { pname = "Microsoft.Extensions.Configuration.Json"; version = "8.0.0"; hash = "sha256-Fi/ijcG5l0BOu7i96xHu96aN5/g7zO6SWQbTsI3Qetg="; }) 65 + (fetchNuGet { pname = "Microsoft.Extensions.DependencyInjection"; version = "8.0.0"; hash = "sha256-+qIDR8hRzreCHNEDtUcPfVHQdurzWPo/mqviCH78+EQ="; }) 66 + (fetchNuGet { pname = "Microsoft.Extensions.DependencyInjection.Abstractions"; version = "8.0.0"; hash = "sha256-75KzEGWjbRELczJpCiJub+ltNUMMbz5A/1KQU+5dgP8="; }) 67 + (fetchNuGet { pname = "Microsoft.Extensions.Diagnostics"; version = "8.0.0"; hash = "sha256-fBLlb9xAfTgZb1cpBxFs/9eA+BlBvF8Xg0DMkBqdHD4="; }) 68 + (fetchNuGet { pname = "Microsoft.Extensions.Diagnostics.Abstractions"; version = "8.0.0"; hash = "sha256-USD5uZOaahMqi6u7owNWx/LR4EDrOwqPrAAim7iRpJY="; }) 69 + (fetchNuGet { pname = "Microsoft.Extensions.FileProviders.Abstractions"; version = "8.0.0"; hash = "sha256-uQSXmt47X2HGoVniavjLICbPtD2ReQOYQMgy3l0xuMU="; }) 70 + (fetchNuGet { pname = "Microsoft.Extensions.FileProviders.Physical"; version = "8.0.0"; hash = "sha256-29y5ZRQ1ZgzVOxHktYxyiH40kVgm5un2yTGdvuSWnRc="; }) 71 + (fetchNuGet { pname = "Microsoft.Extensions.FileSystemGlobbing"; version = "8.0.0"; hash = "sha256-+Oz41JR5jdcJlCJOSpQIL5OMBNi+1Hl2d0JUHfES7sU="; }) 72 + (fetchNuGet { pname = "Microsoft.Extensions.Http"; version = "8.0.0"; hash = "sha256-UgljypOLld1lL7k7h1noazNzvyEHIJw+r+6uGzucFSY="; }) 73 + (fetchNuGet { pname = "Microsoft.Extensions.Logging"; version = "8.0.0"; hash = "sha256-Meh0Z0X7KyOEG4l0RWBcuHHihcABcvCyfUXgasmQ91o="; }) 74 + (fetchNuGet { pname = "Microsoft.Extensions.Logging.Abstractions"; version = "6.0.0"; hash = "sha256-QNqcQ3x+MOK7lXbWkCzSOWa/2QyYNbdM/OEEbWN15Sw="; }) 75 + (fetchNuGet { pname = "Microsoft.Extensions.Logging.Abstractions"; version = "8.0.0"; hash = "sha256-Jmddjeg8U5S+iBTwRlVAVLeIHxc4yrrNgqVMOB7EjM4="; }) 76 + (fetchNuGet { pname = "Microsoft.Extensions.ObjectPool"; version = "5.0.10"; hash = "sha256-tAjiU3w0hdPAGUitszxZ6jtEilRn977MY7N5eZMx0x0="; }) 77 + (fetchNuGet { pname = "Microsoft.Extensions.Options"; version = "8.0.0"; hash = "sha256-n2m4JSegQKUTlOsKLZUUHHKMq926eJ0w9N9G+I3FoFw="; }) 78 + (fetchNuGet { pname = "Microsoft.Extensions.Options.ConfigurationExtensions"; version = "8.0.0"; hash = "sha256-A5Bbzw1kiNkgirk5x8kyxwg9lLTcSngojeD+ocpG1RI="; }) 79 + (fetchNuGet { pname = "Microsoft.Extensions.Primitives"; version = "8.0.0"; hash = "sha256-FU8qj3DR8bDdc1c+WeGZx/PCZeqqndweZM9epcpXjSo="; }) 80 + (fetchNuGet { pname = "Microsoft.Graph.Bicep.Types"; version = "0.1.6-preview"; hash = "sha256-01IC1xejcwK5da5UEhxgzfBcuT1plAajbFp2jNgS4II="; }) 81 + (fetchNuGet { pname = "Microsoft.Identity.Client"; version = "4.61.3"; hash = "sha256-1cccC8EWlIQlJ3SSOB7CNImOYSaxsJpRHvlCgv2yOtA="; }) 82 + (fetchNuGet { pname = "Microsoft.Identity.Client.Extensions.Msal"; version = "4.61.3"; hash = "sha256-nFQ2C7S4BQ4nvQmGAc5Ar7/ynKyztvK7fPKrpJXaQFE="; }) 83 + (fetchNuGet { pname = "Microsoft.IdentityModel.Abstractions"; version = "6.35.0"; hash = "sha256-bxyYu6/QgaA4TQYBr5d+bzICL+ktlkdy/tb/1fBu00Q="; }) 84 + (fetchNuGet { pname = "Microsoft.NET.StringTools"; version = "17.4.0"; hash = "sha256-+9uBaUDZ3roUJwyYJUL30Mz+3C6LE16FzfQKgS0Yveo="; }) 85 + (fetchNuGet { pname = "Microsoft.NET.Test.Sdk"; version = "17.10.0"; hash = "sha256-rkHIqB2mquNXF89XBTFpUL2z5msjTBsOcyjSBCh36I0="; }) 86 + (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.0.1"; hash = "sha256-mZotlGZqtrqDSoBrZhsxFe6fuOv5/BIo0w2Z2x0zVAU="; }) 87 + (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.1.0"; hash = "sha256-FeM40ktcObQJk4nMYShB61H/E8B7tIKfl9ObJ0IOcCM="; }) 88 + (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.1.1"; hash = "sha256-8hLiUKvy/YirCWlFwzdejD2Db3DaXhHxT7GSZx/znJg="; }) 89 + (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "3.1.0"; hash = "sha256-cnygditsEaU86bnYtIthNMymAHqaT/sf9Gjykhzqgb0="; }) 90 + (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "5.0.0"; hash = "sha256-LIcg1StDcQLPOABp4JRXIs837d7z0ia6+++3SF3jl1c="; }) 91 + (fetchNuGet { pname = "Microsoft.NETCore.Targets"; version = "1.0.1"; hash = "sha256-lxxw/Gy32xHi0fLgFWNj4YTFBSBkjx5l6ucmbTyf7V4="; }) 92 + (fetchNuGet { pname = "Microsoft.NETCore.Targets"; version = "1.1.0"; hash = "sha256-0AqQ2gMS8iNlYkrD+BxtIg7cXMnr9xZHtKAuN4bjfaQ="; }) 93 + (fetchNuGet { pname = "Microsoft.NETCore.Targets"; version = "1.1.3"; hash = "sha256-WLsf1NuUfRWyr7C7Rl9jiua9jximnVvzy6nk2D2bVRc="; }) 94 + (fetchNuGet { pname = "Microsoft.PowerPlatform.ResourceStack"; version = "7.0.0.2007"; hash = "sha256-XjmVeRhHkBlDbM/anEwN/pFbNHC1w7YMZ49LRV7cL8I="; }) 95 + (fetchNuGet { pname = "Microsoft.SourceLink.Common"; version = "8.0.0"; hash = "sha256-AfUqleVEqWuHE7z2hNiwOLnquBJ3tuYtbkdGMppHOXc="; }) 96 + (fetchNuGet { pname = "Microsoft.SourceLink.GitHub"; version = "8.0.0"; hash = "sha256-hNTkpKdCLY5kIuOmznD1mY+pRdJ0PKu2HypyXog9vb0="; }) 97 + (fetchNuGet { pname = "Microsoft.Testing.Extensions.Telemetry"; version = "1.2.1"; hash = "sha256-/KshvKuql1A7zI1kTseWEYsOVMyOWZDXlFfKr0fz0Kg="; }) 98 + (fetchNuGet { pname = "Microsoft.Testing.Extensions.TrxReport.Abstractions"; version = "1.2.1"; hash = "sha256-YciAKvo1VBDoqGohABY2uD+Tt7wxpSqICV6ytEBNYKQ="; }) 99 + (fetchNuGet { pname = "Microsoft.Testing.Extensions.VSTestBridge"; version = "1.2.1"; hash = "sha256-vcf+MYu9Rp/Xpy1cA/azVz1KAkMgNrekD+LZX85Anq4="; }) 100 + (fetchNuGet { pname = "Microsoft.Testing.Platform"; version = "1.2.1"; hash = "sha256-ExXw+kScOwZsRDos3Myvh53yazGTGtjrtn2H1XbFi34="; }) 101 + (fetchNuGet { pname = "Microsoft.Testing.Platform.MSBuild"; version = "1.2.1"; hash = "sha256-B0AGaqwtuoT9DxXDvkR0bwEvVzSd67+vGZAgBm0nxxw="; }) 102 + (fetchNuGet { pname = "Microsoft.TestPlatform.ObjectModel"; version = "17.10.0"; hash = "sha256-3YjVGK2zEObksBGYg8b/CqoJgLQ1jUv4GCWNjDhLRh4="; }) 103 + (fetchNuGet { pname = "Microsoft.TestPlatform.ObjectModel"; version = "17.5.0"; hash = "sha256-mj5UH+aqVk7f3Uu0+L47aqZUudJNCx3Lk7cbP4fzcmI="; }) 104 + (fetchNuGet { pname = "Microsoft.TestPlatform.TestHost"; version = "17.10.0"; hash = "sha256-+yzP3FY6WoOosSpYnB7duZLhOPUZMQYy8zJ1d3Q4hK4="; }) 105 + (fetchNuGet { pname = "Microsoft.VisualStudio.Threading"; version = "17.9.28"; hash = "sha256-4Z/uKv/jJPHXCJD9W/2vHNDfas3o4EfLh6+Tmkv44YE="; }) 106 + (fetchNuGet { pname = "Microsoft.VisualStudio.Threading.Analyzers"; version = "17.10.48"; hash = "sha256-EvZGbyxtrJDvHZwsQbZDXtVfWiy0f58oCdTdSzD34wI="; }) 107 + (fetchNuGet { pname = "Microsoft.VisualStudio.Validation"; version = "17.8.8"; hash = "sha256-sB8GLRiJHX3Py7qeBUnUANiDWhyPtISon6HQs+8wKms="; }) 108 + (fetchNuGet { pname = "Microsoft.Win32.Registry"; version = "4.7.0"; hash = "sha256-+jWCwRqU/J/jLdQKDFm93WfIDrDMXMJ984UevaQMoi8="; }) 109 + (fetchNuGet { pname = "Microsoft.Win32.Registry"; version = "5.0.0"; hash = "sha256-9kylPGfKZc58yFqNKa77stomcoNnMeERXozWJzDcUIA="; }) 110 + (fetchNuGet { pname = "Microsoft.Win32.Registry.AccessControl"; version = "6.0.0"; hash = "sha256-Vm9H1A7+YDXtAjYimnN28TQLm94c8UkQNTSIa9ghPbA="; }) 111 + (fetchNuGet { pname = "Microsoft.Win32.SystemEvents"; version = "6.0.1"; hash = "sha256-wk8oV7jHZfSxKX5PDcV3S/pSnsaFq4mr8fakvJI4V9U="; }) 112 + (fetchNuGet { pname = "Microsoft.Windows.Compatibility"; version = "6.0.7"; hash = "sha256-LSQbmbX833b0Q6s6h6Un+yfU8JZS6eLbgFHwes5rAaw="; }) 113 + (fetchNuGet { pname = "MSTest.TestAdapter"; version = "3.4.3"; hash = "sha256-uOhEZp71KV0DFfkD4fMhy9zEggPBvzof1GZ5Z5ulWkM="; }) 114 + (fetchNuGet { pname = "MSTest.TestFramework"; version = "3.4.3"; hash = "sha256-d3fTMQese3ld1WTw0v6MGczgdSnE28/UaM2E7T59cUM="; }) 115 + (fetchNuGet { pname = "Nerdbank.GitVersioning"; version = "3.6.139"; hash = "sha256-DMEdNlYh9tqkqQ/98zwk7NcRYBpTApLiFwzkgaHP7Fo="; }) 116 + (fetchNuGet { pname = "Nerdbank.Streams"; version = "2.10.69"; hash = "sha256-a0hXKhR7dv6Vm4rlUOD2ffBKG49CC3wzXLCHeTz1ms4="; }) 117 + (fetchNuGet { pname = "Newtonsoft.Json"; version = "13.0.1"; hash = "sha256-K2tSVW4n4beRPzPu3rlVaBEMdGvWSv/3Q1fxaDh4Mjo="; }) 118 + (fetchNuGet { pname = "Newtonsoft.Json"; version = "13.0.2"; hash = "sha256-ESyjt/R7y9dDvvz5Sftozk+e/3Otn38bOcLGGh69Ot0="; }) 119 + (fetchNuGet { pname = "Newtonsoft.Json"; version = "13.0.3"; hash = "sha256-hy/BieY4qxBWVVsDqqOPaLy1QobiIapkbrESm6v2PHc="; }) 120 + (fetchNuGet { pname = "Newtonsoft.Json"; version = "9.0.1"; hash = "sha256-mYCBrgUhIJFzRuLLV9SIiIFHovzfR8Uuqfg6e08EnlU="; }) 121 + (fetchNuGet { pname = "Newtonsoft.Json.Bson"; version = "1.0.2"; hash = "sha256-ZUj6YFSMZp5CZtXiamw49eZmbp1iYBuNsIKNnjxcRzA="; }) 122 + (fetchNuGet { pname = "NuGet.Frameworks"; version = "5.11.0"; hash = "sha256-n+hxcrf+sXM80Tv9YH9x4+hwTslVidFq4tjBNPAzYnM="; }) 123 + (fetchNuGet { pname = "runtime.any.System.Collections"; version = "4.3.0"; hash = "sha256-4PGZqyWhZ6/HCTF2KddDsbmTTjxs2oW79YfkberDZS8="; }) 124 + (fetchNuGet { pname = "runtime.any.System.Diagnostics.Tools"; version = "4.3.0"; hash = "sha256-8yLKFt2wQxkEf7fNfzB+cPUCjYn2qbqNgQ1+EeY2h/I="; }) 125 + (fetchNuGet { pname = "runtime.any.System.Diagnostics.Tracing"; version = "4.3.0"; hash = "sha256-dsmTLGvt8HqRkDWP8iKVXJCS+akAzENGXKPV18W2RgI="; }) 126 + (fetchNuGet { pname = "runtime.any.System.Globalization"; version = "4.3.0"; hash = "sha256-PaiITTFI2FfPylTEk7DwzfKeiA/g/aooSU1pDcdwWLU="; }) 127 + (fetchNuGet { pname = "runtime.any.System.IO"; version = "4.3.0"; hash = "sha256-vej7ySRhyvM3pYh/ITMdC25ivSd0WLZAaIQbYj/6HVE="; }) 128 + (fetchNuGet { pname = "runtime.any.System.Reflection"; version = "4.3.0"; hash = "sha256-ns6f++lSA+bi1xXgmW1JkWFb2NaMD+w+YNTfMvyAiQk="; }) 129 + (fetchNuGet { pname = "runtime.any.System.Reflection.Extensions"; version = "4.3.0"; hash = "sha256-Y2AnhOcJwJVYv7Rp6Jz6ma0fpITFqJW+8rsw106K2X8="; }) 130 + (fetchNuGet { pname = "runtime.any.System.Reflection.Primitives"; version = "4.3.0"; hash = "sha256-LkPXtiDQM3BcdYkAm5uSNOiz3uF4J45qpxn5aBiqNXQ="; }) 131 + (fetchNuGet { pname = "runtime.any.System.Resources.ResourceManager"; version = "4.3.0"; hash = "sha256-9EvnmZslLgLLhJ00o5MWaPuJQlbUFcUF8itGQNVkcQ4="; }) 132 + (fetchNuGet { pname = "runtime.any.System.Runtime"; version = "4.3.0"; hash = "sha256-qwhNXBaJ1DtDkuRacgHwnZmOZ1u9q7N8j0cWOLYOELM="; }) 133 + (fetchNuGet { pname = "runtime.any.System.Runtime.Handles"; version = "4.3.0"; hash = "sha256-PQRACwnSUuxgVySO1840KvqCC9F8iI9iTzxNW0RcBS4="; }) 134 + (fetchNuGet { pname = "runtime.any.System.Runtime.InteropServices"; version = "4.3.0"; hash = "sha256-Kaw5PnLYIiqWbsoF3VKJhy7pkpoGsUwn4ZDCKscbbzA="; }) 135 + (fetchNuGet { pname = "runtime.any.System.Text.Encoding"; version = "4.3.0"; hash = "sha256-Q18B9q26MkWZx68exUfQT30+0PGmpFlDgaF0TnaIGCs="; }) 136 + (fetchNuGet { pname = "runtime.any.System.Text.Encoding.Extensions"; version = "4.3.0"; hash = "sha256-6MYj0RmLh4EVqMtO/MRqBi0HOn5iG4x9JimgCCJ+EFM="; }) 137 + (fetchNuGet { pname = "runtime.any.System.Threading.Tasks"; version = "4.3.0"; hash = "sha256-agdOM0NXupfHbKAQzQT8XgbI9B8hVEh+a/2vqeHctg4="; }) 138 + (fetchNuGet { pname = "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-LXUPLX3DJxsU1Pd3UwjO1PO9NM2elNEDXeu2Mu/vNps="; }) 139 + (fetchNuGet { pname = "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-qeSqaUI80+lqw5MK4vMpmO0CZaqrmYktwp6L+vQAb0I="; }) 140 + (fetchNuGet { pname = "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-SrHqT9wrCBsxILWtaJgGKd6Odmxm8/Mh7Kh0CUkZVzA="; }) 141 + (fetchNuGet { pname = "runtime.linux-arm.runtime.native.System.IO.Ports"; version = "6.0.0"; hash = "sha256-rD0eibV1kRqbbzvLmuCx8ZIvI5ps3zAB3CDYa1HfX1U="; }) 142 + (fetchNuGet { pname = "runtime.linux-arm64.runtime.native.System.IO.Ports"; version = "6.0.0"; hash = "sha256-0kcxn9GoyPmxFSGkuiy11qfMhL39peHfCdv38DfXLHs="; }) 143 + (fetchNuGet { pname = "runtime.linux-x64.runtime.native.System.IO.Ports"; version = "6.0.0"; hash = "sha256-4mWwtWON7YV4zK1r8n6s6HChN5EOHO+WD/r2bfF3SGs="; }) 144 + (fetchNuGet { pname = "runtime.native.System"; version = "4.3.0"; hash = "sha256-ZBZaodnjvLXATWpXXakFgcy6P+gjhshFXmglrL5xD5Y="; }) 145 + (fetchNuGet { pname = "runtime.native.System.Data.SqlClient.sni"; version = "4.7.0"; hash = "sha256-cj0+BpmoibwOWj2wNXwONJeTGosmFwhD349zPjNaBK0="; }) 146 + (fetchNuGet { pname = "runtime.native.System.IO.Ports"; version = "6.0.0"; hash = "sha256-fNAW4rlnR+dP+1NkmgNwwYowviSo0wDJBt/hqAT5iFo="; }) 147 + (fetchNuGet { pname = "runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-Jy01KhtcCl2wjMpZWH+X3fhHcVn+SyllWFY8zWlz/6I="; }) 148 + (fetchNuGet { pname = "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-wyv00gdlqf8ckxEdV7E+Ql9hJIoPcmYEuyeWb5Oz3mM="; }) 149 + (fetchNuGet { pname = "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-zi+b4sCFrA9QBiSGDD7xPV27r3iHGlV99gpyVUjRmc4="; }) 150 + (fetchNuGet { pname = "runtime.osx-arm64.runtime.native.System.IO.Ports"; version = "6.0.0"; hash = "sha256-hbMoq9BLIuRgvDzQt2+CNFvf1+6OOe6//OTRlBjnmoQ="; }) 151 + (fetchNuGet { pname = "runtime.osx-x64.runtime.native.System.IO.Ports"; version = "6.0.0"; hash = "sha256-m4+ViGRSXvqCdJaYFwQijwr7wZiTuuImzVj1IG+4kc8="; }) 152 + (fetchNuGet { pname = "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-gybQU6mPgaWV3rBG2dbH6tT3tBq8mgze3PROdsuWnX0="; }) 153 + (fetchNuGet { pname = "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-VsP72GVveWnGUvS/vjOQLv1U80H2K8nZ4fDAmI61Hm4="; }) 154 + (fetchNuGet { pname = "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-4yKGa/IrNCKuQ3zaDzILdNPD32bNdy6xr5gdJigyF5g="; }) 155 + (fetchNuGet { pname = "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-HmdJhhRsiVoOOCcUvAwdjpMRiyuSwdcgEv2j9hxi+Zc="; }) 156 + (fetchNuGet { pname = "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-pVFUKuPPIx0edQKjzRon3zKq8zhzHEzko/lc01V/jdw="; }) 157 + (fetchNuGet { pname = "runtime.unix.System.Diagnostics.Debug"; version = "4.3.0"; hash = "sha256-ReoazscfbGH+R6s6jkg5sIEHWNEvjEoHtIsMbpc7+tI="; }) 158 + (fetchNuGet { pname = "runtime.unix.System.IO.FileSystem"; version = "4.3.0"; hash = "sha256-Pf4mRl6YDK2x2KMh0WdyNgv0VUNdSKVDLlHqozecy5I="; }) 159 + (fetchNuGet { pname = "runtime.unix.System.Private.Uri"; version = "4.3.0"; hash = "sha256-c5tXWhE/fYbJVl9rXs0uHh3pTsg44YD1dJvyOA0WoMs="; }) 160 + (fetchNuGet { pname = "runtime.unix.System.Runtime.Extensions"; version = "4.3.0"; hash = "sha256-l8S9gt6dk3qYG6HYonHtdlYtBKyPb29uQ6NDjmrt3V4="; }) 161 + (fetchNuGet { pname = "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni"; version = "4.4.0"; hash = "sha256-8xGiqk5g4kM79//SirozmDtDpqwVXH3CmvIs7GNwfh0="; }) 162 + (fetchNuGet { pname = "runtime.win-x64.runtime.native.System.Data.SqlClient.sni"; version = "4.4.0"; hash = "sha256-HoXKGBkue0RJT1SZxAliVmT5rbfU3xD8mH8hfCvRxwQ="; }) 163 + (fetchNuGet { pname = "runtime.win-x86.runtime.native.System.Data.SqlClient.sni"; version = "4.4.0"; hash = "sha256-jPnWzDcbufO51GLGjynWHy0b+5PBqNxM+VKmSrObeUw="; }) 164 + (fetchNuGet { pname = "Sarif.Sdk"; version = "4.5.4"; hash = "sha256-XHzRVA4rymiskk+WMtKMv1Vj0vU9g/RET0TiZrHJgi8="; }) 165 + (fetchNuGet { pname = "Semver"; version = "2.3.0"; hash = "sha256-77/J/w41PLEMIxA5Uj475TeReBGw8QwptQsbQDtdsMI="; }) 166 + (fetchNuGet { pname = "SharpYaml"; version = "2.1.1"; hash = "sha256-KSs7993j0VJxSDx/VpruMQFnnjP4CzvzPLlIfDEwOpw="; }) 167 + (fetchNuGet { pname = "Sprache.StrongNamed"; version = "2.3.2"; hash = "sha256-q6G1Y1/oellt0ABex7UQZdc0ACEBKFT6Ah+mNIHWyVw="; }) 168 + (fetchNuGet { pname = "StreamJsonRpc"; version = "2.18.48"; hash = "sha256-/vjpwKMFoJfSf+uKEjmWzW/HdIfDGMLb7el91ni6gFQ="; }) 169 + (fetchNuGet { pname = "System.Buffers"; version = "4.3.0"; hash = "sha256-XqZWb4Kd04960h4U9seivjKseGA/YEIpdplfHYHQ9jk="; }) 170 + (fetchNuGet { pname = "System.ClientModel"; version = "1.0.0"; hash = "sha256-yHb72M/Z8LeSZea9TKw2eD0SdYEoCNwVw6Z3695SC2Y="; }) 171 + (fetchNuGet { pname = "System.CodeDom"; version = "6.0.0"; hash = "sha256-uPetUFZyHfxjScu5x4agjk9pIhbCkt5rG4Axj25npcQ="; }) 172 + (fetchNuGet { pname = "System.Collections"; version = "4.0.11"; hash = "sha256-puoFMkx4Z55C1XPxNw3np8nzNGjH+G24j43yTIsDRL0="; }) 173 + (fetchNuGet { pname = "System.Collections"; version = "4.3.0"; hash = "sha256-afY7VUtD6w/5mYqrce8kQrvDIfS2GXDINDh73IjxJKc="; }) 174 + (fetchNuGet { pname = "System.Collections.Immutable"; version = "1.6.0"; hash = "sha256-gnu+8nN48GAd4GRgeB5cAQmW7VnCubL/8h7zO377fd0="; }) 175 + (fetchNuGet { pname = "System.Collections.Immutable"; version = "5.0.0"; hash = "sha256-GdwSIjLMM0uVfE56VUSLVNgpW0B//oCeSFj8/hSlbM8="; }) 176 + (fetchNuGet { pname = "System.Collections.Immutable"; version = "7.0.0"; hash = "sha256-9an2wbxue2qrtugYES9awshQg+KfJqajhnhs45kQIdk="; }) 177 + (fetchNuGet { pname = "System.ComponentModel.Composition"; version = "6.0.0"; hash = "sha256-7JyYbqWl1NHTNMJW12g6TtYfkemI52nOnX7OHWvp7ps="; }) 178 + (fetchNuGet { pname = "System.ComponentModel.Composition.Registration"; version = "6.0.0"; hash = "sha256-NOw9ZLTBGBwQoHk8P6yIH1f+WoU3fSfm+jNrTQVZZdM="; }) 179 + (fetchNuGet { pname = "System.Configuration.ConfigurationManager"; version = "4.4.0"; hash = "sha256-+8wGYllXnIxRzy9dLhZFB88GoPj8ivYXS0KUfcivT8I="; }) 180 + (fetchNuGet { pname = "System.Configuration.ConfigurationManager"; version = "6.0.1"; hash = "sha256-U/0HyekAZK5ya2VNfGA1HeuQyJChoaqcoIv57xLpzLQ="; }) 181 + (fetchNuGet { pname = "System.Data.Odbc"; version = "6.0.1"; hash = "sha256-pNMxoZsQmzpCD4hs3m4y3OrSgo3deVrWCusVb/p36Yk="; }) 182 + (fetchNuGet { pname = "System.Data.OleDb"; version = "6.0.0"; hash = "sha256-/257N3mNP7xY+c40F5XPQ4CYPSqhuV9mlnmEeTg2bjE="; }) 183 + (fetchNuGet { pname = "System.Data.SqlClient"; version = "4.8.6"; hash = "sha256-Qc/yco3e0+6jP8UiMA0ERlfSEKdINv0BmHixh9Z8fJQ="; }) 184 + (fetchNuGet { pname = "System.Diagnostics.Debug"; version = "4.3.0"; hash = "sha256-fkA79SjPbSeiEcrbbUsb70u9B7wqbsdM9s1LnoKj0gM="; }) 185 + (fetchNuGet { pname = "System.Diagnostics.DiagnosticSource"; version = "5.0.0"; hash = "sha256-6mW3N6FvcdNH/pB58pl+pFSCGWgyaP4hfVtC/SMWDV4="; }) 186 + (fetchNuGet { pname = "System.Diagnostics.DiagnosticSource"; version = "5.0.1"; hash = "sha256-GhsDHdSohoMBfYcCsEZN+Frfc8zH6rSovvugqjkh/Fc="; }) 187 + (fetchNuGet { pname = "System.Diagnostics.DiagnosticSource"; version = "6.0.1"; hash = "sha256-Xi8wrUjVlioz//TPQjFHqcV/QGhTqnTfUcltsNlcCJ4="; }) 188 + (fetchNuGet { pname = "System.Diagnostics.DiagnosticSource"; version = "8.0.0"; hash = "sha256-+aODaDEQMqla5RYZeq0Lh66j+xkPYxykrVvSCmJQ+Vs="; }) 189 + (fetchNuGet { pname = "System.Diagnostics.EventLog"; version = "6.0.0"; hash = "sha256-zUXIQtAFKbiUMKCrXzO4mOTD5EUphZzghBYKXprowSM="; }) 190 + (fetchNuGet { pname = "System.Diagnostics.PerformanceCounter"; version = "6.0.1"; hash = "sha256-53t07yyRBb6sC4e3IjTp5fj44+p6JpX2zpr5/Bbf5Z4="; }) 191 + (fetchNuGet { pname = "System.Diagnostics.Tools"; version = "4.0.1"; hash = "sha256-vSBqTbmWXylvRa37aWyktym+gOpsvH43mwr6A962k6U="; }) 192 + (fetchNuGet { pname = "System.Diagnostics.Tracing"; version = "4.3.0"; hash = "sha256-hCETZpHHGVhPYvb4C0fh4zs+8zv4GPoixagkLZjpa9Q="; }) 193 + (fetchNuGet { pname = "System.DirectoryServices"; version = "6.0.1"; hash = "sha256-Kg09fYW1EuZ09KoUY52qZd32MUph32Vvr4rkiv+KS50="; }) 194 + (fetchNuGet { pname = "System.DirectoryServices.AccountManagement"; version = "6.0.0"; hash = "sha256-1mVZ+izamVxMDV+vMyLE1WQajC0TSYSBblfqT5xWdcM="; }) 195 + (fetchNuGet { pname = "System.DirectoryServices.Protocols"; version = "6.0.2"; hash = "sha256-+4r7bz3FmNhaA6wObVlN/UdGNiZvxl8Mr0sc7ZF6xX8="; }) 196 + (fetchNuGet { pname = "System.Drawing.Common"; version = "6.0.0"; hash = "sha256-/9EaAbEeOjELRSMZaImS1O8FmUe8j4WuFUw1VOrPyAo="; }) 197 + (fetchNuGet { pname = "System.Dynamic.Runtime"; version = "4.0.11"; hash = "sha256-qWqFVxuXioesVftv2RVJZOnmojUvRjb7cS3Oh3oTit4="; }) 198 + (fetchNuGet { pname = "System.Formats.Asn1"; version = "6.0.0"; hash = "sha256-KaMHgIRBF7Nf3VwOo+gJS1DcD+41cJDPWFh+TDQ8ee8="; }) 199 + (fetchNuGet { pname = "System.Globalization"; version = "4.0.11"; hash = "sha256-rbSgc2PIEc2c2rN6LK3qCREAX3DqA2Nq1WcLrZYsDBw="; }) 200 + (fetchNuGet { pname = "System.Globalization"; version = "4.3.0"; hash = "sha256-caL0pRmFSEsaoeZeWN5BTQtGrAtaQPwFi8YOZPZG5rI="; }) 201 + (fetchNuGet { pname = "System.IO"; version = "4.1.0"; hash = "sha256-V6oyQFwWb8NvGxAwvzWnhPxy9dKOfj/XBM3tEC5aHrw="; }) 202 + (fetchNuGet { pname = "System.IO"; version = "4.3.0"; hash = "sha256-ruynQHekFP5wPrDiVyhNiRIXeZ/I9NpjK5pU+HPDiRY="; }) 203 + (fetchNuGet { pname = "System.IO.Abstractions"; version = "21.0.22"; hash = "sha256-UTdB/kD39zeXjUxdgQbXSxS/yyzDtc2rLre2+pLoQWk="; }) 204 + (fetchNuGet { pname = "System.IO.FileSystem"; version = "4.0.1"; hash = "sha256-4VKXFgcGYCTWVXjAlniAVq0dO3o5s8KHylg2wg2/7k0="; }) 205 + (fetchNuGet { pname = "System.IO.FileSystem.Primitives"; version = "4.3.0"; hash = "sha256-LMnfg8Vwavs9cMnq9nNH8IWtAtSfk0/Fy4s4Rt9r1kg="; }) 206 + (fetchNuGet { pname = "System.IO.Packaging"; version = "6.0.0"; hash = "sha256-TKnqKh34uSkPSeideZXrVqnZ5a0Yu5jDgZswKSbAVoQ="; }) 207 + (fetchNuGet { pname = "System.IO.Pipelines"; version = "7.0.0"; hash = "sha256-W2181khfJUTxLqhuAVRhCa52xZ3+ePGOLIPwEN8WisY="; }) 208 + (fetchNuGet { pname = "System.IO.Ports"; version = "6.0.0"; hash = "sha256-AqCYJwPsLkZqEBX7y3sfnrNSvwQnKM7BEl53sY7dDyw="; }) 209 + (fetchNuGet { pname = "System.Linq"; version = "4.1.0"; hash = "sha256-ZQpFtYw5N1F1aX0jUK3Tw+XvM5tnlnshkTCNtfVA794="; }) 210 + (fetchNuGet { pname = "System.Linq"; version = "4.3.0"; hash = "sha256-R5uiSL3l6a3XrXSSL6jz+q/PcyVQzEAByiuXZNSqD/A="; }) 211 + (fetchNuGet { pname = "System.Linq.Expressions"; version = "4.1.0"; hash = "sha256-7zqB+FXgkvhtlBzpcZyd81xczWP0D3uWssyAGw3t7b4="; }) 212 + (fetchNuGet { pname = "System.Management"; version = "6.0.2"; hash = "sha256-8l3Gyx/cn42ovS4q/ID4zSltJoL/pe0B/LUVD17tC6Q="; }) 213 + (fetchNuGet { pname = "System.Memory"; version = "4.5.4"; hash = "sha256-3sCEfzO4gj5CYGctl9ZXQRRhwAraMQfse7yzKoRe65E="; }) 214 + (fetchNuGet { pname = "System.Memory"; version = "4.5.5"; hash = "sha256-EPQ9o1Kin7KzGI5O3U3PUQAZTItSbk9h/i4rViN3WiI="; }) 215 + (fetchNuGet { pname = "System.Memory.Data"; version = "1.0.2"; hash = "sha256-XiVrVQZQIz4NgjiK/wtH8iZhhOZ9MJ+X2hL2/8BrGN0="; }) 216 + (fetchNuGet { pname = "System.Numerics.Vectors"; version = "4.5.0"; hash = "sha256-qdSTIFgf2htPS+YhLGjAGiLN8igCYJnCCo6r78+Q+c8="; }) 217 + (fetchNuGet { pname = "System.ObjectModel"; version = "4.0.12"; hash = "sha256-MudZ/KYcvYsn2cST3EE049mLikrNkmE7QoUoYKKby+s="; }) 218 + (fetchNuGet { pname = "System.Private.ServiceModel"; version = "4.9.0"; hash = "sha256-AbJKAZzZDxKVXm5761XE+nhlkiDqX9eb6+Y9d4Hq+4Q="; }) 219 + (fetchNuGet { pname = "System.Private.Uri"; version = "4.3.0"; hash = "sha256-fVfgcoP4AVN1E5wHZbKBIOPYZ/xBeSIdsNF+bdukIRM="; }) 220 + (fetchNuGet { pname = "System.Private.Uri"; version = "4.3.2"; hash = "sha256-jB2+W3tTQ6D9XHy5sEFMAazIe1fu2jrENUO0cb48OgU="; }) 221 + (fetchNuGet { pname = "System.Reflection"; version = "4.1.0"; hash = "sha256-idZHGH2Yl/hha1CM4VzLhsaR8Ljo/rV7TYe7mwRJSMs="; }) 222 + (fetchNuGet { pname = "System.Reflection"; version = "4.3.0"; hash = "sha256-NQSZRpZLvtPWDlvmMIdGxcVuyUnw92ZURo0hXsEshXY="; }) 223 + (fetchNuGet { pname = "System.Reflection.Context"; version = "6.0.0"; hash = "sha256-sjTVjnHJ0JntjjMXnefz7e6v25M9gAKUqioJMkhYw+8="; }) 224 + (fetchNuGet { pname = "System.Reflection.DispatchProxy"; version = "4.7.1"; hash = "sha256-Oi+l32p73ZxwcB6GrSS2m25BccfpuwbY4eyFEwUe0IM="; }) 225 + (fetchNuGet { pname = "System.Reflection.Emit"; version = "4.0.1"; hash = "sha256-F1MvYoQWHCY89/O4JBwswogitqVvKuVfILFqA7dmuHk="; }) 226 + (fetchNuGet { pname = "System.Reflection.Emit.ILGeneration"; version = "4.0.1"; hash = "sha256-YG+eJBG5P+5adsHiw/lhJwvREnvdHw6CJyS8ZV4Ujd0="; }) 227 + (fetchNuGet { pname = "System.Reflection.Emit.Lightweight"; version = "4.0.1"; hash = "sha256-uVvNOnL64CPqsgZP2OLqNmxdkZl6Q0fTmKmv9gcBi+g="; }) 228 + (fetchNuGet { pname = "System.Reflection.Emit.Lightweight"; version = "4.7.0"; hash = "sha256-V0Wz/UUoNIHdTGS9e1TR89u58zJjo/wPUWw6VaVyclU="; }) 229 + (fetchNuGet { pname = "System.Reflection.Extensions"; version = "4.0.1"; hash = "sha256-NsfmzM9G/sN3H8X2cdnheTGRsh7zbRzvegnjDzDH/FQ="; }) 230 + (fetchNuGet { pname = "System.Reflection.Metadata"; version = "1.6.0"; hash = "sha256-JJfgaPav7UfEh4yRAQdGhLZF1brr0tUWPl6qmfNWq/E="; }) 231 + (fetchNuGet { pname = "System.Reflection.Primitives"; version = "4.0.1"; hash = "sha256-SFSfpWEyCBMAOerrMCOiKnpT+UAWTvRcmoRquJR6Vq0="; }) 232 + (fetchNuGet { pname = "System.Reflection.Primitives"; version = "4.3.0"; hash = "sha256-5ogwWB4vlQTl3jjk1xjniG2ozbFIjZTL9ug0usZQuBM="; }) 233 + (fetchNuGet { pname = "System.Reflection.TypeExtensions"; version = "4.1.0"; hash = "sha256-R0YZowmFda+xzKNR4kKg7neFoE30KfZwp/IwfRSKVK4="; }) 234 + (fetchNuGet { pname = "System.Resources.ResourceManager"; version = "4.0.1"; hash = "sha256-cZ2/3/fczLjEpn6j3xkgQV9ouOVjy4Kisgw5xWw9kSw="; }) 235 + (fetchNuGet { pname = "System.Resources.ResourceManager"; version = "4.3.0"; hash = "sha256-idiOD93xbbrbwwSnD4mORA9RYi/D/U48eRUsn/WnWGo="; }) 236 + (fetchNuGet { pname = "System.Runtime"; version = "4.1.0"; hash = "sha256-FViNGM/4oWtlP6w0JC0vJU+k9efLKZ+yaXrnEeabDQo="; }) 237 + (fetchNuGet { pname = "System.Runtime"; version = "4.3.0"; hash = "sha256-51813WXpBIsuA6fUtE5XaRQjcWdQ2/lmEokJt97u0Rg="; }) 238 + (fetchNuGet { pname = "System.Runtime"; version = "4.3.1"; hash = "sha256-R9T68AzS1PJJ7v6ARz9vo88pKL1dWqLOANg4pkQjkA0="; }) 239 + (fetchNuGet { pname = "System.Runtime.Caching"; version = "6.0.0"; hash = "sha256-CpjpZoc6pdE83QPAGYzpBYQAZiAiqyrgiMQvdo5CCXI="; }) 240 + (fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "4.5.2"; hash = "sha256-8eUXXGWO2LL7uATMZye2iCpQOETn2jCcjUhG6coR5O8="; }) 241 + (fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "5.0.0"; hash = "sha256-neARSpLPUzPxEKhJRwoBzhPxK+cKIitLx7WBYncsYgo="; }) 242 + (fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "6.0.0"; hash = "sha256-bEG1PnDp7uKYz/OgLOWs3RWwQSVYm+AnPwVmAmcgp2I="; }) 243 + (fetchNuGet { pname = "System.Runtime.Extensions"; version = "4.1.0"; hash = "sha256-X7DZ5CbPY7jHs20YZ7bmcXs9B5Mxptu/HnBUvUnNhGc="; }) 244 + (fetchNuGet { pname = "System.Runtime.Extensions"; version = "4.3.0"; hash = "sha256-wLDHmozr84v1W2zYCWYxxj0FR0JDYHSVRaRuDm0bd/o="; }) 245 + (fetchNuGet { pname = "System.Runtime.Handles"; version = "4.0.1"; hash = "sha256-j2QgVO9ZOjv7D1het98CoFpjoYgxjupuIhuBUmLLH7w="; }) 246 + (fetchNuGet { pname = "System.Runtime.Handles"; version = "4.3.0"; hash = "sha256-KJ5aXoGpB56Y6+iepBkdpx/AfaJDAitx4vrkLqR7gms="; }) 247 + (fetchNuGet { pname = "System.Runtime.InteropServices"; version = "4.1.0"; hash = "sha256-QceAYlJvkPRJc/+5jR+wQpNNI3aqGySWWSO30e/FfQY="; }) 248 + (fetchNuGet { pname = "System.Runtime.InteropServices"; version = "4.3.0"; hash = "sha256-8sDH+WUJfCR+7e4nfpftj/+lstEiZixWUBueR2zmHgI="; }) 249 + (fetchNuGet { pname = "System.Runtime.Serialization.Primitives"; version = "4.1.1"; hash = "sha256-80B05oxJbPLGq2pGOSl6NlZvintX9A1CNpna2aN0WRA="; }) 250 + (fetchNuGet { pname = "System.Security.AccessControl"; version = "4.7.0"; hash = "sha256-/9ZCPIHLdhzq7OW4UKqTsR0O93jjHd6BRG1SRwgHE1g="; }) 251 + (fetchNuGet { pname = "System.Security.AccessControl"; version = "5.0.0"; hash = "sha256-ueSG+Yn82evxyGBnE49N4D+ngODDXgornlBtQ3Omw54="; }) 252 + (fetchNuGet { pname = "System.Security.AccessControl"; version = "6.0.0"; hash = "sha256-qOyWEBbNr3EjyS+etFG8/zMbuPjA+O+di717JP9Cxyg="; }) 253 + (fetchNuGet { pname = "System.Security.Cryptography.Pkcs"; version = "6.0.4"; hash = "sha256-2e0aRybote+OR66bHaNiYpF//4fCiaO3zbR2e9GABUI="; }) 254 + (fetchNuGet { pname = "System.Security.Cryptography.ProtectedData"; version = "4.4.0"; hash = "sha256-Ri53QmFX8I8UH0x4PikQ1ZA07ZSnBUXStd5rBfGWFOE="; }) 255 + (fetchNuGet { pname = "System.Security.Cryptography.ProtectedData"; version = "4.7.0"; hash = "sha256-dZfs5q3Ij1W1eJCfYjxI2o+41aSiFpaAugpoECaCOug="; }) 256 + (fetchNuGet { pname = "System.Security.Cryptography.ProtectedData"; version = "6.0.0"; hash = "sha256-Wi9I9NbZlpQDXgS7Kl06RIFxY/9674S7hKiYw5EabRY="; }) 257 + (fetchNuGet { pname = "System.Security.Cryptography.Xml"; version = "6.0.1"; hash = "sha256-spXV8cWZu0V3liek1936REtdpvS4fQwc98JvacO1oJU="; }) 258 + (fetchNuGet { pname = "System.Security.Permissions"; version = "6.0.0"; hash = "sha256-/MMvtFWGN/vOQfjXdOhet1gsnMgh6lh5DCHimVsnVEs="; }) 259 + (fetchNuGet { pname = "System.Security.Principal.Windows"; version = "4.7.0"; hash = "sha256-rWBM2U8Kq3rEdaa1MPZSYOOkbtMGgWyB8iPrpIqmpqg="; }) 260 + (fetchNuGet { pname = "System.Security.Principal.Windows"; version = "5.0.0"; hash = "sha256-CBOQwl9veFkrKK2oU8JFFEiKIh/p+aJO+q9Tc2Q/89Y="; }) 261 + (fetchNuGet { pname = "System.ServiceModel.Duplex"; version = "4.9.0"; hash = "sha256-Ec/AxpAd5CP9Y4uJIOzYi9jNrdvvepVHVr/s/i67i0s="; }) 262 + (fetchNuGet { pname = "System.ServiceModel.Http"; version = "4.9.0"; hash = "sha256-t7C7CJuimhRMQN1SEIBmdhkEBEDF0Ml6A3d7UCqArNs="; }) 263 + (fetchNuGet { pname = "System.ServiceModel.NetTcp"; version = "4.9.0"; hash = "sha256-76M/chPAFJDArTn/20+odmCsrRJkldpQH9Ia16dzhxo="; }) 264 + (fetchNuGet { pname = "System.ServiceModel.Primitives"; version = "4.9.0"; hash = "sha256-DguxLLRrYNn99rYxCGIljZTdZqrVC+VxJNahkFUy9NM="; }) 265 + (fetchNuGet { pname = "System.ServiceModel.Security"; version = "4.9.0"; hash = "sha256-/NbFeKFxElLOGxdTDcBQ9JRzkA+QAozm0DL8DMOAIio="; }) 266 + (fetchNuGet { pname = "System.ServiceModel.Syndication"; version = "6.0.0"; hash = "sha256-SSQeFHCJTrmisiqSpx3Zh/NplE05aT8zdAaWZgtsYfY="; }) 267 + (fetchNuGet { pname = "System.ServiceProcess.ServiceController"; version = "6.0.1"; hash = "sha256-ZYf+7ln6IlrSZHnoFvZyootRMsLqcUaZduJnh6mz25Y="; }) 268 + (fetchNuGet { pname = "System.Speech"; version = "6.0.0"; hash = "sha256-24QfNtZZ49aJ2WAdqcysAzFonRcw+0SJ76knFM4B67w="; }) 269 + (fetchNuGet { pname = "System.Text.Encoding"; version = "4.0.11"; hash = "sha256-PEailOvG05CVgPTyKLtpAgRydlSHmtd5K0Y8GSHY2Lc="; }) 270 + (fetchNuGet { pname = "System.Text.Encoding"; version = "4.3.0"; hash = "sha256-GctHVGLZAa/rqkBNhsBGnsiWdKyv6VDubYpGkuOkBLg="; }) 271 + (fetchNuGet { pname = "System.Text.Encoding.CodePages"; version = "4.3.0"; hash = "sha256-ezYVwe9atRkREc8O/HT/VfGDE2vuCpIckOfdY194/VE="; }) 272 + (fetchNuGet { pname = "System.Text.Encoding.CodePages"; version = "6.0.0"; hash = "sha256-nGc2A6XYnwqGcq8rfgTRjGr+voISxNe/76k2K36coj4="; }) 273 + (fetchNuGet { pname = "System.Text.Encoding.Extensions"; version = "4.3.0"; hash = "sha256-vufHXg8QAKxHlujPHHcrtGwAqFmsCD6HKjfDAiHyAYc="; }) 274 + (fetchNuGet { pname = "System.Text.Encodings.Web"; version = "4.7.2"; hash = "sha256-CUZOulSeRy1CGBm7mrNrTumA9od9peKiIDR/Nb1B4io="; }) 275 + (fetchNuGet { pname = "System.Text.Encodings.Web"; version = "7.0.0"; hash = "sha256-tF8qt9GZh/nPy0mEnj6nKLG4Lldpoi/D8xM5lv2CoYQ="; }) 276 + (fetchNuGet { pname = "System.Text.Encodings.Web"; version = "8.0.0"; hash = "sha256-IUQkQkV9po1LC0QsqrilqwNzPvnc+4eVvq+hCvq8fvE="; }) 277 + (fetchNuGet { pname = "System.Text.Json"; version = "4.7.2"; hash = "sha256-xA8PZwxX9iOJvPbfdi7LWjM2RMVJ7hmtEqS9JvgNsoM="; }) 278 + (fetchNuGet { pname = "System.Text.Json"; version = "7.0.3"; hash = "sha256-aSJZ17MjqaZNQkprfxm/09LaCoFtpdWmqU9BTROzWX4="; }) 279 + (fetchNuGet { pname = "System.Text.Json"; version = "8.0.0"; hash = "sha256-XFcCHMW1u2/WujlWNHaIWkbW1wn8W4kI0QdrwPtWmow="; }) 280 + (fetchNuGet { pname = "System.Text.Json"; version = "8.0.2"; hash = "sha256-uQQPCGRYKMUykb7dhg60YKPTXbjM8X01xmTYev1sId4="; }) 281 + (fetchNuGet { pname = "System.Text.Json"; version = "8.0.4"; hash = "sha256-g5oT7fbXxQ9Iah1nMCr4UUX/a2l+EVjJyTrw3FTbIaI="; }) 282 + (fetchNuGet { pname = "System.Text.RegularExpressions"; version = "4.1.0"; hash = "sha256-x6OQN6MCN7S0fJ6EFTfv4rczdUWjwuWE9QQ0P6fbh9c="; }) 283 + (fetchNuGet { pname = "System.Text.RegularExpressions"; version = "4.3.1"; hash = "sha256-DxsEZ0nnPozyC1W164yrMUXwnAdHShS9En7ImD/GJMM="; }) 284 + (fetchNuGet { pname = "System.Threading"; version = "4.0.11"; hash = "sha256-mob1Zv3qLQhQ1/xOLXZmYqpniNUMCfn02n8ZkaAhqac="; }) 285 + (fetchNuGet { pname = "System.Threading"; version = "4.3.0"; hash = "sha256-ZDQ3dR4pzVwmaqBg4hacZaVenQ/3yAF/uV7BXZXjiWc="; }) 286 + (fetchNuGet { pname = "System.Threading.AccessControl"; version = "6.0.0"; hash = "sha256-ZkoQVA9cLa/du8FCVonnHy/R/t6ms6BG+NiTlFA3A7g="; }) 287 + (fetchNuGet { pname = "System.Threading.Tasks"; version = "4.0.11"; hash = "sha256-5SLxzFg1df6bTm2t09xeI01wa5qQglqUwwJNlQPJIVs="; }) 288 + (fetchNuGet { pname = "System.Threading.Tasks"; version = "4.3.0"; hash = "sha256-Z5rXfJ1EXp3G32IKZGiZ6koMjRu0n8C1NGrwpdIen4w="; }) 289 + (fetchNuGet { pname = "System.Threading.Tasks.Dataflow"; version = "7.0.0"; hash = "sha256-KTeMhCWcyYEwG7EkA0VkVvHwo0B2FBs5FpjW3BFNVUE="; }) 290 + (fetchNuGet { pname = "System.Threading.Tasks.Extensions"; version = "4.0.0"; hash = "sha256-+YdcPkMhZhRbMZHnfsDwpNbUkr31X7pQFGxXYcAPZbE="; }) 291 + (fetchNuGet { pname = "System.Threading.Tasks.Extensions"; version = "4.5.4"; hash = "sha256-owSpY8wHlsUXn5xrfYAiu847L6fAKethlvYx97Ri1ng="; }) 292 + (fetchNuGet { pname = "System.Web.Services.Description"; version = "4.9.0"; hash = "sha256-cGLlUp+ue7PVrs6Gg6T3KfUQ0OuHr8DdJd8agaSeySE="; }) 293 + (fetchNuGet { pname = "System.Windows.Extensions"; version = "6.0.0"; hash = "sha256-N+qg1E6FDJ9A9L50wmVt3xPQV8ZxlG1xeXgFuxO+yfM="; }) 294 + (fetchNuGet { pname = "System.Xml.ReaderWriter"; version = "4.0.11"; hash = "sha256-haZAFFQ9Sl2DhfvEbdx2YRqKEoxNMU5STaqpMmXw0zA="; }) 295 + (fetchNuGet { pname = "System.Xml.XDocument"; version = "4.0.11"; hash = "sha256-KPz1kxe0RUBM+aoktJ/f9p51GudMERU8Pmwm//HdlFg="; }) 296 + (fetchNuGet { pname = "TestableIO.System.IO.Abstractions"; version = "21.0.22"; hash = "sha256-900+hyDm/wCd7iD5hnPJue/In/ZcA3NlGNk9kHWLoX0="; }) 297 + (fetchNuGet { pname = "TestableIO.System.IO.Abstractions.Wrappers"; version = "21.0.22"; hash = "sha256-xDe16iGy2i0SyYnlauFxZMTUx44PM+kas+jRtagDV50="; }) 298 ]
+2 -2
pkgs/by-name/bi/bicep/package.nix
··· 9 10 buildDotnetModule rec { 11 pname = "bicep"; 12 - version = "0.28.1"; 13 14 src = fetchFromGitHub { 15 owner = "Azure"; 16 repo = "bicep"; 17 rev = "v${version}"; 18 - hash = "sha256-9yWfzYrs7LxVmb+AZUI+G0TQQteJP7gpISJGdY0qKAg="; 19 }; 20 21 postPatch = ''
··· 9 10 buildDotnetModule rec { 11 pname = "bicep"; 12 + version = "0.29.47"; 13 14 src = fetchFromGitHub { 15 owner = "Azure"; 16 repo = "bicep"; 17 rev = "v${version}"; 18 + hash = "sha256-KdaoOejoM/3P1WwDCjDhChOpKA7c4UulPLK7IOVw3o4="; 19 }; 20 21 postPatch = ''
+1 -1
pkgs/by-name/br/bruno/package.nix
··· 156 meta = with lib; { 157 description = "Open-source IDE For exploring and testing APIs"; 158 homepage = "https://www.usebruno.com"; 159 - inherit (electron.meta) platforms; 160 license = licenses.mit; 161 maintainers = with maintainers; [ gepbird kashw2 lucasew mattpolzin water-sucks redyf ]; 162 mainProgram = "bruno";
··· 156 meta = with lib; { 157 description = "Open-source IDE For exploring and testing APIs"; 158 homepage = "https://www.usebruno.com"; 159 + platforms = platforms.linux ++ platforms.darwin; 160 license = licenses.mit; 161 maintainers = with maintainers; [ gepbird kashw2 lucasew mattpolzin water-sucks redyf ]; 162 mainProgram = "bruno";
+1
pkgs/by-name/ca/calibre-web/package.nix
··· 36 flask-principal 37 flask-wtf 38 iso-639 39 lxml 40 pypdf 41 python-magic
··· 36 flask-principal 37 flask-wtf 38 iso-639 39 + jsonschema 40 lxml 41 pypdf 42 python-magic
+3 -3
pkgs/by-name/lx/lxd-ui/package.nix
··· 12 13 stdenv.mkDerivation rec { 14 pname = "lxd-ui"; 15 - version = "0.11"; 16 17 src = fetchFromGitHub { 18 owner = "canonical"; 19 repo = "lxd-ui"; 20 rev = "refs/tags/${version}"; 21 - hash = "sha256-PBCWZG8Yxjiw3cGLEfMBJZnHsc4hMZHdq7OqaJ8HYJY="; 22 }; 23 24 offlineCache = fetchYarnDeps { 25 yarnLock = "${src}/yarn.lock"; 26 - hash = "sha256-X0xBYhoUKZe8GBqbRAfSE9o63FoAXIYTjzzDHMAygBI="; 27 }; 28 29 nativeBuildInputs = [
··· 12 13 stdenv.mkDerivation rec { 14 pname = "lxd-ui"; 15 + version = "0.12"; 16 17 src = fetchFromGitHub { 18 owner = "canonical"; 19 repo = "lxd-ui"; 20 rev = "refs/tags/${version}"; 21 + hash = "sha256-dVTUme+23HaONcvfcgen/y1S0D91oYmgGLGfRcAMJSw="; 22 }; 23 24 offlineCache = fetchYarnDeps { 25 yarnLock = "${src}/yarn.lock"; 26 + hash = "sha256-lPBkGKK6C6C217wqvOoC7on/Dzmk3NkdIkMDMF9CRNQ="; 27 }; 28 29 nativeBuildInputs = [
+3 -3
pkgs/by-name/te/terragrunt/package.nix
··· 6 7 buildGoModule rec { 8 pname = "terragrunt"; 9 - version = "0.62.0"; 10 11 src = fetchFromGitHub { 12 owner = "gruntwork-io"; 13 repo = pname; 14 rev = "refs/tags/v${version}"; 15 - hash = "sha256-vubx/8rnUyOtQwykbFT8s/gAhuPorQtmkLJiiGu/pQY="; 16 }; 17 18 nativeBuildInputs = [ go-mockery ]; ··· 21 make generate-mocks 22 ''; 23 24 - vendorHash = "sha256-1znEc/WmD3sCUqWxIvV0AdruxpUG7jh2IqTkGGak1VM="; 25 26 doCheck = false; 27
··· 6 7 buildGoModule rec { 8 pname = "terragrunt"; 9 + version = "0.63.2"; 10 11 src = fetchFromGitHub { 12 owner = "gruntwork-io"; 13 repo = pname; 14 rev = "refs/tags/v${version}"; 15 + hash = "sha256-Y6bDXohGeQ5H4Cq50dwA503pOQA8+ab9po4slL3BRDg="; 16 }; 17 18 nativeBuildInputs = [ go-mockery ]; ··· 21 make generate-mocks 22 ''; 23 24 + vendorHash = "sha256-l0RFHOQIHLSCzSKq09ibtXEMph/Lhv9ie6B+jpLTxbY="; 25 26 doCheck = false; 27
+63
pkgs/by-name/vw/vwsfriend/package.nix
···
··· 1 + { 2 + lib, 3 + python3, 4 + fetchFromGitHub, 5 + }: 6 + 7 + python3.pkgs.buildPythonApplication rec { 8 + pname = "vwsfriend"; 9 + version = "0.24.4"; 10 + pyproject = true; 11 + 12 + src = fetchFromGitHub { 13 + owner = "tillsteinbach"; 14 + repo = "VWsFriend"; 15 + rev = "refs/tags/v${version}"; 16 + hash = "sha256-tt71J+UAIgYY/ac3ZyNDVTrnRvaKU+5WXVe///Hyv2U="; 17 + }; 18 + 19 + sourceRoot = "${src.name}/vwsfriend"; 20 + 21 + postPatch = '' 22 + # we don't need pytest-runner, pylint, etc. 23 + true > setup_requirements.txt 24 + 25 + substituteInPlace requirements.txt \ 26 + --replace-fail psycopg2-binary psycopg2 27 + ''; 28 + 29 + build-system = with python3.pkgs; [ setuptools ]; 30 + 31 + pythonRelaxDeps = true; 32 + 33 + dependencies = 34 + with python3.pkgs; 35 + [ 36 + weconnect 37 + hap-python 38 + pypng 39 + sqlalchemy 40 + psycopg2 41 + requests 42 + werkzeug 43 + flask 44 + flask-login 45 + flask-caching 46 + wtforms 47 + flask-wtf 48 + flask-sqlalchemy 49 + alembic 50 + haversine 51 + ] 52 + ++ weconnect.optional-dependencies.Images 53 + ++ hap-python.optional-dependencies.QRCode; 54 + 55 + meta = { 56 + changelog = "https://github.com/tillsteinbach/VWsFriend/blob/${src.rev}/CHANGELOG.md"; 57 + description = "VW WeConnect visualization and control"; 58 + homepage = "https://github.com/tillsteinbach/VWsFriend"; 59 + license = lib.licenses.mit; 60 + mainProgram = "vwsfriend"; 61 + maintainers = with lib.maintainers; [ dotlambda ]; 62 + }; 63 + }
+7 -2
pkgs/development/coq-modules/QuickChick/default.nix
··· 1 { lib, mkCoqDerivation, coq, ssreflect, coq-ext-lib, simple-io, version ? null }: 2 3 - let recent = lib.versions.isGe "8.7" coq.coq-version; in 4 (mkCoqDerivation { 5 pname = "QuickChick"; 6 owner = "QuickChick"; ··· 40 preConfigure = lib.optionalString recent 41 "substituteInPlace Makefile --replace quickChickTool.byte quickChickTool.native"; 42 43 mlPlugin = true; 44 nativeBuildInputs = lib.optional recent coq.ocamlPackages.ocamlbuild; 45 propagatedBuildInputs = [ ssreflect ] ··· 54 }; 55 }).overrideAttrs (o: 56 let after_1_6 = lib.versions.isGe "1.6" o.version || o.version == "dev"; 57 in { 58 nativeBuildInputs = o.nativeBuildInputs 59 - ++ lib.optional after_1_6 coq.ocamlPackages.cppo; 60 propagatedBuildInputs = o.propagatedBuildInputs 61 ++ lib.optionals after_1_6 (with coq.ocamlPackages; [ findlib zarith ]); 62 })
··· 1 { lib, mkCoqDerivation, coq, ssreflect, coq-ext-lib, simple-io, version ? null }: 2 3 + let recent = lib.versions.isGe "8.7" coq.coq-version || coq.coq-version == "dev"; in 4 (mkCoqDerivation { 5 pname = "QuickChick"; 6 owner = "QuickChick"; ··· 40 preConfigure = lib.optionalString recent 41 "substituteInPlace Makefile --replace quickChickTool.byte quickChickTool.native"; 42 43 + useDuneifVersion = v: lib.versions.isGe "2.1" v || v == "dev"; 44 + opam-name = "coq-quickchick"; 45 + 46 mlPlugin = true; 47 nativeBuildInputs = lib.optional recent coq.ocamlPackages.ocamlbuild; 48 propagatedBuildInputs = [ ssreflect ] ··· 57 }; 58 }).overrideAttrs (o: 59 let after_1_6 = lib.versions.isGe "1.6" o.version || o.version == "dev"; 60 + after_2_1 = lib.versions.isGe "2.1" o.version || o.version == "dev"; 61 in { 62 nativeBuildInputs = o.nativeBuildInputs 63 + ++ lib.optional after_1_6 coq.ocamlPackages.cppo 64 + ++ lib.optional after_2_1 coq.ocamlPackages.menhir; 65 propagatedBuildInputs = o.propagatedBuildInputs 66 ++ lib.optionals after_1_6 (with coq.ocamlPackages; [ findlib zarith ]); 67 })
+8 -5
pkgs/development/coq-modules/compcert/default.nix
··· 66 -coqdevdir $lib/lib/coq/${coq.coq-version}/user-contrib/compcert/ \ 67 -toolprefix ${tools}/bin/ \ 68 -use-external-Flocq \ 69 - ${target} 70 - ''; 71 72 installTargets = "documentation install"; 73 installFlags = []; # trust ./configure ··· 100 platforms = builtins.attrNames targets; 101 maintainers = with maintainers; [ thoughtpolice jwiegley vbgl ]; 102 }; 103 - }; in 104 - compcert.overrideAttrs (o: 105 { 106 patches = with lib.versions; lib.switch [ coq.version o.version ] [ 107 { cases = [ (range "8.12.2" "8.13.2") "3.8" ]; ··· 210 ]; 211 } 212 ] []; 213 - } 214 )
··· 66 -coqdevdir $lib/lib/coq/${coq.coq-version}/user-contrib/compcert/ \ 67 -toolprefix ${tools}/bin/ \ 68 -use-external-Flocq \ 69 + ${target} \ 70 + ''; # don't remove the \ above, the command gets appended in override below 71 72 installTargets = "documentation install"; 73 installFlags = []; # trust ./configure ··· 100 platforms = builtins.attrNames targets; 101 maintainers = with maintainers; [ thoughtpolice jwiegley vbgl ]; 102 }; 103 + }; 104 + patched_compcert = compcert.overrideAttrs (o: 105 { 106 patches = with lib.versions; lib.switch [ coq.version o.version ] [ 107 { cases = [ (range "8.12.2" "8.13.2") "3.8" ]; ··· 210 ]; 211 } 212 ] []; 213 + }); in 214 + patched_compcert.overrideAttrs (o: 215 + lib.optionalAttrs (coq.version != null && coq.version == "dev") 216 + { configurePhase = "${o.configurePhase} -ignore-ocaml-version -ignore-coq-version"; } 217 )
+13 -5
pkgs/development/coq-modules/coq-lsp/default.nix
··· 1 { lib, mkCoqDerivation, coq, serapi, makeWrapper, version ? null }: 2 3 - mkCoqDerivation rec { 4 pname = "coq-lsp"; 5 owner = "ejgallego"; 6 namePrefix = [ ]; ··· 24 25 installPhase = '' 26 runHook preInstall 27 - dune install ${pname} --prefix=$out 28 wrapProgram $out/bin/coq-lsp --prefix OCAMLPATH : $OCAMLPATH 29 runHook postInstall 30 ''; 31 32 - propagatedBuildInputs = [ serapi ] 33 - ++ (with coq.ocamlPackages; [ camlp-streams dune-build-info menhir uri yojson ]); 34 35 meta = with lib; { 36 description = "Language Server Protocol and VS Code Extension for Coq"; ··· 39 maintainers = with maintainers; [ alizter ]; 40 license = licenses.lgpl21Only; 41 }; 42 - }
··· 1 { lib, mkCoqDerivation, coq, serapi, makeWrapper, version ? null }: 2 3 + (mkCoqDerivation rec { 4 pname = "coq-lsp"; 5 owner = "ejgallego"; 6 namePrefix = [ ]; ··· 24 25 installPhase = '' 26 runHook preInstall 27 + dune install -p ${pname} --prefix=$out --libdir $OCAMLFIND_DESTDIR 28 wrapProgram $out/bin/coq-lsp --prefix OCAMLPATH : $OCAMLPATH 29 runHook postInstall 30 ''; 31 32 + propagatedBuildInputs = 33 + with coq.ocamlPackages; [ dune-build-info menhir uri yojson ]; 34 35 meta = with lib; { 36 description = "Language Server Protocol and VS Code Extension for Coq"; ··· 39 maintainers = with maintainers; [ alizter ]; 40 license = licenses.lgpl21Only; 41 }; 42 + }).overrideAttrs (o: 43 + with coq.ocamlPackages; 44 + { propagatedBuildInputs = o.propagatedBuildInputs ++ 45 + (if o.version != null && lib.versions.isLe "0.1.9+8.19" o.version && o.version != "dev" then 46 + [ camlp-streams serapi ] 47 + else 48 + [ cmdliner ppx_deriving ppx_deriving_yojson ppx_import ppx_sexp_conv 49 + ppx_compare ppx_hash sexplib ]); 50 + })
+6
pkgs/development/coq-modules/coqhammer/default.nix
··· 1 { lib, mkCoqDerivation, coq, version ? null }: 2 3 mkCoqDerivation {
··· 1 + ################################################################### 2 + # # 3 + # /!\ This coqhammer package is deprecated in favor of coq-hammer # 4 + # # 5 + ################################################################### 6 + 7 { lib, mkCoqDerivation, coq, version ? null }: 8 9 mkCoqDerivation {
+5 -2
pkgs/development/coq-modules/mathcomp-word/default.nix
··· 3 let 4 namePrefix = [ "coq" "mathcomp" ]; 5 pname = "word"; 6 - fetcher = { domain, owner, repo, rev, sha256, ...}: 7 fetchurl { 8 - url = "https://${domain}/${owner}/${repo}/releases/download/${rev}/${lib.concatStringsSep "-" (namePrefix ++ [ pname ])}-${rev}.tbz"; 9 inherit sha256; 10 }; 11 in
··· 3 let 4 namePrefix = [ "coq" "mathcomp" ]; 5 pname = "word"; 6 + fetcher = { domain, owner, repo, rev, sha256 ? null, ...}: 7 + let prefix = "https://${domain}/${owner}/${repo}/"; in 8 + if sha256 == null then 9 + fetchTarball { url = "${prefix}archive/refs/heads/${rev}.tar.gz"; } else 10 fetchurl { 11 + url = "${prefix}releases/download/${rev}/${lib.concatStringsSep "-" (namePrefix ++ [ pname ])}-${rev}.tbz"; 12 inherit sha256; 13 }; 14 in
+2 -2
pkgs/development/coq-modules/metacoq/default.nix
··· 36 releaseRev = v: "v${v}"; 37 38 # list of core metacoq packages sorted by dependency order 39 - packages = if lib.versionAtLeast coq.coq-version "8.17" 40 then [ "utils" "common" "template-coq" "pcuic" "safechecker" "template-pcuic" "erasure" "quotation" "safechecker-plugin" "erasure-plugin" "all" ] 41 else [ "template-coq" "pcuic" "safechecker" "erasure" "all" ]; 42 ··· 57 mlPlugin = true; 58 propagatedBuildInputs = [ equations coq.ocamlPackages.zarith ] ++ metacoq-deps; 59 60 - patchPhase = if lib.versionAtLeast coq.coq-version "8.17" then '' 61 patchShebangs ./configure.sh 62 patchShebangs ./template-coq/update_plugin.sh 63 patchShebangs ./template-coq/gen-src/to-lower.sh
··· 36 releaseRev = v: "v${v}"; 37 38 # list of core metacoq packages sorted by dependency order 39 + packages = if lib.versionAtLeast coq.coq-version "8.17" || coq.coq-version == "dev" 40 then [ "utils" "common" "template-coq" "pcuic" "safechecker" "template-pcuic" "erasure" "quotation" "safechecker-plugin" "erasure-plugin" "all" ] 41 else [ "template-coq" "pcuic" "safechecker" "erasure" "all" ]; 42 ··· 57 mlPlugin = true; 58 propagatedBuildInputs = [ equations coq.ocamlPackages.zarith ] ++ metacoq-deps; 59 60 + patchPhase = if lib.versionAtLeast coq.coq-version "8.17" || coq.coq-version == "dev" then '' 61 patchShebangs ./configure.sh 62 patchShebangs ./template-coq/update_plugin.sh 63 patchShebangs ./template-coq/gen-src/to-lower.sh
+9 -11
pkgs/development/coq-modules/serapi/default.nix
··· 1 - { lib, fetchzip, mkCoqDerivation, coq, version ? null }: 2 3 let 4 release = { ··· 17 18 (with lib; mkCoqDerivation { 19 pname = "serapi"; 20 inherit version release; 21 22 defaultVersion = with versions; ··· 34 ] null; 35 36 useDune = true; 37 - 38 - patches = [ ./janestreet-0.15.patch ]; 39 40 propagatedBuildInputs = 41 with coq.ocamlPackages; [ 42 cmdliner 43 findlib # run time dependency of SerAPI 44 ppx_deriving 45 - ppx_deriving_yojson 46 ppx_import 47 ppx_sexp_conv 48 ppx_hash 49 sexplib 50 - yojson 51 - zarith # needed because of Coq 52 ]; 53 54 installPhase = '' ··· 64 maintainers = with maintainers; [ alizter Zimmi48 ]; 65 }; 66 }).overrideAttrs(o: 67 let inherit (o) version; in { 68 src = fetchzip { 69 url = ··· 98 else [ 99 ]; 100 101 - propagatedBuildInputs = o.propagatedBuildInputs ++ 102 - lib.optional (version == "8.16.0+0.16.3" || version == "dev") coq.ocamlPackages.ppx_hash 103 - ; 104 - 105 - })
··· 1 + { lib, fetchzip, mkCoqDerivation, coq, coq-lsp, version ? null }: 2 3 let 4 release = { ··· 17 18 (with lib; mkCoqDerivation { 19 pname = "serapi"; 20 + repo = "coq-serapi"; 21 inherit version release; 22 23 defaultVersion = with versions; ··· 35 ] null; 36 37 useDune = true; 38 39 propagatedBuildInputs = 40 with coq.ocamlPackages; [ 41 cmdliner 42 findlib # run time dependency of SerAPI 43 ppx_deriving 44 ppx_import 45 ppx_sexp_conv 46 ppx_hash 47 sexplib 48 ]; 49 50 installPhase = '' ··· 60 maintainers = with maintainers; [ alizter Zimmi48 ]; 61 }; 62 }).overrideAttrs(o: 63 + if lib.versions.isLe "8.19.0+0.19.3" o.version && o.version != "dev" then 64 let inherit (o) version; in { 65 src = fetchzip { 66 url = ··· 95 else [ 96 ]; 97 98 + propagatedBuildInputs = o.propagatedBuildInputs 99 + ++ (with coq.ocamlPackages; [ ppx_deriving_yojson yojson zarith ]) # zarith needed because of Coq 100 + ; } 101 + else 102 + { propagatedBuildInputs = o.propagatedBuildInputs ++ [ coq-lsp ]; } 103 + )
+4 -1
pkgs/development/coq-modules/simple-io/default.nix
··· 20 doCheck = true; 21 checkTarget = "test"; 22 23 passthru.tests.HelloWorld = callPackage ./test.nix {}; 24 25 meta = with lib; { ··· 29 }; 30 }).overrideAttrs (o: lib.optionalAttrs (lib.versionAtLeast o.version "1.8.0" || o.version == "dev") { 31 doCheck = false; 32 - useDune = true; 33 })
··· 20 doCheck = true; 21 checkTarget = "test"; 22 23 + useDuneifVersion = v: 24 + (lib.versionAtLeast v "1.8.0" || v == "dev") 25 + && (lib.versionAtLeast coq.version "8.20" || coq.version == "dev"); 26 + 27 passthru.tests.HelloWorld = callPackage ./test.nix {}; 28 29 meta = with lib; { ··· 33 }; 34 }).overrideAttrs (o: lib.optionalAttrs (lib.versionAtLeast o.version "1.8.0" || o.version == "dev") { 35 doCheck = false; 36 })
+1 -1
pkgs/development/coq-modules/tlc/default.nix
··· 23 maintainers = [ maintainers.vbgl ]; 24 }; 25 }).overrideAttrs (x: 26 - lib.optionalAttrs (lib.versionOlder x.version "20210316") { 27 installFlags = [ "CONTRIB=$(out)/lib/coq/${coq.coq-version}/user-contrib" ]; 28 } 29 )
··· 23 maintainers = [ maintainers.vbgl ]; 24 }; 25 }).overrideAttrs (x: 26 + lib.optionalAttrs (lib.versionOlder x.version "20210316" && x.version != "dev") { 27 installFlags = [ "CONTRIB=$(out)/lib/coq/${coq.coq-version}/user-contrib" ]; 28 } 29 )
+5 -1
pkgs/development/cuda-modules/cuda/overrides.nix
··· 156 { 157 cudaAtLeast, 158 gmp, 159 lib, 160 }: 161 prevAttrs: { 162 buildInputs = 163 prevAttrs.buildInputs 164 # x86_64 only needs gmp from 12.0 and on 165 - ++ lib.lists.optionals (cudaAtLeast "12.0") [ gmp ]; 166 }; 167 168 cuda_nvcc =
··· 156 { 157 cudaAtLeast, 158 gmp, 159 + expat, 160 + stdenv, 161 lib, 162 }: 163 prevAttrs: { 164 buildInputs = 165 prevAttrs.buildInputs 166 # x86_64 only needs gmp from 12.0 and on 167 + ++ lib.lists.optionals (cudaAtLeast "12.0") [ gmp ] 168 + # aarch64,sbsa needs expat 169 + ++ lib.lists.optionals (stdenv.hostPlatform.isAarch64) [ expat ]; 170 }; 171 172 cuda_nvcc =
+2 -2
pkgs/development/libraries/libabw/default.nix
··· 1 - { lib, stdenv, fetchurl, boost, doxygen, gperf, pkg-config, librevenge, libxml2, perl }: 2 3 stdenv.mkDerivation rec { 4 pname = "libabw"; ··· 16 ''; 17 18 nativeBuildInputs = [ pkg-config ]; 19 - buildInputs = [ boost doxygen gperf librevenge libxml2 perl ]; 20 21 meta = with lib; { 22 homepage = "https://wiki.documentfoundation.org/DLP/Libraries/libabw";
··· 1 + { lib, stdenv, fetchurl, boost, doxygen, gperf, pkg-config, librevenge, libxml2, perl, zlib }: 2 3 stdenv.mkDerivation rec { 4 pname = "libabw"; ··· 16 ''; 17 18 nativeBuildInputs = [ pkg-config ]; 19 + buildInputs = [ boost doxygen gperf librevenge libxml2 perl zlib ]; 20 21 meta = with lib; { 22 homepage = "https://wiki.documentfoundation.org/DLP/Libraries/libabw";
+2 -2
pkgs/development/libraries/pmix/default.nix
··· 6 7 stdenv.mkDerivation rec { 8 pname = "pmix"; 9 - version = "5.0.1"; 10 11 src = fetchFromGitHub { 12 repo = "openpmix"; 13 owner = "openpmix"; 14 rev = "v${version}"; 15 - hash = "sha256-ZuuzQ8j5zqQ/9mBFEODAaoX9/doWB9Nt9Sl75JkJyqU="; 16 fetchSubmodules = true; 17 }; 18
··· 6 7 stdenv.mkDerivation rec { 8 pname = "pmix"; 9 + version = "5.0.3"; 10 11 src = fetchFromGitHub { 12 repo = "openpmix"; 13 owner = "openpmix"; 14 rev = "v${version}"; 15 + hash = "sha256-5qBZj4L0Qu/RvNj8meL0OlLCdfGvBP0D916Mr+0XOCQ="; 16 fetchSubmodules = true; 17 }; 18
+5 -4
pkgs/development/libraries/science/math/scalapack/default.nix
··· 52 -DLAPACK_LIBRARIES="-llapack" 53 -DBLAS_LIBRARIES="-lblas" 54 -DCMAKE_Fortran_COMPILER=${lib.getDev mpi}/bin/mpif90 55 - ${lib.optionalString passthru.isILP64 '' 56 - -DCMAKE_Fortran_FLAGS="-fdefault-integer-8" 57 - -DCMAKE_C_FLAGS="-DInt=long" 58 - ''} 59 ) 60 ''; 61
··· 52 -DLAPACK_LIBRARIES="-llapack" 53 -DBLAS_LIBRARIES="-lblas" 54 -DCMAKE_Fortran_COMPILER=${lib.getDev mpi}/bin/mpif90 55 + -DCMAKE_C_FLAGS="${lib.concatStringsSep " " [ 56 + "-Wno-implicit-function-declaration" 57 + (lib.optionalString passthru.isILP64 "-DInt=long") 58 + ]}" 59 + ${lib.optionalString passthru.isILP64 ''-DCMAKE_Fortran_FLAGS="-fdefault-integer-8"''} 60 ) 61 ''; 62
+2 -2
pkgs/development/python-modules/alexapy/default.nix
··· 19 20 buildPythonPackage rec { 21 pname = "alexapy"; 22 - version = "1.27.10"; 23 pyproject = true; 24 25 disabled = pythonOlder "3.10"; ··· 28 owner = "keatontaylor"; 29 repo = "alexapy"; 30 rev = "refs/tags/v${version}"; 31 - hash = "sha256-eoL7q+p0m3YZd7Ub7U8nE3tQGNA2oQXelvN+H01b0BM="; 32 }; 33 34 pythonRelaxDeps = [ "aiofiles" ];
··· 19 20 buildPythonPackage rec { 21 pname = "alexapy"; 22 + version = "1.28.0"; 23 pyproject = true; 24 25 disabled = pythonOlder "3.10"; ··· 28 owner = "keatontaylor"; 29 repo = "alexapy"; 30 rev = "refs/tags/v${version}"; 31 + hash = "sha256-sRTK3qaIiYxz9Z+LT2pFjqKXBHyr3EkSD4dtc+KXFQw="; 32 }; 33 34 pythonRelaxDeps = [ "aiofiles" ];
+17 -6
pkgs/development/python-modules/alpha-vantage/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "alpha-vantage"; 17 - version = "2.3.1"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.7"; ··· 22 src = fetchFromGitHub { 23 owner = "RomelTorres"; 24 repo = "alpha_vantage"; 25 - rev = "refs/tags/${version}"; 26 - hash = "sha256-DWnaLjnbAHhpe8aGUN7JaXEYC0ivWlizOSAfdvg33DM="; 27 }; 28 29 build-system = [ setuptools ]; 30 ··· 33 requests 34 ]; 35 36 nativeCheckInputs = [ 37 aioresponses 38 requests-mock 39 - pandas 40 pytestCheckHook 41 - ]; 42 43 - # https://github.com/RomelTorres/alpha_vantage/issues/344 44 doCheck = false; 45 46 pythonImportsCheck = [ "alpha_vantage" ];
··· 14 15 buildPythonPackage rec { 16 pname = "alpha-vantage"; 17 + version = "3.0.0"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.7"; ··· 22 src = fetchFromGitHub { 23 owner = "RomelTorres"; 24 repo = "alpha_vantage"; 25 + rev = "refs/tags/v${version}"; 26 + hash = "sha256-Ae9WqEsAjJcD62NZOPh6a49g1wY4KMswzixDAZEtWkw="; 27 }; 28 + 29 + postPatch = '' 30 + # Files are only linked 31 + rm alpha_vantage/async_support/* 32 + cp alpha_vantage/{cryptocurrencies.py,foreignexchange.py,techindicators.py,timeseries.py} alpha_vantage/async_support/ 33 + ''; 34 35 build-system = [ setuptools ]; 36 ··· 39 requests 40 ]; 41 42 + passthru.optional-dependencies = { 43 + pandas = [ 44 + pandas 45 + ]; 46 + }; 47 + 48 nativeCheckInputs = [ 49 aioresponses 50 requests-mock 51 pytestCheckHook 52 + ] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies); 53 54 + # Starting with 3.0.0 most tests require an API key 55 doCheck = false; 56 57 pythonImportsCheck = [ "alpha_vantage" ];
+2 -2
pkgs/development/python-modules/azure-mgmt-containerservice/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "azure-mgmt-containerservice"; 15 - version = "30.0.0"; 16 pyproject = true; 17 18 disabled = pythonOlder "3.8"; 19 20 src = fetchPypi { 21 inherit pname version; 22 - hash = "sha256-bGLmrFkONP7dc5/iSzGzdQcToBRhZpbqjUTHvMgcBrc="; 23 }; 24 25 build-system = [ setuptools ];
··· 12 13 buildPythonPackage rec { 14 pname = "azure-mgmt-containerservice"; 15 + version = "31.0.0"; 16 pyproject = true; 17 18 disabled = pythonOlder "3.8"; 19 20 src = fetchPypi { 21 inherit pname version; 22 + hash = "sha256-E0NY1/iMTSm0AJ+R12GYYeH61dvqXhR0At1hrZa1Yko="; 23 }; 24 25 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/bring-api/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "bring-api"; 16 - version = "0.7.2"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.8"; ··· 22 owner = "miaucl"; 23 repo = "bring-api"; 24 rev = "refs/tags/${version}"; 25 - hash = "sha256-941IAVlLwfHCyqUu0AhdIfBjuT3pZpk98ZUssBVjEUA="; 26 }; 27 28 build-system = [ setuptools ];
··· 13 14 buildPythonPackage rec { 15 pname = "bring-api"; 16 + version = "0.7.3"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.8"; ··· 22 owner = "miaucl"; 23 repo = "bring-api"; 24 rev = "refs/tags/${version}"; 25 + hash = "sha256-9asmGm2RwiP2BIygIkLLU30E0zJ/05kvoAfEPlGFW5U="; 26 }; 27 28 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/fastcore/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "fastcore"; 12 - version = "1.5.53"; 13 pyproject = true; 14 15 disabled = pythonOlder "3.8"; ··· 18 owner = "fastai"; 19 repo = "fastcore"; 20 rev = "refs/tags/${version}"; 21 - hash = "sha256-/G2v1jFoAiDHM4T/XQx/tHZRBWb+7XY3Jsw5lFFSp1E="; 22 }; 23 24 build-system = [ setuptools ];
··· 9 10 buildPythonPackage rec { 11 pname = "fastcore"; 12 + version = "1.5.54"; 13 pyproject = true; 14 15 disabled = pythonOlder "3.8"; ··· 18 owner = "fastai"; 19 repo = "fastcore"; 20 rev = "refs/tags/${version}"; 21 + hash = "sha256-42HEyxufJrzc5T6t6ixA5I0n8rh8wZ8MTfsjnmhbUfk="; 22 }; 23 24 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/google-cloud-container/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "google-cloud-container"; 18 - version = "2.47.1"; 19 pyproject = true; 20 21 disabled = pythonOlder "3.7"; 22 23 src = fetchPypi { 24 inherit pname version; 25 - hash = "sha256-2dL+Xj37vFRSQ+yEStVRNIp/CeZdQK6VOPpcxGYAElE="; 26 }; 27 28 build-system = [ setuptools ];
··· 15 16 buildPythonPackage rec { 17 pname = "google-cloud-container"; 18 + version = "2.49.0"; 19 pyproject = true; 20 21 disabled = pythonOlder "3.7"; 22 23 src = fetchPypi { 24 inherit pname version; 25 + hash = "sha256-HBZFJ5oUVS1PIS/WBm4Xt/D0S+OGuM7gV43mInN8Lv8="; 26 }; 27 28 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/google-cloud-firestore/default.nix
··· 18 19 buildPythonPackage rec { 20 pname = "google-cloud-firestore"; 21 - version = "2.16.1"; 22 pyproject = true; 23 24 disabled = pythonOlder "3.7"; 25 26 src = fetchPypi { 27 inherit pname version; 28 - hash = "sha256-M4HrgpbtECjZtCGqQrkQDxmMWH+OM8AF0xplVnALda4="; 29 }; 30 31 build-system = [ setuptools ];
··· 18 19 buildPythonPackage rec { 20 pname = "google-cloud-firestore"; 21 + version = "2.17.0"; 22 pyproject = true; 23 24 disabled = pythonOlder "3.7"; 25 26 src = fetchPypi { 27 inherit pname version; 28 + hash = "sha256-PoG3HZY7fjvMh/uBMjbzhkvHsKPyB6xNh7xlle/iuKM="; 29 }; 30 31 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/google-cloud-tasks/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "google-cloud-tasks"; 18 - version = "2.16.3"; 19 pyproject = true; 20 21 disabled = pythonOlder "3.7"; 22 23 src = fetchPypi { 24 inherit pname version; 25 - hash = "sha256-2JH+cAbbTWEig4qm3krKbgB3urIk7crmhGZq4+MDxF8="; 26 }; 27 28 nativeBuildInputs = [ setuptools ];
··· 15 16 buildPythonPackage rec { 17 pname = "google-cloud-tasks"; 18 + version = "2.16.4"; 19 pyproject = true; 20 21 disabled = pythonOlder "3.7"; 22 23 src = fetchPypi { 24 inherit pname version; 25 + hash = "sha256-YQM8Ht19xao7n75cjetkvgxQ4LrunZRl8/i3WyzaVbk="; 26 }; 27 28 nativeBuildInputs = [ setuptools ];
+5 -2
pkgs/development/python-modules/lacuscore/default.nix
··· 7 fetchFromGitHub, 8 playwrightcapture, 9 poetry-core, 10 pythonOlder, 11 redis, 12 requests, ··· 16 17 buildPythonPackage rec { 18 pname = "lacuscore"; 19 - version = "1.10.0"; 20 pyproject = true; 21 22 disabled = pythonOlder "3.8"; ··· 25 owner = "ail-project"; 26 repo = "LacusCore"; 27 rev = "refs/tags/v${version}"; 28 - hash = "sha256-hbMMKV/LJSfCgl293Tm4kkpwoYYpgydV/reri9ONj+4="; 29 }; 30 31 pythonRelaxDeps = [ 32 "redis" 33 "requests" 34 ]; ··· 41 defang 42 dnspython 43 playwrightcapture 44 redis 45 requests 46 sphinx
··· 7 fetchFromGitHub, 8 playwrightcapture, 9 poetry-core, 10 + pydantic, 11 pythonOlder, 12 redis, 13 requests, ··· 17 18 buildPythonPackage rec { 19 pname = "lacuscore"; 20 + version = "1.10.6"; 21 pyproject = true; 22 23 disabled = pythonOlder "3.8"; ··· 26 owner = "ail-project"; 27 repo = "LacusCore"; 28 rev = "refs/tags/v${version}"; 29 + hash = "sha256-lFtj1xIvKnXMtb/fcQWSXKKV8Ne6cSHbKYwLFY4M07M="; 30 }; 31 32 pythonRelaxDeps = [ 33 + "pydantic" 34 "redis" 35 "requests" 36 ]; ··· 43 defang 44 dnspython 45 playwrightcapture 46 + pydantic 47 redis 48 requests 49 sphinx
+5 -1
pkgs/development/python-modules/langchain-core/default.nix
··· 86 ''; 87 }; 88 89 - disabledTests = lib.optionals stdenv.isDarwin [ 90 # Langchain-core the following tests due to the test comparing execution time with magic values. 91 "test_queue_for_streaming_via_sync_call" 92 "test_same_event_loop"
··· 86 ''; 87 }; 88 89 + disabledTests = [ 90 + # flaky, sometimes fail to strip uuid from AIMessageChunk before comparing to test value 91 + "test_map_stream" 92 + ] 93 + ++ lib.optionals stdenv.isDarwin [ 94 # Langchain-core the following tests due to the test comparing execution time with magic values. 95 "test_queue_for_streaming_via_sync_call" 96 "test_same_event_loop"
+2 -2
pkgs/development/python-modules/playwrightcapture/default.nix
··· 22 23 buildPythonPackage rec { 24 pname = "playwrightcapture"; 25 - version = "1.25.4"; 26 pyproject = true; 27 28 disabled = pythonOlder "3.8"; ··· 31 owner = "Lookyloo"; 32 repo = "PlaywrightCapture"; 33 rev = "refs/tags/v${version}"; 34 - hash = "sha256-PKox2vfmqyjdsvV7O/exPu7Y7ArzpiywfkTHucRTudo="; 35 }; 36 37 pythonRelaxDeps = [
··· 22 23 buildPythonPackage rec { 24 pname = "playwrightcapture"; 25 + version = "1.25.8"; 26 pyproject = true; 27 28 disabled = pythonOlder "3.8"; ··· 31 owner = "Lookyloo"; 32 repo = "PlaywrightCapture"; 33 rev = "refs/tags/v${version}"; 34 + hash = "sha256-KuhcAhnpvM9pEzqr7Ke7aFuQ3WLbaAHEzThr5Idl+zU="; 35 }; 36 37 pythonRelaxDeps = [
+2
pkgs/development/python-modules/type-infer/default.nix
··· 41 hash = "sha256-F+gfA7ofrbMEE5SrVt9H3s2mZKQLyr6roNUmL4EMJbI="; 42 }; 43 44 nativeBuildInputs = [ poetry-core ]; 45 46 propagatedBuildInputs = [
··· 41 hash = "sha256-F+gfA7ofrbMEE5SrVt9H3s2mZKQLyr6roNUmL4EMJbI="; 42 }; 43 44 + pythonRelaxDeps = [ "psutil" ]; 45 + 46 nativeBuildInputs = [ poetry-core ]; 47 48 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/uiprotect/default.nix
··· 37 38 buildPythonPackage rec { 39 pname = "uiprotect"; 40 - version = "5.3.0"; 41 pyproject = true; 42 43 disabled = pythonOlder "3.10"; ··· 46 owner = "uilibs"; 47 repo = "uiprotect"; 48 rev = "refs/tags/v${version}"; 49 - hash = "sha256-3+et24rvB9wh1cvUOXtgeDkh+SI0+dOrEnFBH5g735o="; 50 }; 51 52 postPatch = ''
··· 37 38 buildPythonPackage rec { 39 pname = "uiprotect"; 40 + version = "5.4.0"; 41 pyproject = true; 42 43 disabled = pythonOlder "3.10"; ··· 46 owner = "uilibs"; 47 repo = "uiprotect"; 48 rev = "refs/tags/v${version}"; 49 + hash = "sha256-LwG8X1UHsGL7jw4au2Jeo6pcsnRK23rqB5aFBQRTGmI="; 50 }; 51 52 postPatch = ''
+2 -2
pkgs/games/path-of-building/default.nix
··· 17 let 18 data = stdenv.mkDerivation (finalAttrs: { 19 pname = "path-of-building-data"; 20 - version = "2.42.0"; 21 22 src = fetchFromGitHub { 23 owner = "PathOfBuildingCommunity"; 24 repo = "PathOfBuilding"; 25 rev = "v${finalAttrs.version}"; 26 - hash = "sha256-OxAyB+tMszQktGvxlGL/kc+Wt0iInFYY0qHNjK6EnSg="; 27 }; 28 29 nativeBuildInputs = [ unzip ];
··· 17 let 18 data = stdenv.mkDerivation (finalAttrs: { 19 pname = "path-of-building-data"; 20 + version = "2.44.1"; 21 22 src = fetchFromGitHub { 23 owner = "PathOfBuildingCommunity"; 24 repo = "PathOfBuilding"; 25 rev = "v${finalAttrs.version}"; 26 + hash = "sha256-yYdgdmcSjV5Pigf73iWhLy0QeY6YTZkuURNX3yMMRGU="; 27 }; 28 29 nativeBuildInputs = [ unzip ];
+12 -9
pkgs/os-specific/darwin/apple-source-releases/ICU/default.nix
··· 11 in 12 13 appleDerivation { 14 nativeBuildInputs = [ python3 ]; 15 16 depsBuildBuild = lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [ buildPackages.stdenv.cc ]; 17 18 postPatch = '' 19 substituteInPlace makefile \ 20 - --replace "/usr/bin/" "" \ 21 - --replace "xcrun --sdk macosx --find" "echo -n" \ 22 - --replace "xcrun --sdk macosx.internal --show-sdk-path" "echo -n /dev/null" \ 23 - --replace "-install_name " "-install_name $out" 24 25 substituteInPlace icuSources/config/mh-darwin \ 26 - --replace "-install_name " "-install_name $out/" 27 28 # drop using impure /var/db/timezone/icutz 29 substituteInPlace makefile \ 30 - --replace '-DU_TIMEZONE_FILES_DIR=\"\\\"$(TZDATA_LOOKUP_DIR)\\\"\" -DU_TIMEZONE_PACKAGE=\"\\\"$(TZDATA_PACKAGE)\\\"\"' "" 31 32 # FIXME: This will cause `ld: warning: OS version (12.0) too small, changing to 13.0.0`, APPLE should fix it. 33 substituteInPlace makefile \ 34 - --replace "ZIPPERING_LDFLAGS=-Wl,-iosmac_version_min,12.0" "ZIPPERING_LDFLAGS=" 35 36 # skip test for missing encodingSamples data 37 substituteInPlace icuSources/test/cintltst/ucsdetst.c \ 38 - --replace "&TestMailFilterCSS" "NULL" 39 40 patchShebangs icuSources 41 '' + lib.optionalString (stdenv.buildPlatform != stdenv.hostPlatform) '' ··· 44 # propagate the correct value of CC, CXX, etc, but has the following double 45 # expansion that results in the empty string. 46 substituteInPlace makefile \ 47 - --replace '$($(ENV_BUILDHOST))' '$(ENV_BUILDHOST)' 48 ''; 49 50 # APPLE is using makefile to save its default configuration and call ./configure, so we hack makeFlags
··· 11 in 12 13 appleDerivation { 14 + patches = [ ./suppress-icu-check-crash.patch ]; 15 + 16 nativeBuildInputs = [ python3 ]; 17 18 depsBuildBuild = lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [ buildPackages.stdenv.cc ]; 19 20 postPatch = '' 21 substituteInPlace makefile \ 22 + --replace-fail "/usr/bin/" "" \ 23 + --replace-fail "xcrun --sdk macosx --find" "echo -n" \ 24 + --replace-fail "xcrun --sdk macosx.internal --show-sdk-path" "echo -n /dev/null" \ 25 + --replace-fail "-install_name " "-install_name $out" \ 26 + --replace-fail '-x -u -r -S' '-x --keep-undefined -S' 27 28 substituteInPlace icuSources/config/mh-darwin \ 29 + --replace-fail "-install_name " "-install_name $out/" 30 31 # drop using impure /var/db/timezone/icutz 32 substituteInPlace makefile \ 33 + --replace-fail '-DU_TIMEZONE_FILES_DIR=\"\\\"$(TZDATA_LOOKUP_DIR)\\\"\" -DU_TIMEZONE_PACKAGE=\"\\\"$(TZDATA_PACKAGE)\\\"\"' "" 34 35 # FIXME: This will cause `ld: warning: OS version (12.0) too small, changing to 13.0.0`, APPLE should fix it. 36 substituteInPlace makefile \ 37 + --replace-fail "ZIPPERING_LDFLAGS=-Wl,-iosmac_version_min,12.0" "ZIPPERING_LDFLAGS=" 38 39 # skip test for missing encodingSamples data 40 substituteInPlace icuSources/test/cintltst/ucsdetst.c \ 41 + --replace-fail "&TestMailFilterCSS" "NULL" 42 43 patchShebangs icuSources 44 '' + lib.optionalString (stdenv.buildPlatform != stdenv.hostPlatform) '' ··· 47 # propagate the correct value of CC, CXX, etc, but has the following double 48 # expansion that results in the empty string. 49 substituteInPlace makefile \ 50 + --replace-fail '$($(ENV_BUILDHOST))' '$(ENV_BUILDHOST)' 51 ''; 52 53 # APPLE is using makefile to save its default configuration and call ./configure, so we hack makeFlags
+13
pkgs/os-specific/darwin/apple-source-releases/ICU/suppress-icu-check-crash.patch
···
··· 1 + diff --git a/icuSources/test/cintltst/cmsgtst.c b/icuSources/test/cintltst/cmsgtst.c 2 + index cb328707..1073e6c1 100644 3 + --- a/icuSources/test/cintltst/cmsgtst.c 4 + +++ b/icuSources/test/cintltst/cmsgtst.c 5 + @@ -231,7 +231,7 @@ static void MessageFormatTest( void ) 6 + austrdup(result), austrdup(testResultStrings[i]) ); 7 + } 8 + 9 + -#if (U_PLATFORM == U_PF_LINUX) /* add platforms here .. */ 10 + +#if (U_PLATFORM == U_PF_LINUX || U_PLATFORM == U_PF_DARWIN) /* add platforms here .. */ 11 + log_verbose("Skipping potentially crashing test for mismatched varargs.\n"); 12 + #else 13 + log_verbose("Note: the next is a platform dependent test. If it crashes, add an exclusion for your platform near %s:%d\n", __FILE__, __LINE__);
+1 -1
pkgs/servers/http/apache-httpd/2.4.nix
··· 25 26 nativeBuildInputs = [ which ]; 27 28 - buildInputs = [ perl libxcrypt ] ++ 29 lib.optional brotliSupport brotli ++ 30 lib.optional sslSupport openssl ++ 31 lib.optional modTlsSupport rustls-ffi ++
··· 25 26 nativeBuildInputs = [ which ]; 27 28 + buildInputs = [ perl libxcrypt zlib ] ++ 29 lib.optional brotliSupport brotli ++ 30 lib.optional sslSupport openssl ++ 31 lib.optional modTlsSupport rustls-ffi ++
+1 -1
pkgs/stdenv/darwin/default.nix
··· 1323 1324 darwin = super.darwin.overrideScope (_: superDarwin: { 1325 inherit (prevStage.darwin) 1326 - CF ICU Libsystem darwin-stubs dyld locale libobjc rewrite-tbd xnu; 1327 1328 apple_sdk = superDarwin.apple_sdk // { 1329 inherit (prevStage.darwin.apple_sdk) sdkRoot;
··· 1323 1324 darwin = super.darwin.overrideScope (_: superDarwin: { 1325 inherit (prevStage.darwin) 1326 + CF Libsystem darwin-stubs dyld locale libobjc rewrite-tbd xnu; 1327 1328 apple_sdk = superDarwin.apple_sdk // { 1329 inherit (prevStage.darwin.apple_sdk) sdkRoot;
+3 -3
pkgs/tools/security/cnspec/default.nix
··· 6 7 buildGoModule rec { 8 pname = "cnspec"; 9 - version = "11.12.2"; 10 11 src = fetchFromGitHub { 12 owner = "mondoohq"; 13 repo = "cnspec"; 14 rev = "refs/tags/v${version}"; 15 - hash = "sha256-y3mATllBgvgAAqlwfCtS92fAmfqOs4yxy2oFxJMxJWM="; 16 }; 17 18 proxyVendor = true; 19 20 - vendorHash = "sha256-/Mg1jZ2rL+3NlrG/fZ2t0z9TVSfrJMvKGa1FRhTeicU="; 21 22 subPackages = [ "apps/cnspec" ]; 23
··· 6 7 buildGoModule rec { 8 pname = "cnspec"; 9 + version = "11.13.0"; 10 11 src = fetchFromGitHub { 12 owner = "mondoohq"; 13 repo = "cnspec"; 14 rev = "refs/tags/v${version}"; 15 + hash = "sha256-f0ZeAkLEZzcDEgZ8AIYhaICB/Gcs8sadbMDB0F/aGIY="; 16 }; 17 18 proxyVendor = true; 19 20 + vendorHash = "sha256-i4oSnUHLsrZBHwtOcKFiRBDAbATsw/vC4xHMCUVEJu4="; 21 22 subPackages = [ "apps/cnspec" ]; 23
+1 -1
pkgs/tools/security/metasploit/Gemfile
··· 1 # frozen_string_literal: true 2 source "https://rubygems.org" 3 4 - gem "metasploit-framework", git: "https://github.com/rapid7/metasploit-framework", ref: "refs/tags/6.4.17"
··· 1 # frozen_string_literal: true 2 source "https://rubygems.org" 3 4 + gem "metasploit-framework", git: "https://github.com/rapid7/metasploit-framework", ref: "refs/tags/6.4.18"
+6 -6
pkgs/tools/security/metasploit/Gemfile.lock
··· 1 GIT 2 remote: https://github.com/rapid7/metasploit-framework 3 - revision: edac4a2e9e1ccf33e8b065fb64c289adf43f7a8b 4 - ref: refs/tags/6.4.17 5 specs: 6 - metasploit-framework (6.4.17) 7 aarch64 8 abbrev 9 actionpack (~> 7.0.0) ··· 45 metasploit-model 46 metasploit-payloads (= 2.0.166) 47 metasploit_data_models 48 - metasploit_payloads-mettle (= 1.0.29) 49 mqtt 50 msgpack (~> 1.6.0) 51 mutex_m ··· 282 railties (~> 7.0) 283 recog 284 webrick 285 - metasploit_payloads-mettle (1.0.29) 286 method_source (1.1.0) 287 mini_portile2 (2.8.6) 288 minitest (5.23.1) ··· 485 metasploit-framework! 486 487 BUNDLED WITH 488 - 2.5.9
··· 1 GIT 2 remote: https://github.com/rapid7/metasploit-framework 3 + revision: 5426fc47cdc588a0f51617712b2419bd1fefe630 4 + ref: refs/tags/6.4.18 5 specs: 6 + metasploit-framework (6.4.18) 7 aarch64 8 abbrev 9 actionpack (~> 7.0.0) ··· 45 metasploit-model 46 metasploit-payloads (= 2.0.166) 47 metasploit_data_models 48 + metasploit_payloads-mettle (= 1.0.31) 49 mqtt 50 msgpack (~> 1.6.0) 51 mutex_m ··· 282 railties (~> 7.0) 283 recog 284 webrick 285 + metasploit_payloads-mettle (1.0.31) 286 method_source (1.1.0) 287 mini_portile2 (2.8.6) 288 minitest (5.23.1) ··· 485 metasploit-framework! 486 487 BUNDLED WITH 488 + 2.5.11
+2 -2
pkgs/tools/security/metasploit/default.nix
··· 15 }; 16 in stdenv.mkDerivation rec { 17 pname = "metasploit-framework"; 18 - version = "6.4.17"; 19 20 src = fetchFromGitHub { 21 owner = "rapid7"; 22 repo = "metasploit-framework"; 23 rev = "refs/tags/${version}"; 24 - hash = "sha256-OpEG6HICBFOyCH6Bfz5OfH3YjKtLRPyFlgRI29lmuDo="; 25 }; 26 27 nativeBuildInputs = [
··· 15 }; 16 in stdenv.mkDerivation rec { 17 pname = "metasploit-framework"; 18 + version = "6.4.18"; 19 20 src = fetchFromGitHub { 21 owner = "rapid7"; 22 repo = "metasploit-framework"; 23 rev = "refs/tags/${version}"; 24 + hash = "sha256-56WvRpsqX//yyv7ymGAs1fWFolqJM0JXXSDIb1cHJxs="; 25 }; 26 27 nativeBuildInputs = [
+5 -5
pkgs/tools/security/metasploit/gemset.nix
··· 724 platforms = []; 725 source = { 726 fetchSubmodules = false; 727 - rev = "edac4a2e9e1ccf33e8b065fb64c289adf43f7a8b"; 728 - sha256 = "0fmqcvcxnj04js2zqi2bmf6dhzbw9qz7z0by12r56102fbl0d49s"; 729 type = "git"; 730 url = "https://github.com/rapid7/metasploit-framework"; 731 }; 732 - version = "6.4.17"; 733 }; 734 metasploit-model = { 735 groups = ["default"]; ··· 766 platforms = []; 767 source = { 768 remotes = ["https://rubygems.org"]; 769 - sha256 = "0677lldp420sbq876j3qm7p8rp7hm1y9fdxgmsw0xdj97010ahbj"; 770 type = "gem"; 771 }; 772 - version = "1.0.29"; 773 }; 774 method_source = { 775 groups = ["default"];
··· 724 platforms = []; 725 source = { 726 fetchSubmodules = false; 727 + rev = "5426fc47cdc588a0f51617712b2419bd1fefe630"; 728 + sha256 = "06r70xbnzj10bmbl4cw9bai8bxfm5ih9iwpyrbrgyprakd3az9g7"; 729 type = "git"; 730 url = "https://github.com/rapid7/metasploit-framework"; 731 }; 732 + version = "6.4.18"; 733 }; 734 metasploit-model = { 735 groups = ["default"]; ··· 766 platforms = []; 767 source = { 768 remotes = ["https://rubygems.org"]; 769 + sha256 = "19g1mfgv39fqyskkib1f7w2lx7528kpnq90prrmb6jrh1acwaanq"; 770 type = "gem"; 771 }; 772 + version = "1.0.31"; 773 }; 774 method_source = { 775 groups = ["default"];
+5
pkgs/tools/system/fakeroot/default.nix
··· 39 url = "https://git.alpinelinux.org/aports/plain/main/fakeroot/fakeroot-no64.patch?id=f68c541324ad07cc5b7f5228501b5f2ce4b36158"; 40 sha256 = "sha256-NCDaB4nK71gvz8iQxlfaQTazsG0SBUQ/RAnN+FqwKkY="; 41 }) 42 ]; 43 44 nativeBuildInputs = [ autoreconfHook po4a ];
··· 39 url = "https://git.alpinelinux.org/aports/plain/main/fakeroot/fakeroot-no64.patch?id=f68c541324ad07cc5b7f5228501b5f2ce4b36158"; 40 sha256 = "sha256-NCDaB4nK71gvz8iQxlfaQTazsG0SBUQ/RAnN+FqwKkY="; 41 }) 42 + (fetchpatch { 43 + name = "addendum-charset-conversion.patch"; 44 + url = "https://salsa.debian.org/clint/fakeroot/-/commit/b769fb19fd89d696a5e0fd70b974f833f6a0655a.patch"; 45 + hash = "sha256-3z1g+xzlyTpa055kpsoumP/E8srDlZss6B7Fv5A0QkU="; 46 + }) 47 ]; 48 49 nativeBuildInputs = [ autoreconfHook po4a ];
+2 -2
pkgs/tools/text/ugrep/default.nix
··· 15 16 stdenv.mkDerivation (finalAttrs: { 17 pname = "ugrep"; 18 - version = "6.0.0"; 19 20 src = fetchFromGitHub { 21 owner = "Genivia"; 22 repo = "ugrep"; 23 rev = "v${finalAttrs.version}"; 24 - hash = "sha256-jZWmWZ4ZkmtdEI7BJ4cg1PBAuue8sjA7aiGotv2WmB4="; 25 }; 26 27 buildInputs = [
··· 15 16 stdenv.mkDerivation (finalAttrs: { 17 pname = "ugrep"; 18 + version = "6.2.0"; 19 20 src = fetchFromGitHub { 21 owner = "Genivia"; 22 repo = "ugrep"; 23 rev = "v${finalAttrs.version}"; 24 + hash = "sha256-ItPmcKNvjk6U0u80W9+VvGIPgHJnOkWAIebjHLz5bMg="; 25 }; 26 27 buildInputs = [
+13 -9
pkgs/tools/typesetting/bibtex-tidy/default.nix
··· 1 { lib 2 , buildNpmPackage 3 , fetchFromGitHub 4 }: 5 6 buildNpmPackage rec { 7 pname = "bibtex-tidy"; 8 - version = "1.11.0"; 9 10 src = fetchFromGitHub { 11 owner = "FlamingTempura"; 12 repo = "bibtex-tidy"; 13 - rev = "v${version}"; 14 - hash = "sha256-VjQuMQr3OJgjgX6FdH/C4mehf8H7XjDZ9Rxs92hyQVo="; 15 }; 16 17 - patches = [ 18 - # downloads Google fonts during `npm run build` 19 - ./remove-google-font-loader.patch 20 - ]; 21 - 22 - npmDepsHash = "sha256-u2lyG95F00S/bvsVwu0hIuUw2UZYQWFakCF31LIijSU="; 23 24 env = { 25 PUPPETEER_SKIP_DOWNLOAD = true; 26 }; 27 28 meta = {
··· 1 { lib 2 , buildNpmPackage 3 , fetchFromGitHub 4 + , testers 5 + , bibtex-tidy 6 }: 7 8 buildNpmPackage rec { 9 pname = "bibtex-tidy"; 10 + version = "1.13.0"; 11 12 src = fetchFromGitHub { 13 owner = "FlamingTempura"; 14 repo = "bibtex-tidy"; 15 + rev = "9658d907d990fd80d25ab37d9aee120451bf5d19"; 16 + hash = "sha256-4TrEabxIVB0Vu/E1ClKwk7lXcnPgoVh3RjLYsPwH2yQ="; 17 }; 18 19 + npmDepsHash = "sha256-VzzHGmW7Rb6dEdBxd84GXKSPasqfTkn+5rNw9C2lt8k="; 20 21 env = { 22 PUPPETEER_SKIP_DOWNLOAD = true; 23 + }; 24 + 25 + passthru.tests = { 26 + version = testers.testVersion { 27 + package = bibtex-tidy; 28 + version = "v${version}"; 29 + }; 30 }; 31 32 meta = {
-52
pkgs/tools/typesetting/bibtex-tidy/remove-google-font-loader.patch
··· 1 - diff --git a/build.ts b/build.ts 2 - index ae4e350..3498ae7 100644 3 - --- a/build.ts 4 - +++ b/build.ts 5 - @@ -312,7 +312,6 @@ async function buildWebBundle() { 6 - target: ['esnext'], 7 - plugins: [ 8 - sveltePlugin({ preprocess: autoPreprocess() }), 9 - - googleFontPlugin, 10 - regexpuPlugin, 11 - ], 12 - }); 13 - @@ -344,7 +343,6 @@ async function serveWeb() { 14 - preprocess: autoPreprocess(), 15 - compilerOptions: { enableSourcemap: true }, 16 - }), 17 - - googleFontPlugin, 18 - ], 19 - }); 20 - const server = await ctx.serve({ servedir: WEB_PATH }); 21 - @@ -375,31 +373,6 @@ const regexpuPlugin: Plugin = { 22 - }, 23 - }; 24 - 25 - -// Downloads google fonts and injects them as base64 urls into bundle css 26 - -const googleFontPlugin: Plugin = { 27 - - name: 'google-font-loader', 28 - - setup(build) { 29 - - build.onResolve({ filter: /^https?:\/\/fonts\./ }, (args) => ({ 30 - - path: args.path, 31 - - namespace: 'http-url', 32 - - })); 33 - - build.onLoad( 34 - - { filter: /.*/, namespace: 'http-url' }, 35 - - async (args): Promise<OnLoadResult> => { 36 - - const res = await fetch(args.path, { 37 - - headers: { 38 - - // ensures google responds with woff2 fonts 39 - - 'User-Agent': 'Mozilla/5.0 Firefox/90.0', 40 - - }, 41 - - }); 42 - - const contents = Buffer.from(await res.arrayBuffer()); 43 - - const loader = args.path.endsWith('.woff2') ? 'dataurl' : 'css'; 44 - - return { contents, loader }; 45 - - } 46 - - ); 47 - - }, 48 - -}; 49 - - 50 - /** 51 - * swc converts js syntax to support older browsers. ESBuild can kinda do this 52 - * but only for more recent browsers. swc is also far easier to configure than
···