Merge remote-tracking branch 'origin/master' into staging-next

Conflicts:
pkgs/development/python-modules/opensimplex/default.nix
pkgs/development/python-modules/pygame-gui/default.nix
pkgs/top-level/aliases.nix
pkgs/top-level/python-aliases.nix

+3464 -1760
+6
maintainers/maintainer-list.nix
··· 13842 github = "AmeerTaweel"; 13843 githubId = 20538273; 13844 }; 13845 }
··· 13842 github = "AmeerTaweel"; 13843 githubId = 20538273; 13844 }; 13845 + nigelgbanks = { 13846 + name = "Nigel Banks"; 13847 + email = "nigel.g.banks@gmail.com"; 13848 + github = "nigelgbanks"; 13849 + githubId = 487373; 13850 + }; 13851 }
+22
nixos/doc/manual/from_md/release-notes/rl-2205.section.xml
··· 242 </listitem> 243 <listitem> 244 <para> 245 <literal>pkgs.emacsPackages.orgPackages</literal> is removed 246 because org elpa is deprecated. The packages in the top level 247 of <literal>pkgs.emacsPackages</literal>, such as org and ··· 315 interpreter. Scripts have to be converted to Python 3 for use 316 with <literal>writers.writePython3</literal> or 317 <literal>writers.writePyPy2</literal> needs to be used. 318 </para> 319 </listitem> 320 <listitem>
··· 242 </listitem> 243 <listitem> 244 <para> 245 + <literal>pkgs.ghc.withPackages</literal> as well as 246 + <literal>haskellPackages.ghcWithPackages</literal> etc. now 247 + needs be overridden directly, as opposed to overriding the 248 + result of calling it. Additionally, the 249 + <literal>withLLVM</literal> parameter has been renamed to 250 + <literal>useLLVM</literal>. So instead of 251 + <literal>(ghc.withPackages (p: [])).override { withLLVM = true; }</literal>, 252 + one needs to use 253 + <literal>(ghc.withPackages.override { useLLVM = true; }) (p: [])</literal>. 254 + </para> 255 + </listitem> 256 + <listitem> 257 + <para> 258 <literal>pkgs.emacsPackages.orgPackages</literal> is removed 259 because org elpa is deprecated. The packages in the top level 260 of <literal>pkgs.emacsPackages</literal>, such as org and ··· 328 interpreter. Scripts have to be converted to Python 3 for use 329 with <literal>writers.writePython3</literal> or 330 <literal>writers.writePyPy2</literal> needs to be used. 331 + </para> 332 + </listitem> 333 + <listitem> 334 + <para> 335 + <literal>buildGoModule</literal> was updated to use 336 + <literal>go_1_17</literal>, third party derivations that 337 + specify &gt;= go 1.17 in the main <literal>go.mod</literal> 338 + will need to regenerate their <literal>vendorSha256</literal> 339 + hash. 340 </para> 341 </listitem> 342 <listitem>
+8
nixos/doc/manual/release-notes/rl-2205.section.md
··· 81 instead to ensure cross compilation keeps working (or switch to 82 `haskellPackages.callPackage`). 83 84 - `pkgs.emacsPackages.orgPackages` is removed because org elpa is deprecated. 85 The packages in the top level of `pkgs.emacsPackages`, such as org and 86 org-contrib, refer to the ones in `pkgs.emacsPackages.elpaPackages` and ··· 104 105 - The `writers.writePython2` and corresponding `writers.writePython2Bin` convenience functions to create executable Python 2 scripts in the store were removed in preparation of removal of the Python 2 interpreter. 106 Scripts have to be converted to Python 3 for use with `writers.writePython3` or `writers.writePyPy2` needs to be used. 107 108 - The `gnome-passwordsafe` package updated to [version 6.x](https://gitlab.gnome.org/World/secrets/-/tags/6.0) and renamed to `gnome-secrets`. 109
··· 81 instead to ensure cross compilation keeps working (or switch to 82 `haskellPackages.callPackage`). 83 84 + - `pkgs.ghc.withPackages` as well as `haskellPackages.ghcWithPackages` etc. 85 + now needs be overridden directly, as opposed to overriding the result of 86 + calling it. Additionally, the `withLLVM` parameter has been renamed to 87 + `useLLVM`. So instead of `(ghc.withPackages (p: [])).override { withLLVM = true; }`, 88 + one needs to use `(ghc.withPackages.override { useLLVM = true; }) (p: [])`. 89 + 90 - `pkgs.emacsPackages.orgPackages` is removed because org elpa is deprecated. 91 The packages in the top level of `pkgs.emacsPackages`, such as org and 92 org-contrib, refer to the ones in `pkgs.emacsPackages.elpaPackages` and ··· 110 111 - The `writers.writePython2` and corresponding `writers.writePython2Bin` convenience functions to create executable Python 2 scripts in the store were removed in preparation of removal of the Python 2 interpreter. 112 Scripts have to be converted to Python 3 for use with `writers.writePython3` or `writers.writePyPy2` needs to be used. 113 + 114 + - `buildGoModule` was updated to use `go_1_17`, third party derivations that specify >= go 1.17 in the main `go.mod` will need to regenerate their `vendorSha256` hash. 115 116 - The `gnome-passwordsafe` package updated to [version 6.x](https://gitlab.gnome.org/World/secrets/-/tags/6.0) and renamed to `gnome-secrets`. 117
-1
nixos/modules/module-list.nix
··· 1075 ./services/web-servers/phpfpm/default.nix 1076 ./services/web-servers/pomerium.nix 1077 ./services/web-servers/unit/default.nix 1078 - ./services/web-servers/shellinabox.nix 1079 ./services/web-servers/tomcat.nix 1080 ./services/web-servers/traefik.nix 1081 ./services/web-servers/trafficserver/default.nix
··· 1075 ./services/web-servers/phpfpm/default.nix 1076 ./services/web-servers/pomerium.nix 1077 ./services/web-servers/unit/default.nix 1078 ./services/web-servers/tomcat.nix 1079 ./services/web-servers/traefik.nix 1080 ./services/web-servers/trafficserver/default.nix
+36 -4
nixos/modules/programs/command-not-found/command-not-found.pl
··· 21 "select package from Programs where system = ? and name = ?", 22 { Slice => {} }, $system, $program); 23 24 - if (!defined $res || scalar @$res == 0) { 25 print STDERR "$program: command not found\n"; 26 - } elsif (scalar @$res == 1) { 27 my $package = @$res[0]->{package}; 28 if ($ENV{"NIX_AUTO_RUN"} // "") { 29 exec("nix-shell", "-p", $package, "--run", shell_quote("exec", @ARGV)); 30 } else { 31 print STDERR <<EOF; ··· 35 EOF 36 } 37 } else { 38 - print STDERR <<EOF; 39 The program '$program' is not in your PATH. It is provided by several packages. 40 You can make it available in an ephemeral shell by typing one of the following: 41 EOF 42 - print STDERR " nix-shell -p $_->{package}\n" foreach @$res; 43 } 44 45 exit 127;
··· 21 "select package from Programs where system = ? and name = ?", 22 { Slice => {} }, $system, $program); 23 24 + my $len = !defined $res ? 0 : scalar @$res; 25 + 26 + if ($len == 0) { 27 print STDERR "$program: command not found\n"; 28 + } elsif ($len == 1) { 29 my $package = @$res[0]->{package}; 30 if ($ENV{"NIX_AUTO_RUN"} // "") { 31 + if ($ENV{"NIX_AUTO_RUN_INTERACTIVE"} // "") { 32 + while (1) { 33 + print STDERR "'$program' from package '$package' will be run, confirm? [yn]: "; 34 + chomp(my $comfirm = <STDIN>); 35 + if (lc $comfirm eq "n") { 36 + exit 0; 37 + } elsif (lc $comfirm eq "y") { 38 + last; 39 + } 40 + } 41 + } 42 exec("nix-shell", "-p", $package, "--run", shell_quote("exec", @ARGV)); 43 } else { 44 print STDERR <<EOF; ··· 48 EOF 49 } 50 } else { 51 + if ($ENV{"NIX_AUTO_RUN"} // "") { 52 + print STDERR "Select a package that provides '$program':\n"; 53 + for my $i (0 .. $len - 1) { 54 + print STDERR " [", $i + 1, "]: @$res[$i]->{package}\n"; 55 + } 56 + my $choice = 0; 57 + while (1) { # exec will break this loop 58 + no warnings "numeric"; 59 + print STDERR "Your choice [1-${len}]: "; 60 + # 0 can be invalid user input like non-number string 61 + # so we start from 1 62 + $choice = <STDIN> + 0; 63 + if (1 <= $choice && $choice <= $len) { 64 + exec("nix-shell", "-p", @$res[$choice - 1]->{package}, 65 + "--run", shell_quote("exec", @ARGV)); 66 + } 67 + } 68 + } else { 69 + print STDERR <<EOF; 70 The program '$program' is not in your PATH. It is provided by several packages. 71 You can make it available in an ephemeral shell by typing one of the following: 72 EOF 73 + print STDERR " nix-shell -p $_->{package}\n" foreach @$res; 74 + } 75 } 76 77 exit 127;
+2
nixos/modules/rename.nix
··· 88 The racoon module has been removed, because the software project was abandoned upstream. 89 '') 90 91 # Do NOT add any option renames here, see top of the file 92 ]; 93 }
··· 88 The racoon module has been removed, because the software project was abandoned upstream. 89 '') 90 91 + (mkRemovedOptionModule [ "services" "shellinabox" ] "The corresponding package was removed from nixpkgs.") 92 + 93 # Do NOT add any option renames here, see top of the file 94 ]; 95 }
+2 -1
nixos/modules/services/hardware/udev.nix
··· 317 (isYes "NET") 318 ]; 319 320 - boot.extraModprobeConfig = "options firmware_class path=${config.hardware.firmware}/lib/firmware"; 321 322 system.activationScripts.udevd = 323 ''
··· 317 (isYes "NET") 318 ]; 319 320 + # We don't place this into `extraModprobeConfig` so that stage-1 ramdisk doesn't bloat. 321 + environment.etc."modprobe.d/firmware.conf".text = "options firmware_class path=${config.hardware.firmware}/lib/firmware"; 322 323 system.activationScripts.udevd = 324 ''
+1
nixos/modules/services/misc/autorandr.nix
··· 43 ExecStart = "${pkgs.autorandr}/bin/autorandr --batch --change --default ${cfg.defaultTarget}"; 44 Type = "oneshot"; 45 RemainAfterExit = false; 46 }; 47 }; 48
··· 43 ExecStart = "${pkgs.autorandr}/bin/autorandr --batch --change --default ${cfg.defaultTarget}"; 44 Type = "oneshot"; 45 RemainAfterExit = false; 46 + KillMode = "process"; 47 }; 48 }; 49
+4 -2
nixos/modules/services/misc/packagekit.nix
··· 13 (iniFmt.generate "PackageKit.conf" (recursiveUpdate 14 { 15 Daemon = { 16 - DefaultBackend = "test_nop"; 17 KeepCache = false; 18 }; 19 } ··· 35 in 36 { 37 imports = [ 38 - (mkRemovedOptionModule [ "services" "packagekit" "backend" ] "The only backend that doesn't blow up is `test_nop`.") 39 ]; 40 41 options.services.packagekit = { ··· 61 config = mkIf cfg.enable { 62 63 services.dbus.packages = with pkgs; [ packagekit ]; 64 65 systemd.packages = with pkgs; [ packagekit ]; 66
··· 13 (iniFmt.generate "PackageKit.conf" (recursiveUpdate 14 { 15 Daemon = { 16 + DefaultBackend = "nix"; 17 KeepCache = false; 18 }; 19 } ··· 35 in 36 { 37 imports = [ 38 + (mkRemovedOptionModule [ "services" "packagekit" "backend" ] "Always set to Nix.") 39 ]; 40 41 options.services.packagekit = { ··· 61 config = mkIf cfg.enable { 62 63 services.dbus.packages = with pkgs; [ packagekit ]; 64 + 65 + environment.systemPackages = with pkgs; [ packagekit ]; 66 67 systemd.packages = with pkgs; [ packagekit ]; 68
+1 -1
nixos/modules/services/networking/firewall.nix
··· 326 type = types.package; 327 default = pkgs.iptables; 328 defaultText = literalExpression "pkgs.iptables"; 329 - example = literalExpression "pkgs.iptables-nftables-compat"; 330 description = 331 '' 332 The iptables package to use for running the firewall service."
··· 326 type = types.package; 327 default = pkgs.iptables; 328 defaultText = literalExpression "pkgs.iptables"; 329 + example = literalExpression "pkgs.iptables-legacy"; 330 description = 331 '' 332 The iptables package to use for running the firewall service."
+1 -1
nixos/modules/services/system/cloud-init.nix
··· 143 "sshd.service" "sshd-keygen.service" ]; 144 after = [ "network-online.target" "cloud-init-local.service" ]; 145 before = [ "sshd.service" "sshd-keygen.service" ]; 146 - requires = [ "network.target "]; 147 path = path; 148 serviceConfig = 149 { Type = "oneshot";
··· 143 "sshd.service" "sshd-keygen.service" ]; 144 after = [ "network-online.target" "cloud-init-local.service" ]; 145 before = [ "sshd.service" "sshd-keygen.service" ]; 146 + requires = [ "network.target"]; 147 path = path; 148 serviceConfig = 149 { Type = "oneshot";
-122
nixos/modules/services/web-servers/shellinabox.nix
··· 1 - { config, lib, pkgs, ... }: 2 - 3 - with lib; 4 - 5 - let 6 - 7 - cfg = config.services.shellinabox; 8 - 9 - # If a certificate file is specified, shellinaboxd requires 10 - # a file descriptor to retrieve it 11 - fd = "3"; 12 - createFd = optionalString (cfg.certFile != null) "${fd}<${cfg.certFile}"; 13 - 14 - # Command line arguments for the shellinabox daemon 15 - args = [ "--background" ] 16 - ++ optional (! cfg.enableSSL) "--disable-ssl" 17 - ++ optional (cfg.certFile != null) "--cert-fd=${fd}" 18 - ++ optional (cfg.certDirectory != null) "--cert=${cfg.certDirectory}" 19 - ++ cfg.extraOptions; 20 - 21 - # Command to start shellinaboxd 22 - cmd = "${pkgs.shellinabox}/bin/shellinaboxd ${concatStringsSep " " args}"; 23 - 24 - # Command to start shellinaboxd if certFile is specified 25 - wrappedCmd = "${pkgs.bash}/bin/bash -c 'exec ${createFd} && ${cmd}'"; 26 - 27 - in 28 - 29 - { 30 - 31 - ###### interface 32 - 33 - options = { 34 - services.shellinabox = { 35 - enable = mkEnableOption "shellinabox daemon"; 36 - 37 - user = mkOption { 38 - type = types.str; 39 - default = "root"; 40 - description = '' 41 - User to run shellinaboxd as. If started as root, the server drops 42 - privileges by changing to nobody, unless overridden by the 43 - <literal>--user</literal> option. 44 - ''; 45 - }; 46 - 47 - enableSSL = mkOption { 48 - type = types.bool; 49 - default = false; 50 - description = '' 51 - Whether or not to enable SSL (https) support. 52 - ''; 53 - }; 54 - 55 - certDirectory = mkOption { 56 - type = types.nullOr types.path; 57 - default = null; 58 - example = "/var/certs"; 59 - description = '' 60 - The daemon will look in this directory far any certificates. 61 - If the browser negotiated a Server Name Identification the daemon 62 - will look for a matching certificate-SERVERNAME.pem file. If no SNI 63 - handshake takes place, it will fall back on using the certificate in the 64 - certificate.pem file. 65 - 66 - If no suitable certificate is installed, shellinaboxd will attempt to 67 - create a new self-signed certificate. This will only succeed if, after 68 - dropping privileges, shellinaboxd has write permissions for this 69 - directory. 70 - ''; 71 - }; 72 - 73 - certFile = mkOption { 74 - type = types.nullOr types.path; 75 - default = null; 76 - example = "/var/certificate.pem"; 77 - description = "Path to server SSL certificate."; 78 - }; 79 - 80 - extraOptions = mkOption { 81 - type = types.listOf types.str; 82 - default = [ ]; 83 - example = [ "--port=443" "--service /:LOGIN" ]; 84 - description = '' 85 - A list of strings to be appended to the command line arguments 86 - for shellinaboxd. Please see the manual page 87 - <link xlink:href="https://code.google.com/p/shellinabox/wiki/shellinaboxd_man"/> 88 - for a full list of available arguments. 89 - ''; 90 - }; 91 - 92 - }; 93 - }; 94 - 95 - ###### implementation 96 - 97 - config = mkIf cfg.enable { 98 - 99 - assertions = 100 - [ { assertion = cfg.enableSSL == true 101 - -> cfg.certDirectory != null || cfg.certFile != null; 102 - message = "SSL is enabled for shellinabox, but no certDirectory or certFile has been specefied."; } 103 - { assertion = ! (cfg.certDirectory != null && cfg.certFile != null); 104 - message = "Cannot set both certDirectory and certFile for shellinabox."; } 105 - ]; 106 - 107 - systemd.services.shellinaboxd = { 108 - description = "Shellinabox Web Server Daemon"; 109 - 110 - wantedBy = [ "multi-user.target" ]; 111 - requires = [ "sshd.service" ]; 112 - after = [ "sshd.service" ]; 113 - 114 - serviceConfig = { 115 - Type = "forking"; 116 - User = "${cfg.user}"; 117 - ExecStart = "${if cfg.certFile == null then "${cmd}" else "${wrappedCmd}"}"; 118 - ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID"; 119 - }; 120 - }; 121 - }; 122 - }
···
+3
nixos/modules/system/boot/stage-1.nix
··· 350 ''; 351 symlink = "/etc/modprobe.d/ubuntu.conf"; 352 } 353 { object = pkgs.kmod-debian-aliases; 354 symlink = "/etc/modprobe.d/debian.conf"; 355 }
··· 350 ''; 351 symlink = "/etc/modprobe.d/ubuntu.conf"; 352 } 353 + { object = config.environment.etc."modprobe.d/nixos.conf".source; 354 + symlink = "/etc/modprobe.d/nixos.conf"; 355 + } 356 { object = pkgs.kmod-debian-aliases; 357 symlink = "/etc/modprobe.d/debian.conf"; 358 }
+10 -8
pkgs/applications/audio/easyeffects/default.nix
··· 4 , fetchFromGitHub 5 , calf 6 , fftwFloat 7 , glib 8 - , glibmm 9 , gtk4 10 - , gtkmm4 11 , itstool 12 , libbs2b 13 , libebur128 14 , libsamplerate 15 , libsndfile 16 , lilv 17 , lsp-plugins ··· 26 , rnnoise 27 , rubberband 28 , speexdsp 29 , wrapGAppsHook4 30 , zam-plugins 31 , zita-convolver ··· 33 34 stdenv.mkDerivation rec { 35 pname = "easyeffects"; 36 - version = "6.1.3"; 37 38 src = fetchFromGitHub { 39 owner = "wwmm"; 40 repo = "easyeffects"; 41 rev = "v${version}"; 42 - sha256 = "sha256-1UfeqPJxY4YT98UdqTZtG+QUBOZlKfK+7WbszhO22A0="; 43 }; 44 45 nativeBuildInputs = [ ··· 54 55 buildInputs = [ 56 fftwFloat 57 glib 58 - glibmm 59 gtk4 60 - gtkmm4 61 libbs2b 62 libebur128 63 libsamplerate 64 libsndfile 65 lilv 66 lv2 ··· 69 rnnoise 70 rubberband 71 speexdsp 72 zita-convolver 73 ]; 74 75 postPatch = '' 76 chmod +x meson_post_install.py 77 patchShebangs meson_post_install.py 78 - # https://github.com/wwmm/easyeffects/pull/1205 79 - substituteInPlace meson_post_install.py --replace "gtk-update-icon-cache" "gtk4-update-icon-cache" 80 ''; 81 82 preFixup =
··· 4 , fetchFromGitHub 5 , calf 6 , fftwFloat 7 + , fmt 8 , glib 9 , gtk4 10 , itstool 11 + , libadwaita 12 , libbs2b 13 , libebur128 14 , libsamplerate 15 + , libsigcxx30 16 , libsndfile 17 , lilv 18 , lsp-plugins ··· 27 , rnnoise 28 , rubberband 29 , speexdsp 30 + , tbb 31 , wrapGAppsHook4 32 , zam-plugins 33 , zita-convolver ··· 35 36 stdenv.mkDerivation rec { 37 pname = "easyeffects"; 38 + version = "6.2.3"; 39 40 src = fetchFromGitHub { 41 owner = "wwmm"; 42 repo = "easyeffects"; 43 rev = "v${version}"; 44 + sha256 = "sha256-A1UanrAbmZFGCmDNIr1h+v5RVMsIl4qgM/veBirudQM="; 45 }; 46 47 nativeBuildInputs = [ ··· 56 57 buildInputs = [ 58 fftwFloat 59 + fmt 60 glib 61 gtk4 62 + libadwaita 63 libbs2b 64 libebur128 65 libsamplerate 66 + libsigcxx30 67 libsndfile 68 lilv 69 lv2 ··· 72 rnnoise 73 rubberband 74 speexdsp 75 + tbb 76 zita-convolver 77 ]; 78 79 postPatch = '' 80 chmod +x meson_post_install.py 81 patchShebangs meson_post_install.py 82 ''; 83 84 preFixup =
+64
pkgs/applications/audio/jamesdsp/default.nix
···
··· 1 + { lib 2 + , mkDerivation 3 + , fetchFromGitHub 4 + , pipewire 5 + , glibmm 6 + , qmake 7 + , makeDesktopItem 8 + , pkg-config 9 + , libarchive 10 + , fetchpatch 11 + }: 12 + 13 + mkDerivation rec{ 14 + pname = "jamesdsp"; 15 + version = "2.3"; 16 + src = fetchFromGitHub rec{ 17 + owner = "Audio4Linux"; 18 + repo = "JDSP4Linux"; 19 + fetchSubmodules = true; 20 + rev = version; 21 + hash = "sha256-Hkzurr+s+vvSyOMCYH9kHI+nIm6mL9yORGNzY2FXslc="; 22 + }; 23 + 24 + patches = [ 25 + # fixing /usr install assumption, remove on version bump 26 + (fetchpatch { 27 + url = "https://github.com/Audio4Linux/JDSP4Linux/commit/003c9e9fc426f83e269aed6e05be3ed55273931a.patch"; 28 + hash = "sha256-crll/a7C9pUq9eL5diq8/YgC5bNC6SrdijZEBxZpJ8E="; 29 + }) 30 + ]; 31 + 32 + nativeBuildInputs = [ qmake pkg-config ]; 33 + buildInputs = [ 34 + glibmm 35 + libarchive 36 + pipewire 37 + ]; 38 + 39 + desktopItems = [ 40 + (makeDesktopItem { 41 + name = "jamesdsp.desktop"; 42 + desktopName = "JamesDSP"; 43 + genericName = "Audio effects processor"; 44 + exec = "jamesdsp"; 45 + icon = "jamesdsp"; 46 + comment = "JamesDSP for Linux"; 47 + categories = "AudioVideo;Audio"; 48 + startupNotify = false; 49 + terminal = false; 50 + type = "Application"; 51 + extraDesktopEntries = { 52 + Keywords = "equalizer;audio;effect"; 53 + }; 54 + }) 55 + ]; 56 + 57 + meta = with lib;{ 58 + description = "An audio effect processor for PipeWire clients"; 59 + homepage = "https://github.com/Audio4Linux/JDSP4Linux"; 60 + license = licenses.gpl3Only; 61 + maintainers = with maintainers;[ pasqui23 ]; 62 + platforms = platforms.linux; 63 + }; 64 + }
+29
pkgs/applications/blockchains/besu/default.nix
···
··· 1 + { lib, stdenv, fetchurl, makeWrapper, jre }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "besu"; 5 + version = "21.10.8"; 6 + 7 + src = fetchurl { 8 + url = "https://hyperledger.jfrog.io/artifactory/${pname}-binaries/${pname}/${version}/${pname}-${version}.tar.gz"; 9 + sha256 = "sha256-0yXi42vDinB6nuv5IGj1AhYGqMa2Rku0tNWQCO+AFPw="; 10 + }; 11 + 12 + nativeBuildInputs = [ makeWrapper ]; 13 + 14 + installPhase = '' 15 + mkdir -p $out/bin 16 + cp -r bin $out/ 17 + mkdir -p $out/lib 18 + cp -r lib $out/ 19 + wrapProgram $out/bin/${pname} --set JAVA_HOME "${jre}" 20 + ''; 21 + 22 + meta = with lib; { 23 + description = "An enterprise-grade Java-based, Apache 2.0 licensed Ethereum client"; 24 + homepage = "https://www.hyperledger.org/projects/besu"; 25 + license = licenses.asl20; 26 + platforms = platforms.all; 27 + maintainers = with maintainers; [ mmahut ]; 28 + }; 29 + }
+2 -2
pkgs/applications/blockchains/btcpayserver/default.nix
··· 3 4 buildDotnetModule rec { 5 pname = "btcpayserver"; 6 - version = "1.4.3"; 7 8 src = fetchFromGitHub { 9 owner = pname; 10 repo = pname; 11 rev = "v${version}"; 12 - sha256 = "sha256-CMa0+Djx07q77W/ezMhU+JP5EPXz4nfZ35TN8O6R/nc="; 13 }; 14 15 projectFile = "BTCPayServer/BTCPayServer.csproj";
··· 3 4 buildDotnetModule rec { 5 pname = "btcpayserver"; 6 + version = "1.4.4"; 7 8 src = fetchFromGitHub { 9 owner = pname; 10 repo = pname; 11 rev = "v${version}"; 12 + sha256 = "sha256-PW5a1Bw21skpboWDtlZHGWtFwfImznD7nYI92RT7GGQ="; 13 }; 14 15 projectFile = "BTCPayServer/BTCPayServer.csproj";
+2 -2
pkgs/applications/blockchains/ledger-live-desktop/default.nix
··· 2 3 let 4 pname = "ledger-live-desktop"; 5 - version = "2.37.2"; 6 name = "${pname}-${version}"; 7 8 src = fetchurl { 9 url = "https://github.com/LedgerHQ/${pname}/releases/download/v${version}/${pname}-${version}-linux-x86_64.AppImage"; 10 - hash = "sha256-etbMd0qUAsd5B3QH+DBVI9QLROjZXkGr4sAUlO8cRek="; 11 }; 12 13 appimageContents = appimageTools.extractType2 {
··· 2 3 let 4 pname = "ledger-live-desktop"; 5 + version = "2.38.2"; 6 name = "${pname}-${version}"; 7 8 src = fetchurl { 9 url = "https://github.com/LedgerHQ/${pname}/releases/download/v${version}/${pname}-${version}-linux-x86_64.AppImage"; 10 + hash = "sha256-k6Rbxpe5BpRmlE+WL7iiFUtRCs5KlrLH2c3iSucUhqo="; 11 }; 12 13 appimageContents = appimageTools.extractType2 {
+3 -3
pkgs/applications/blockchains/lightning-loop/default.nix
··· 5 6 buildGoModule rec { 7 pname = "lightning-loop"; 8 - version = "0.16.0-beta"; 9 10 src = fetchFromGitHub { 11 owner = "lightninglabs"; 12 repo = "loop"; 13 rev = "v${version}"; 14 - sha256 = "0q4lk338mr30frilgnjr43gd55z7ryj2s260437b4pnp03hmbf10"; 15 }; 16 17 - vendorSha256 = "14862603rrss14p537j9i7iwflaaprwrnslmqm9hpb7hj52bxqfv"; 18 19 subPackages = [ "cmd/loop" "cmd/loopd" ]; 20
··· 5 6 buildGoModule rec { 7 pname = "lightning-loop"; 8 + version = "0.17.0-beta"; 9 10 src = fetchFromGitHub { 11 owner = "lightninglabs"; 12 repo = "loop"; 13 rev = "v${version}"; 14 + sha256 = "0hjawagn1dfgj67i52bvf3phvm9f9708z3jqs6cvyz0w7vp107py"; 15 }; 16 17 + vendorSha256 = "1fpc73hwdn3baz5ykrykvqdr5861gj9p6liy8qll5525kdv560f6"; 18 19 subPackages = [ "cmd/loop" "cmd/loopd" ]; 20
+2 -2
pkgs/applications/editors/android-studio/default.nix
··· 9 inherit buildFHSUserEnv; 10 }; 11 stableVersion = { 12 - version = "2021.1.1.20"; # "Android Studio Bumblebee (2021.1.1)" 13 - sha256Hash = "LwG5IDJBFpdlspDoTNpbi1togri2fvEOEDbkkiYvrJE="; 14 }; 15 betaVersion = { 16 version = "2021.2.1.8"; # "Android Studio Chipmunk (2021.2.1) Beta 1"
··· 9 inherit buildFHSUserEnv; 10 }; 11 stableVersion = { 12 + version = "2021.1.1.21"; # "Android Studio Bumblebee (2021.1.1 Patch 1)" 13 + sha256Hash = "PeMJIILfaunTlpR4EV76qQlTlZDcWoKes61qe9W9oqQ="; 14 }; 15 betaVersion = { 16 version = "2021.2.1.8"; # "Android Studio Chipmunk (2021.2.1) Beta 1"
+3 -3
pkgs/applications/editors/jetbrains/common.nix
··· 82 libnotify 83 ] ++ extraLdPath)}" \ 84 ${lib.concatStringsSep " " extraWrapperArgs} \ 85 - --set JDK_HOME "$jdk" \ 86 --set ${hiName}_JDK "$jdk" \ 87 - --set ANDROID_JAVA_HOME "$jdk" \ 88 - --set JAVA_HOME "$jdk" \ 89 --set ${hiName}_VM_OPTIONS ${vmoptsFile} 90 91 ln -s "$item/share/applications" $out/share
··· 82 libnotify 83 ] ++ extraLdPath)}" \ 84 ${lib.concatStringsSep " " extraWrapperArgs} \ 85 + --set-default JDK_HOME "$jdk" \ 86 + --set-default ANDROID_JAVA_HOME "$jdk" \ 87 + --set-default JAVA_HOME "$jdk" \ 88 --set ${hiName}_JDK "$jdk" \ 89 --set ${hiName}_VM_OPTIONS ${vmoptsFile} 90 91 ln -s "$item/share/applications" $out/share
+7 -2
pkgs/applications/finance/odoo/default.nix
··· 5 , python3Packages 6 , nodePackages 7 , wkhtmltopdf 8 }: 9 10 with python3Packages; 11 12 buildPythonApplication rec { 13 pname = "odoo"; 14 15 major = "15"; 16 minor = "0"; 17 - patch = "20211029"; 18 19 version = "${major}.${minor}.${patch}"; 20 ··· 22 src = fetchurl { 23 url = "https://nightly.odoo.com/${major}.${minor}/nightly/src/odoo_${version}.tar.gz"; 24 name = "${pname}-${version}"; 25 - sha256 = "sha256-/E+bLBbiz7fRyTwP+0AMpqbuRkOpE4B4P6kREIB4m1Q="; 26 }; 27 28 nativeBuildInputs = [
··· 5 , python3Packages 6 , nodePackages 7 , wkhtmltopdf 8 + , callPackage 9 }: 10 11 with python3Packages; 12 + 13 + let 14 + werkzeug = python3Packages.callPackage ../../../development/python-modules/werkzeug/1.nix {}; 15 + in 16 17 buildPythonApplication rec { 18 pname = "odoo"; 19 20 major = "15"; 21 minor = "0"; 22 + patch = "20220126"; 23 24 version = "${major}.${minor}.${patch}"; 25 ··· 27 src = fetchurl { 28 url = "https://nightly.odoo.com/${major}.${minor}/nightly/src/odoo_${version}.tar.gz"; 29 name = "${pname}-${version}"; 30 + hash = "sha256-mofV0mNCdyzJecp0XegZBR/5NzHjis9kbpsUA/KJbZg="; 31 }; 32 33 nativeBuildInputs = [
+1 -1
pkgs/applications/misc/dbeaver/default.nix
··· 52 dontFixup = true; 53 outputHashAlgo = "sha256"; 54 outputHashMode = "recursive"; 55 - outputHash = "sha256-pfYNHue7tZKYgU16kypZEfr2bXuDoPc4KorIAVjSylo="; 56 }; 57 58 nativeBuildInputs = [
··· 52 dontFixup = true; 53 outputHashAlgo = "sha256"; 54 outputHashMode = "recursive"; 55 + outputHash = "sha256-fJs/XM8PZqm/CrhShtcy4R/4s8dCc1WdXIvYSCYZ4dw="; 56 }; 57 58 nativeBuildInputs = [
+2 -2
pkgs/applications/misc/gpxsee/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "gpxsee"; 5 - version = "10.1"; 6 7 src = fetchFromGitHub { 8 owner = "tumic0"; 9 repo = "GPXSee"; 10 rev = version; 11 - sha256 = "sha256-tU37dKBxzz+sxe4R7xbscpD28if8QOm6xpZEOdhK8lE="; 12 }; 13 14 patches = (substituteAll {
··· 2 3 stdenv.mkDerivation rec { 4 pname = "gpxsee"; 5 + version = "10.3"; 6 7 src = fetchFromGitHub { 8 owner = "tumic0"; 9 repo = "GPXSee"; 10 rev = version; 11 + sha256 = "sha256-rKUj2XeVI2KdyCinwqipINg9OO0IhCSFBjSeYBSMLcQ="; 12 }; 13 14 patches = (substituteAll {
+5 -10
pkgs/applications/misc/megacmd/default.nix
··· 1 { lib 2 , stdenv 3 , autoconf 4 - , automake115x 5 , c-ares 6 , cryptopp 7 , curl ··· 25 26 stdenv.mkDerivation rec { 27 pname = "megacmd"; 28 - version = "1.4.0"; 29 30 src = fetchFromGitHub { 31 owner = "meganz"; 32 repo = "MEGAcmd"; 33 rev = "${version}_Linux"; 34 - sha256 = "sha256-Q1SZSDTPGgBA/W/ZVYfTQsiP41RE1LJ+esQ3PK9EjIc="; 35 fetchSubmodules = true; 36 }; 37 38 - nativeBuildInputs = [ 39 - autoconf 40 - automake115x 41 - libtool 42 - pkg-config 43 - ]; 44 45 buildInputs = [ 46 c-ares ··· 82 83 meta = with lib; { 84 description = "MEGA Command Line Interactive and Scriptable Application"; 85 - homepage = "https://mega.nz/cmd"; 86 license = with licenses; [ bsd2 gpl3Only ]; 87 platforms = [ "i686-linux" "x86_64-linux" ]; 88 maintainers = with maintainers; [ lunik1 ];
··· 1 { lib 2 , stdenv 3 , autoconf 4 + , automake 5 , c-ares 6 , cryptopp 7 , curl ··· 25 26 stdenv.mkDerivation rec { 27 pname = "megacmd"; 28 + version = "1.5.0"; 29 30 src = fetchFromGitHub { 31 owner = "meganz"; 32 repo = "MEGAcmd"; 33 rev = "${version}_Linux"; 34 + sha256 = "Y/FkbN9mTuBpcKCSQg0M+3/IPzJ58X4iZhX2kMVDv7A="; 35 fetchSubmodules = true; 36 }; 37 38 + nativeBuildInputs = [ autoconf automake libtool pkg-config ]; 39 40 buildInputs = [ 41 c-ares ··· 77 78 meta = with lib; { 79 description = "MEGA Command Line Interactive and Scriptable Application"; 80 + homepage = "https://mega.io/cmd"; 81 license = with licenses; [ bsd2 gpl3Only ]; 82 platforms = [ "i686-linux" "x86_64-linux" ]; 83 maintainers = with maintainers; [ lunik1 ];
+2 -2
pkgs/applications/misc/osmium-tool/default.nix
··· 14 15 stdenv.mkDerivation rec { 16 pname = "osmium-tool"; 17 - version = "1.13.2"; 18 19 src = fetchFromGitHub { 20 owner = "osmcode"; 21 repo = "osmium-tool"; 22 rev = "v${version}"; 23 - sha256 = "sha256-dLYmY2bS+DycYBLZdLw8CsRIIE8EfDJEx6RZ/r9yMS8="; 24 }; 25 26 nativeBuildInputs = [
··· 14 15 stdenv.mkDerivation rec { 16 pname = "osmium-tool"; 17 + version = "1.14.0"; 18 19 src = fetchFromGitHub { 20 owner = "osmcode"; 21 repo = "osmium-tool"; 22 rev = "v${version}"; 23 + sha256 = "sha256-xedunFzar44o+b/45isXWacDcC81wWkxgGwnpLPH/n0="; 24 }; 25 26 nativeBuildInputs = [
+2 -2
pkgs/applications/misc/pdfsam-basic/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "pdfsam-basic"; 5 - version = "4.2.10"; 6 7 src = fetchurl { 8 url = "https://github.com/torakiki/pdfsam/releases/download/v${version}/pdfsam_${version}-1_amd64.deb"; 9 - sha256 = "sha256-YxUozMrsR65A7+xeerMaYxkGALobG1wLguWGZnoQYcU="; 10 }; 11 12 unpackPhase = ''
··· 2 3 stdenv.mkDerivation rec { 4 pname = "pdfsam-basic"; 5 + version = "4.2.12"; 6 7 src = fetchurl { 8 url = "https://github.com/torakiki/pdfsam/releases/download/v${version}/pdfsam_${version}-1_amd64.deb"; 9 + sha256 = "sha256-B9V3dw5A52yPoNfROI3+wAql+Y0hY4T3sTm9uN70TQQ="; 10 }; 11 12 unpackPhase = ''
+2 -2
pkgs/applications/misc/rofi-file-browser/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "rofi-file-browser-extended"; 5 - version = "1.3.0"; 6 7 src = fetchFromGitHub { 8 owner = "marvinkreis"; 9 repo = pname; 10 rev = version; 11 - sha256 = "sha256-TNAAImQaIJRgvD8kFf2oHNj4bQiq1NhD8KkCgW5dSK8="; 12 fetchSubmodules = true; 13 }; 14
··· 2 3 stdenv.mkDerivation rec { 4 pname = "rofi-file-browser-extended"; 5 + version = "1.3.1"; 6 7 src = fetchFromGitHub { 8 owner = "marvinkreis"; 9 repo = pname; 10 rev = version; 11 + sha256 = "sha256-UEFv0skFzWhgFkmz1h8uV1ygW977zNq1Dw8VAawqUgw="; 12 fetchSubmodules = true; 13 }; 14
+2 -2
pkgs/applications/misc/spicetify-cli/default.nix
··· 2 3 buildGoModule rec { 4 pname = "spicetify-cli"; 5 - version = "2.8.5"; 6 7 src = fetchFromGitHub { 8 owner = "khanhas"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-cCIlKTHo+LyhIZkN6ncggBvZMwDBgXqDJVAfGWbUtj8="; 12 }; 13 14 vendorSha256 = "sha256-g0RYIVIq4oMXdRZDBDnVYg7ombN5WEo/6O9hChQvOYs=";
··· 2 3 buildGoModule rec { 4 pname = "spicetify-cli"; 5 + version = "2.9.0"; 6 7 src = fetchFromGitHub { 8 owner = "khanhas"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-PHKmrLN/JVPqefcK1FQByPWvMzNxHG5htXzgZ1D+Eds="; 12 }; 13 14 vendorSha256 = "sha256-g0RYIVIq4oMXdRZDBDnVYg7ombN5WEo/6O9hChQvOYs=";
+2 -1
pkgs/applications/misc/subsurface/default.nix
··· 20 inherit version; 21 22 src = subsurfaceSrc; 23 - sourceRoot = "source/libdivecomputer"; 24 25 nativeBuildInputs = [ autoreconfHook ]; 26
··· 20 inherit version; 21 22 src = subsurfaceSrc; 23 + 24 + prePatch = "cd libdivecomputer"; 25 26 nativeBuildInputs = [ autoreconfHook ]; 27
+2 -10
pkgs/applications/networking/browsers/falkon/default.nix
··· 8 9 mkDerivation rec { 10 pname = "falkon"; 11 - version = "3.1.0"; 12 13 src = fetchFromGitHub { 14 owner = "KDE"; 15 repo = "falkon"; 16 rev = "v${version}"; 17 - sha256 = "1w64slh9wpcfi4v7ds9wci1zvwh0dh787ndpi6hd4kmdgnswvsw7"; 18 }; 19 - 20 - patches = [ 21 - # fixes build with qt5 5.14 22 - (fetchpatch { 23 - url = "https://github.com/KDE/falkon/commit/bbde5c6955c43bc744ed2c4024598495de908f2a.diff"; 24 - sha256 = "0f7qcddvvdnij3di0acg7jwvwfwyd0xizlav4wccclbj8x7qp5ld"; 25 - }) 26 - ]; 27 28 preConfigure = '' 29 export NONBLOCK_JS_DIALOGS=true
··· 8 9 mkDerivation rec { 10 pname = "falkon"; 11 + version = "3.2.0"; 12 13 src = fetchFromGitHub { 14 owner = "KDE"; 15 repo = "falkon"; 16 rev = "v${version}"; 17 + sha256 = "sha256-esi9YWd1PtQpDBhI1NtWEjZIoMoNUpAF+kQad67mLzE="; 18 }; 19 20 preConfigure = '' 21 export NONBLOCK_JS_DIALOGS=true
+393 -393
pkgs/applications/networking/browsers/firefox-bin/release_sources.nix
··· 1 { 2 - version = "96.0.3"; 3 sources = [ 4 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/ach/firefox-96.0.3.tar.bz2"; 5 locale = "ach"; 6 arch = "linux-x86_64"; 7 - sha256 = "aee9a5f570fec2c8c0566f70673a6db1f60a92bb2c165ceb30f434b0dcf1a65b"; 8 } 9 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/af/firefox-96.0.3.tar.bz2"; 10 locale = "af"; 11 arch = "linux-x86_64"; 12 - sha256 = "f929516c277cfb2d45100e677ed9dd200f8b3a09166455f39c2474bad7cc4d74"; 13 } 14 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/an/firefox-96.0.3.tar.bz2"; 15 locale = "an"; 16 arch = "linux-x86_64"; 17 - sha256 = "daee2330478c036da51128c1f32d372b73b5400c8c0f261d50bfd821456042c5"; 18 } 19 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/ar/firefox-96.0.3.tar.bz2"; 20 locale = "ar"; 21 arch = "linux-x86_64"; 22 - sha256 = "51549041ec1cbf2e0caea181f4468f46d15dd1a7b6a620e359f6de533118f8af"; 23 } 24 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/ast/firefox-96.0.3.tar.bz2"; 25 locale = "ast"; 26 arch = "linux-x86_64"; 27 - sha256 = "6cbce2293f1982e3e1cc993104a46f3093bec3f420af9ea561eb2601776b9cf6"; 28 } 29 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/az/firefox-96.0.3.tar.bz2"; 30 locale = "az"; 31 arch = "linux-x86_64"; 32 - sha256 = "45ba4e47ef4a32d4a8daa7b873a3658de2ebe88532f33af2fead1619939c8294"; 33 } 34 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/be/firefox-96.0.3.tar.bz2"; 35 locale = "be"; 36 arch = "linux-x86_64"; 37 - sha256 = "58666c9b75862076b00144de96bbcdd8b0b3a5bf5bd0895065fb38d3c12a30ac"; 38 } 39 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/bg/firefox-96.0.3.tar.bz2"; 40 locale = "bg"; 41 arch = "linux-x86_64"; 42 - sha256 = "4ff97af116eb450edbb2a4c2d9864da3c0b07c5f6913f198b905779f2be48f98"; 43 } 44 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/bn/firefox-96.0.3.tar.bz2"; 45 locale = "bn"; 46 arch = "linux-x86_64"; 47 - sha256 = "bda665d796fe62524f1d1c96afc4c8da569e9b264895a26aaeb20bab7c2f3030"; 48 } 49 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/br/firefox-96.0.3.tar.bz2"; 50 locale = "br"; 51 arch = "linux-x86_64"; 52 - sha256 = "2305e226c5e492505dfc82fe34f17c8725eeab2ea10b61b089c92ad7b85a5186"; 53 } 54 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/bs/firefox-96.0.3.tar.bz2"; 55 locale = "bs"; 56 arch = "linux-x86_64"; 57 - sha256 = "6aeb690c82790a72906ff80d55ae5de2dc7aa5a430c45a0ef2861336a6e73b15"; 58 } 59 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/ca-valencia/firefox-96.0.3.tar.bz2"; 60 locale = "ca-valencia"; 61 arch = "linux-x86_64"; 62 - sha256 = "86e2a4720b991d6ffd7c9ce996162db9ef9ccd80da96fd5ad184ef006ae8fb1a"; 63 } 64 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/ca/firefox-96.0.3.tar.bz2"; 65 locale = "ca"; 66 arch = "linux-x86_64"; 67 - sha256 = "0e9675d739eec02c98812e4d707c37d352de7605e9567d9d4adccd0e6ab40e8e"; 68 } 69 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/cak/firefox-96.0.3.tar.bz2"; 70 locale = "cak"; 71 arch = "linux-x86_64"; 72 - sha256 = "35d5d2c5eef32819499b4078c7f31f23c848b44c40788ff42ba66d10b3771fda"; 73 } 74 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/cs/firefox-96.0.3.tar.bz2"; 75 locale = "cs"; 76 arch = "linux-x86_64"; 77 - sha256 = "67f42b8ce23ef78aab9fd5e61abada98d7fba5dd76d8c57ceefb43a1783d29a5"; 78 } 79 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/cy/firefox-96.0.3.tar.bz2"; 80 locale = "cy"; 81 arch = "linux-x86_64"; 82 - sha256 = "c6bb154bb341b88994d060f18430670184bd3646c662da6351df11e2ce9a6abb"; 83 } 84 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/da/firefox-96.0.3.tar.bz2"; 85 locale = "da"; 86 arch = "linux-x86_64"; 87 - sha256 = "3c268391a116f9b8ada73a98020c44f67bb9f275fbb7462a188e6d2d8acede7a"; 88 } 89 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/de/firefox-96.0.3.tar.bz2"; 90 locale = "de"; 91 arch = "linux-x86_64"; 92 - sha256 = "dc5ce8991db83708bfbe686db8a3244e28e61077a754b6dc41f29946b8afb489"; 93 } 94 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/dsb/firefox-96.0.3.tar.bz2"; 95 locale = "dsb"; 96 arch = "linux-x86_64"; 97 - sha256 = "9afd277a20cc47de854ec48c9aa484118e274ce24532e53076eafeb78d4f8e0a"; 98 } 99 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/el/firefox-96.0.3.tar.bz2"; 100 locale = "el"; 101 arch = "linux-x86_64"; 102 - sha256 = "58130d71888ee7f3c40a1656ee0e7ab9f3538573f1dde104a93e850863ea1be9"; 103 } 104 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/en-CA/firefox-96.0.3.tar.bz2"; 105 locale = "en-CA"; 106 arch = "linux-x86_64"; 107 - sha256 = "2548098aa8527abd10b0f23203a1a4fafb231c6bf853d67c938006d6c230856a"; 108 } 109 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/en-GB/firefox-96.0.3.tar.bz2"; 110 locale = "en-GB"; 111 arch = "linux-x86_64"; 112 - sha256 = "c8f8e171e28b629fc9cfc4557409987e7a72aa9507a51fe2bf0f8347530cc962"; 113 } 114 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/en-US/firefox-96.0.3.tar.bz2"; 115 locale = "en-US"; 116 arch = "linux-x86_64"; 117 - sha256 = "2b642cfd2db0c2cb0f67453307a5a7d8c90e372a03274644212b51f60d503965"; 118 } 119 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/eo/firefox-96.0.3.tar.bz2"; 120 locale = "eo"; 121 arch = "linux-x86_64"; 122 - sha256 = "803ea1560568fb1c2af0bc0ff47a01ec7d854866b209bce7ceff8f7351a1cffc"; 123 } 124 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/es-AR/firefox-96.0.3.tar.bz2"; 125 locale = "es-AR"; 126 arch = "linux-x86_64"; 127 - sha256 = "4ab03c3623f26785b09308ca3d334536b169aec7690050db2141e40a83bd7b0d"; 128 } 129 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/es-CL/firefox-96.0.3.tar.bz2"; 130 locale = "es-CL"; 131 arch = "linux-x86_64"; 132 - sha256 = "578e4ae8697ddf6754c88e94c7676b1f1fb4d0cd65dadd833966f1b69a277f14"; 133 } 134 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/es-ES/firefox-96.0.3.tar.bz2"; 135 locale = "es-ES"; 136 arch = "linux-x86_64"; 137 - sha256 = "91ed54c34aac2fa5f3345403f4123f154679759bdbc4d6453de093216db630d4"; 138 } 139 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/es-MX/firefox-96.0.3.tar.bz2"; 140 locale = "es-MX"; 141 arch = "linux-x86_64"; 142 - sha256 = "8cad63aedba46ae735a6d69e510c912f746ed5f1d0af8a8bc7f396a53ca9bd7d"; 143 } 144 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/et/firefox-96.0.3.tar.bz2"; 145 locale = "et"; 146 arch = "linux-x86_64"; 147 - sha256 = "c12317af0fc4a4ae13a0ddb376192ba62ef3a2bc3205a0a87531ea4147707c5d"; 148 } 149 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/eu/firefox-96.0.3.tar.bz2"; 150 locale = "eu"; 151 arch = "linux-x86_64"; 152 - sha256 = "a244b1fbd2ef6197c739834177e6bf9c8f1241f9257baa77eeebac149da0919e"; 153 } 154 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/fa/firefox-96.0.3.tar.bz2"; 155 locale = "fa"; 156 arch = "linux-x86_64"; 157 - sha256 = "7eac238a916f009c83f8a95cb5f6d13e08461630094d85a78cfae041df7b9179"; 158 } 159 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/ff/firefox-96.0.3.tar.bz2"; 160 locale = "ff"; 161 arch = "linux-x86_64"; 162 - sha256 = "afd6d4635f3840287ac5497ec33555fa6399d0555e8a9a8cd8c58384d6aba6c3"; 163 } 164 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/fi/firefox-96.0.3.tar.bz2"; 165 locale = "fi"; 166 arch = "linux-x86_64"; 167 - sha256 = "3e68e136d8a9a1522fe6477fec66df20fb454ab017d9337fbaab39cd4e607192"; 168 } 169 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/fr/firefox-96.0.3.tar.bz2"; 170 locale = "fr"; 171 arch = "linux-x86_64"; 172 - sha256 = "5b1b622c122acba08315918969dfc14f952de946e121c7c037d53ca422fbc3d6"; 173 } 174 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/fy-NL/firefox-96.0.3.tar.bz2"; 175 locale = "fy-NL"; 176 arch = "linux-x86_64"; 177 - sha256 = "c6588dc0436e8c96fe2660c356bd26dbd3065f04ab439aa034a154c28e5feb49"; 178 } 179 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/ga-IE/firefox-96.0.3.tar.bz2"; 180 locale = "ga-IE"; 181 arch = "linux-x86_64"; 182 - sha256 = "d289f690338b6191f6da0201745d361915c83839f829375913a004bf63482fd3"; 183 } 184 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/gd/firefox-96.0.3.tar.bz2"; 185 locale = "gd"; 186 arch = "linux-x86_64"; 187 - sha256 = "f007344cb0ff1a2999d87ab4563cde87c2afa416cf3e20f7c369c9e6d4f17193"; 188 } 189 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/gl/firefox-96.0.3.tar.bz2"; 190 locale = "gl"; 191 arch = "linux-x86_64"; 192 - sha256 = "d42233e3a6cce9d0464428bf8e2dbaecac1eebf2c03f58e0045f971d38a2d844"; 193 } 194 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/gn/firefox-96.0.3.tar.bz2"; 195 locale = "gn"; 196 arch = "linux-x86_64"; 197 - sha256 = "333e9de73b08a2c86d3491ff15a39312c63fcd2ab46f45d271fc37244242f39f"; 198 } 199 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/gu-IN/firefox-96.0.3.tar.bz2"; 200 locale = "gu-IN"; 201 arch = "linux-x86_64"; 202 - sha256 = "2ef9974b7281e17ba3469947365b299b821afca28d5369c374e18d9498a5d15f"; 203 } 204 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/he/firefox-96.0.3.tar.bz2"; 205 locale = "he"; 206 arch = "linux-x86_64"; 207 - sha256 = "6df30dc08a3f85cb1c78269d05fc56af9651efed5d5bd2d09cbd1eba264e5eeb"; 208 } 209 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/hi-IN/firefox-96.0.3.tar.bz2"; 210 locale = "hi-IN"; 211 arch = "linux-x86_64"; 212 - sha256 = "1ddb67ff888a37dac8e92637a051d3cc4f632bf3b22d05b91bd58bbad223e04f"; 213 } 214 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/hr/firefox-96.0.3.tar.bz2"; 215 locale = "hr"; 216 arch = "linux-x86_64"; 217 - sha256 = "85425e1a026d9ae2a5d55b0ad2b355a715e35904ac88a706f027dbf18ba11a0b"; 218 } 219 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/hsb/firefox-96.0.3.tar.bz2"; 220 locale = "hsb"; 221 arch = "linux-x86_64"; 222 - sha256 = "abeee49422541d11d2eed2d159b7f20f3f0f36b7ce82505a2991368275f6bccb"; 223 } 224 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/hu/firefox-96.0.3.tar.bz2"; 225 locale = "hu"; 226 arch = "linux-x86_64"; 227 - sha256 = "2c42e7ed59de20b5377c37a41bfe083279f0e481c61cba6249790ff83ce2977a"; 228 } 229 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/hy-AM/firefox-96.0.3.tar.bz2"; 230 locale = "hy-AM"; 231 arch = "linux-x86_64"; 232 - sha256 = "74a0b038ca4cbccbfcd276b299ed0d127f4d4cdea159789cf01313095ee8874f"; 233 } 234 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/ia/firefox-96.0.3.tar.bz2"; 235 locale = "ia"; 236 arch = "linux-x86_64"; 237 - sha256 = "c711c1cf38ab231ae74404852999d74e4d802f36c12e44835e9bc6916133eab9"; 238 } 239 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/id/firefox-96.0.3.tar.bz2"; 240 locale = "id"; 241 arch = "linux-x86_64"; 242 - sha256 = "e03819b47694a6ded168212877294b187f3e3218ab78dcf888a947d90479fc30"; 243 } 244 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/is/firefox-96.0.3.tar.bz2"; 245 locale = "is"; 246 arch = "linux-x86_64"; 247 - sha256 = "94eabb7522d56e732ee816a7ee1236307d8dd7ebe22fafa6bf4a3ae14d3a0d8b"; 248 } 249 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/it/firefox-96.0.3.tar.bz2"; 250 locale = "it"; 251 arch = "linux-x86_64"; 252 - sha256 = "5b73da04bfd5601fd199e1ad32cc02b41ccd056551e3e14ae975ae401baebb53"; 253 } 254 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/ja/firefox-96.0.3.tar.bz2"; 255 locale = "ja"; 256 arch = "linux-x86_64"; 257 - sha256 = "2e8992b199d36c9857627942b43d3472f56e7657f929dc655cd4bc74b0441fe5"; 258 } 259 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/ka/firefox-96.0.3.tar.bz2"; 260 locale = "ka"; 261 arch = "linux-x86_64"; 262 - sha256 = "6c4059f00b2598bc28755f8051ef20159cf8cffc9732f1644822769799e886ca"; 263 } 264 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/kab/firefox-96.0.3.tar.bz2"; 265 locale = "kab"; 266 arch = "linux-x86_64"; 267 - sha256 = "730e62f6d18da4519ae2ed46266d2014fd44260549d8d2dd4d0fd8b6174a2831"; 268 } 269 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/kk/firefox-96.0.3.tar.bz2"; 270 locale = "kk"; 271 arch = "linux-x86_64"; 272 - sha256 = "a7f4afdd9d43f0bfec34edf17dd5ff0d68d529731b51deb86e2a09d85e7b86b1"; 273 } 274 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/km/firefox-96.0.3.tar.bz2"; 275 locale = "km"; 276 arch = "linux-x86_64"; 277 - sha256 = "c69f54f1a9775c76f7126a18c5c8c66f683737076e3e59479b3e36a34a6c30f6"; 278 } 279 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/kn/firefox-96.0.3.tar.bz2"; 280 locale = "kn"; 281 arch = "linux-x86_64"; 282 - sha256 = "c9fb9ff1e2c79dc0ad804846bbcccf608a09ad380932bd7d68267e10cc9eeb65"; 283 } 284 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/ko/firefox-96.0.3.tar.bz2"; 285 locale = "ko"; 286 arch = "linux-x86_64"; 287 - sha256 = "43adfc767b7869adcbb2d39410813eeab6ca7d50df6398bc00106f1b73daa564"; 288 } 289 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/lij/firefox-96.0.3.tar.bz2"; 290 locale = "lij"; 291 arch = "linux-x86_64"; 292 - sha256 = "812ebc60c69de188a12247cf82881824ee0efff571b91527fc343f50f216c27b"; 293 } 294 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/lt/firefox-96.0.3.tar.bz2"; 295 locale = "lt"; 296 arch = "linux-x86_64"; 297 - sha256 = "375ce82258424250c48051f33551958adad2b72bff9c06f2109a54618fb0a038"; 298 } 299 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/lv/firefox-96.0.3.tar.bz2"; 300 locale = "lv"; 301 arch = "linux-x86_64"; 302 - sha256 = "5b27b13ae0406e6ac0bdd612ab8523fab2665b8e4e146aaf2f47a83712453958"; 303 } 304 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/mk/firefox-96.0.3.tar.bz2"; 305 locale = "mk"; 306 arch = "linux-x86_64"; 307 - sha256 = "5215eb91572c7f863d79d44d23fff9181b1c910817d40383a83459d6ce0fffd5"; 308 } 309 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/mr/firefox-96.0.3.tar.bz2"; 310 locale = "mr"; 311 arch = "linux-x86_64"; 312 - sha256 = "056491449edc305d2994f8eb985dad136d9687b3f0aaf9b95d134a352f72ea34"; 313 } 314 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/ms/firefox-96.0.3.tar.bz2"; 315 locale = "ms"; 316 arch = "linux-x86_64"; 317 - sha256 = "eb7244a97611860167f98dd038e4d1f60c3b52a2cf81fdf93c2402d780c1ecfd"; 318 } 319 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/my/firefox-96.0.3.tar.bz2"; 320 locale = "my"; 321 arch = "linux-x86_64"; 322 - sha256 = "93b93324e305b5ba0f9a005b73230de8acc6607ff0e284c5d3814892f95181a6"; 323 } 324 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/nb-NO/firefox-96.0.3.tar.bz2"; 325 locale = "nb-NO"; 326 arch = "linux-x86_64"; 327 - sha256 = "255056583e093d4b733326f732a529ddbe18010b64e5a093e6a17e09953f6c5b"; 328 } 329 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/ne-NP/firefox-96.0.3.tar.bz2"; 330 locale = "ne-NP"; 331 arch = "linux-x86_64"; 332 - sha256 = "65fcb5475f2ad6e4e9471e4129ed26c615786e6b90c13e1f38c1c679b913b023"; 333 } 334 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/nl/firefox-96.0.3.tar.bz2"; 335 locale = "nl"; 336 arch = "linux-x86_64"; 337 - sha256 = "1197ff7d9bb843d56d081da51105283923768884cecee4ce9cb50a93952e909d"; 338 } 339 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/nn-NO/firefox-96.0.3.tar.bz2"; 340 locale = "nn-NO"; 341 arch = "linux-x86_64"; 342 - sha256 = "47fe60e6c0115914630edf99a56447f5a1536da0e55e6253e58e4e9ac54c9eec"; 343 } 344 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/oc/firefox-96.0.3.tar.bz2"; 345 locale = "oc"; 346 arch = "linux-x86_64"; 347 - sha256 = "17d363269d5b0911d47ea3ba52e9a7b28f911e4f0a1eaa83849d749b4bfe906c"; 348 } 349 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/pa-IN/firefox-96.0.3.tar.bz2"; 350 locale = "pa-IN"; 351 arch = "linux-x86_64"; 352 - sha256 = "6c1f582c50b36055fb9f3b8c20db1bc823cbd2d56cf36c8495e7c18599a906a9"; 353 } 354 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/pl/firefox-96.0.3.tar.bz2"; 355 locale = "pl"; 356 arch = "linux-x86_64"; 357 - sha256 = "e4a1fdc104a58966e760a1ea78bd353f61272462920085c347693adbac769d43"; 358 } 359 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/pt-BR/firefox-96.0.3.tar.bz2"; 360 locale = "pt-BR"; 361 arch = "linux-x86_64"; 362 - sha256 = "90a1bff86400f555d284fd8094df9d7c13556ebad0ce982710508d901c6cb1ff"; 363 } 364 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/pt-PT/firefox-96.0.3.tar.bz2"; 365 locale = "pt-PT"; 366 arch = "linux-x86_64"; 367 - sha256 = "7e59d9ab9369f8f7ef00b85c6c6be62b4bb9da488071268ddab808367541892c"; 368 } 369 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/rm/firefox-96.0.3.tar.bz2"; 370 locale = "rm"; 371 arch = "linux-x86_64"; 372 - sha256 = "ca20e98f9703ccf00cde6793b2e1d28c0c429c0fff01a2eb592e4270181e8c1b"; 373 } 374 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/ro/firefox-96.0.3.tar.bz2"; 375 locale = "ro"; 376 arch = "linux-x86_64"; 377 - sha256 = "55ac07f7ffa919ba37d29899f8fcbb13793db9f198e2a9cc0b5dda717b1d4116"; 378 } 379 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/ru/firefox-96.0.3.tar.bz2"; 380 locale = "ru"; 381 arch = "linux-x86_64"; 382 - sha256 = "f05ba84219501f904d51f320fecd84df6c51cb1f4ad541afbdbf8a781e46699a"; 383 } 384 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/sco/firefox-96.0.3.tar.bz2"; 385 locale = "sco"; 386 arch = "linux-x86_64"; 387 - sha256 = "5186773e72363dd05e46ba418e58a9e4d80381fc530c509135c76c5e63353d48"; 388 } 389 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/si/firefox-96.0.3.tar.bz2"; 390 locale = "si"; 391 arch = "linux-x86_64"; 392 - sha256 = "8bdc526c6d7b4c672d12c860376458d03efd5305f4823405c0827a4b75912a8c"; 393 } 394 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/sk/firefox-96.0.3.tar.bz2"; 395 locale = "sk"; 396 arch = "linux-x86_64"; 397 - sha256 = "bb17d52c6c549dc7861c32ec9a4f57a0df323845a6076a9499c1faa9ae3c8d28"; 398 } 399 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/sl/firefox-96.0.3.tar.bz2"; 400 locale = "sl"; 401 arch = "linux-x86_64"; 402 - sha256 = "fecd2cf24bed949a02360ae74f6701ac9b65186a7a51f851249a2cee67ccb63a"; 403 } 404 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/son/firefox-96.0.3.tar.bz2"; 405 locale = "son"; 406 arch = "linux-x86_64"; 407 - sha256 = "c3130c49ad77912107c61d0b24e5290f20ec7dcf95d329682a0703f43c768c28"; 408 } 409 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/sq/firefox-96.0.3.tar.bz2"; 410 locale = "sq"; 411 arch = "linux-x86_64"; 412 - sha256 = "4cf2ac0f3957a205a26548655f00c3af0c35751ff6f69d25e5a38dde86dbc335"; 413 } 414 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/sr/firefox-96.0.3.tar.bz2"; 415 locale = "sr"; 416 arch = "linux-x86_64"; 417 - sha256 = "7f3e01919220b39029bf48c651864dfe9970c858f4c379a0a458bbadc1cea666"; 418 } 419 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/sv-SE/firefox-96.0.3.tar.bz2"; 420 locale = "sv-SE"; 421 arch = "linux-x86_64"; 422 - sha256 = "bdeba12b07803a1bf86c7e38185fc1add59a10e09ed59aff7d135107d004f0bb"; 423 } 424 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/szl/firefox-96.0.3.tar.bz2"; 425 locale = "szl"; 426 arch = "linux-x86_64"; 427 - sha256 = "f6b69c4e88e23da50b4f7f3b4961a92ddb3321dab8a988d29150fc1ad60258f5"; 428 } 429 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/ta/firefox-96.0.3.tar.bz2"; 430 locale = "ta"; 431 arch = "linux-x86_64"; 432 - sha256 = "d7bb8645992788ac5161f3becf98248526b02b767cff958d5094ad24086cad06"; 433 } 434 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/te/firefox-96.0.3.tar.bz2"; 435 locale = "te"; 436 arch = "linux-x86_64"; 437 - sha256 = "692b65313b3b792e35b1160ee830fd9c9ff082d6f6177af7be135dd6096efe09"; 438 } 439 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/th/firefox-96.0.3.tar.bz2"; 440 locale = "th"; 441 arch = "linux-x86_64"; 442 - sha256 = "c792a126f487b51f4832a56fec8a6fb502fe3a0a38dea7a8f3c5a7060b9d7576"; 443 } 444 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/tl/firefox-96.0.3.tar.bz2"; 445 locale = "tl"; 446 arch = "linux-x86_64"; 447 - sha256 = "ef633b565abf5349aaa86afcd9934145b70abc036bcddc733075e5157a736406"; 448 } 449 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/tr/firefox-96.0.3.tar.bz2"; 450 locale = "tr"; 451 arch = "linux-x86_64"; 452 - sha256 = "ef04eff4e101405dbf8291b0384f8ecc95febf6730aabdc28d8c8cfaf305810e"; 453 } 454 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/trs/firefox-96.0.3.tar.bz2"; 455 locale = "trs"; 456 arch = "linux-x86_64"; 457 - sha256 = "0a5c709f86dd33c771aec4760a5df1dbfd7baade90c8d9519c46a1dee8f18aad"; 458 } 459 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/uk/firefox-96.0.3.tar.bz2"; 460 locale = "uk"; 461 arch = "linux-x86_64"; 462 - sha256 = "488baa16c6d60043d5da0aa667e3973eb0df141d50bef117effecc2a39a30019"; 463 } 464 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/ur/firefox-96.0.3.tar.bz2"; 465 locale = "ur"; 466 arch = "linux-x86_64"; 467 - sha256 = "039278fc25b62c6ccc024965ea296de4381f86c485b10cfa93cd5025d39f7e47"; 468 } 469 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/uz/firefox-96.0.3.tar.bz2"; 470 locale = "uz"; 471 arch = "linux-x86_64"; 472 - sha256 = "59c1a1f8a85f1f569112df4dbfeaaf15f4337210f50111193b36bdedf4d3b2b4"; 473 } 474 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/vi/firefox-96.0.3.tar.bz2"; 475 locale = "vi"; 476 arch = "linux-x86_64"; 477 - sha256 = "e9a1a2330b1d09ae8f9ecb95613799db87a06f7a4fcd70265ebca2a6aa179bf9"; 478 } 479 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/xh/firefox-96.0.3.tar.bz2"; 480 locale = "xh"; 481 arch = "linux-x86_64"; 482 - sha256 = "8dd8816267c62f309206a45cab60bd6dd4d067b0de3002111d86b737f4f9d11e"; 483 } 484 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/zh-CN/firefox-96.0.3.tar.bz2"; 485 locale = "zh-CN"; 486 arch = "linux-x86_64"; 487 - sha256 = "b080362a5fa2a660770698915abbbc9230d85ce1eb3510e96ff9374ee19fbf94"; 488 } 489 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-x86_64/zh-TW/firefox-96.0.3.tar.bz2"; 490 locale = "zh-TW"; 491 arch = "linux-x86_64"; 492 - sha256 = "34f43a3dc69a116d5b9a136d89fe0180deee13907a94eb6d02ef2ffacb94ef49"; 493 } 494 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/ach/firefox-96.0.3.tar.bz2"; 495 locale = "ach"; 496 arch = "linux-i686"; 497 - sha256 = "b2f21e188e6ab08be9b57a1a50dc735c50cc6586a70c3243af1dc242def66f79"; 498 } 499 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/af/firefox-96.0.3.tar.bz2"; 500 locale = "af"; 501 arch = "linux-i686"; 502 - sha256 = "c153b40cccdb36903e3ced9d8685443a9dd4550419b45f09c201fc5b9ef2d12c"; 503 } 504 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/an/firefox-96.0.3.tar.bz2"; 505 locale = "an"; 506 arch = "linux-i686"; 507 - sha256 = "0514725b38a83e6385362dfdac57b7d374a458e6621296c4285d769933aa7bdc"; 508 } 509 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/ar/firefox-96.0.3.tar.bz2"; 510 locale = "ar"; 511 arch = "linux-i686"; 512 - sha256 = "ba1003e913322f06aa113f61d6de5ce52e08bdb5644fd6c5c8d9f059765a7737"; 513 } 514 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/ast/firefox-96.0.3.tar.bz2"; 515 locale = "ast"; 516 arch = "linux-i686"; 517 - sha256 = "c2983efe1ba2b201006581d10fa629e2704f70590290a2720817b49ea3cb6ec0"; 518 } 519 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/az/firefox-96.0.3.tar.bz2"; 520 locale = "az"; 521 arch = "linux-i686"; 522 - sha256 = "b4cf2197f83835fb580ed79e01851e7be2d9d7e319e1dcea3028e075f244d6f6"; 523 } 524 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/be/firefox-96.0.3.tar.bz2"; 525 locale = "be"; 526 arch = "linux-i686"; 527 - sha256 = "519c34bffab78065fcd3b9027eac4e0eda7ab864784f98474dcc04d887540bc4"; 528 } 529 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/bg/firefox-96.0.3.tar.bz2"; 530 locale = "bg"; 531 arch = "linux-i686"; 532 - sha256 = "fc897672d9eed6bcc835fa3e9e6e7fe07214192fd6899b2e7f85d64a0fbb1179"; 533 } 534 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/bn/firefox-96.0.3.tar.bz2"; 535 locale = "bn"; 536 arch = "linux-i686"; 537 - sha256 = "67550724f06e82f430e398171715a96eb2b4aa6e902066faf7e7a1efc5bfcbb1"; 538 } 539 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/br/firefox-96.0.3.tar.bz2"; 540 locale = "br"; 541 arch = "linux-i686"; 542 - sha256 = "22d15a81ee580824465ff2bae1f134efc4525cb2b7e3707c365f8b720f8511b9"; 543 } 544 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/bs/firefox-96.0.3.tar.bz2"; 545 locale = "bs"; 546 arch = "linux-i686"; 547 - sha256 = "0d2bca33d770c88b808c74f3178e5f4782424f804e59acfdb884879e195e3ba4"; 548 } 549 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/ca-valencia/firefox-96.0.3.tar.bz2"; 550 locale = "ca-valencia"; 551 arch = "linux-i686"; 552 - sha256 = "3214ba1b640b1802d1a22c0a76ed5a26f0f2c23785cced7ed1cc8eaecb0c0030"; 553 } 554 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/ca/firefox-96.0.3.tar.bz2"; 555 locale = "ca"; 556 arch = "linux-i686"; 557 - sha256 = "07fa269368d120c547c6faad6c896c73cd95cfb1a99da9bb7bcdec1453e4c898"; 558 } 559 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/cak/firefox-96.0.3.tar.bz2"; 560 locale = "cak"; 561 arch = "linux-i686"; 562 - sha256 = "3350662d19a2f4bf68688917c4b37565c9049f22c272ed860e1d47f6f11e3be0"; 563 } 564 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/cs/firefox-96.0.3.tar.bz2"; 565 locale = "cs"; 566 arch = "linux-i686"; 567 - sha256 = "2a70bc5fe26c427ac4d0c6ff75670dc485d9f4701926572ff46f6e6044a94d97"; 568 } 569 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/cy/firefox-96.0.3.tar.bz2"; 570 locale = "cy"; 571 arch = "linux-i686"; 572 - sha256 = "d5e4177638e84295f2733357548791a179cd32e97c1080666a6b48270236f8e8"; 573 } 574 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/da/firefox-96.0.3.tar.bz2"; 575 locale = "da"; 576 arch = "linux-i686"; 577 - sha256 = "3d31f922d743c9ec84841bacfcc563c6c71716f75cef8b78b5331bfe6916dcb3"; 578 } 579 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/de/firefox-96.0.3.tar.bz2"; 580 locale = "de"; 581 arch = "linux-i686"; 582 - sha256 = "2e1ff6056e589d420ae813a448317de248910694fa89ecfdce9b5545a647e2b5"; 583 } 584 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/dsb/firefox-96.0.3.tar.bz2"; 585 locale = "dsb"; 586 arch = "linux-i686"; 587 - sha256 = "73d2c7e568d7e6bf8831dc4405f407357e3066896446d3ea2bbaf7de45c1314f"; 588 } 589 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/el/firefox-96.0.3.tar.bz2"; 590 locale = "el"; 591 arch = "linux-i686"; 592 - sha256 = "1669c35b9ab66367d998f1b15556ababbb3b80aa191bed6a7b7f34c6f29fef1c"; 593 } 594 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/en-CA/firefox-96.0.3.tar.bz2"; 595 locale = "en-CA"; 596 arch = "linux-i686"; 597 - sha256 = "c5aba93081eaf416dab845e0e8d2e5db10992c3aaeab209182c4af2e725dc5c6"; 598 } 599 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/en-GB/firefox-96.0.3.tar.bz2"; 600 locale = "en-GB"; 601 arch = "linux-i686"; 602 - sha256 = "72acf998d686d34727ca307855d3c0139c620868b13614ef5c7a61953a3c2ac8"; 603 } 604 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/en-US/firefox-96.0.3.tar.bz2"; 605 locale = "en-US"; 606 arch = "linux-i686"; 607 - sha256 = "096169898ad97b2575b0b5e07c012f55f8749b7bc85f373c276d97948c3b7e08"; 608 } 609 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/eo/firefox-96.0.3.tar.bz2"; 610 locale = "eo"; 611 arch = "linux-i686"; 612 - sha256 = "365611e7265d56b3c9bab3a6aca71b838d48b945119b710624696080170443cd"; 613 } 614 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/es-AR/firefox-96.0.3.tar.bz2"; 615 locale = "es-AR"; 616 arch = "linux-i686"; 617 - sha256 = "49a54d184ea10380fac710f49f6c3e36c2e338e5324acf94b39535f6e06c91ce"; 618 } 619 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/es-CL/firefox-96.0.3.tar.bz2"; 620 locale = "es-CL"; 621 arch = "linux-i686"; 622 - sha256 = "3a5fbabf862c35f29db2c325e6b2e89af8a2fafea9c6613dbe4f367ce07e1abe"; 623 } 624 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/es-ES/firefox-96.0.3.tar.bz2"; 625 locale = "es-ES"; 626 arch = "linux-i686"; 627 - sha256 = "241fb3c9a2d07276085d586cf51fc55eaa6293d188ec286f25c6f58eb1919f31"; 628 } 629 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/es-MX/firefox-96.0.3.tar.bz2"; 630 locale = "es-MX"; 631 arch = "linux-i686"; 632 - sha256 = "066bfc95073b28afbf61accf2455e3294281749eb048bfab0670b21f920e51bf"; 633 } 634 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/et/firefox-96.0.3.tar.bz2"; 635 locale = "et"; 636 arch = "linux-i686"; 637 - sha256 = "437b61d073054cfb81063991c03afeeb5be52a31bd4f3bd1a2e65bef0c92a1d5"; 638 } 639 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/eu/firefox-96.0.3.tar.bz2"; 640 locale = "eu"; 641 arch = "linux-i686"; 642 - sha256 = "bf998de6b1b2dee067ee05d0a28d0128f63c9e6e7b788181d785b8afce8b0789"; 643 } 644 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/fa/firefox-96.0.3.tar.bz2"; 645 locale = "fa"; 646 arch = "linux-i686"; 647 - sha256 = "efe1cd9c8acbb8cdd8d72eee6c81f100c17c90fe0e13784992c5cfbe712a1eaa"; 648 } 649 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/ff/firefox-96.0.3.tar.bz2"; 650 locale = "ff"; 651 arch = "linux-i686"; 652 - sha256 = "dcd0dbe923403f1b078695257bb2705a4be9c91ad51fe065500ebfdfd0e8bf45"; 653 } 654 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/fi/firefox-96.0.3.tar.bz2"; 655 locale = "fi"; 656 arch = "linux-i686"; 657 - sha256 = "8c2288c2c7e96e2176b005227c504d7be001e03c43757f9e945f8a5a360dfc74"; 658 } 659 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/fr/firefox-96.0.3.tar.bz2"; 660 locale = "fr"; 661 arch = "linux-i686"; 662 - sha256 = "dbb3ebec1fb7da951c30d9a9fb50d59fe4b10cc56354c6d988708b4912092ae7"; 663 } 664 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/fy-NL/firefox-96.0.3.tar.bz2"; 665 locale = "fy-NL"; 666 arch = "linux-i686"; 667 - sha256 = "510522af3fa4c2f264223ac1970222c6d77abee42cf41ae1725f615bc519ba0f"; 668 } 669 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/ga-IE/firefox-96.0.3.tar.bz2"; 670 locale = "ga-IE"; 671 arch = "linux-i686"; 672 - sha256 = "82225bd4f8a00ffd38af9c4ce19cc3d224bcced34f6523cbe02a9c7f3d228697"; 673 } 674 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/gd/firefox-96.0.3.tar.bz2"; 675 locale = "gd"; 676 arch = "linux-i686"; 677 - sha256 = "5c11e2efaab296b436c6d21c7693612b910297681c49af90d376d9e1525b1aa8"; 678 } 679 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/gl/firefox-96.0.3.tar.bz2"; 680 locale = "gl"; 681 arch = "linux-i686"; 682 - sha256 = "8895ec691bdcebfc5eb13ef4a59fc1e08bd7aebd8ba336fc2a99db47608e03ca"; 683 } 684 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/gn/firefox-96.0.3.tar.bz2"; 685 locale = "gn"; 686 arch = "linux-i686"; 687 - sha256 = "fb6f99ee38f85d45b4d529934acdb94e804c5d8e85ae54124667c302156523b0"; 688 } 689 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/gu-IN/firefox-96.0.3.tar.bz2"; 690 locale = "gu-IN"; 691 arch = "linux-i686"; 692 - sha256 = "69aaf403dc5fb15f92b95175a1be399452cd06ab751d3c6ff2a78c2ec9ebcab0"; 693 } 694 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/he/firefox-96.0.3.tar.bz2"; 695 locale = "he"; 696 arch = "linux-i686"; 697 - sha256 = "eedd4f7d709b56e002f8f9955debe3bd4b2c4caef61b5160af78a44677f44530"; 698 } 699 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/hi-IN/firefox-96.0.3.tar.bz2"; 700 locale = "hi-IN"; 701 arch = "linux-i686"; 702 - sha256 = "3df9f781a68686c430da2f5aeafec68b983e1a9c64989701a78cec7a25830202"; 703 } 704 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/hr/firefox-96.0.3.tar.bz2"; 705 locale = "hr"; 706 arch = "linux-i686"; 707 - sha256 = "e809039217112743f459f37ae9b8cda21bb63aa00a23641a5f869a65ac55a527"; 708 } 709 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/hsb/firefox-96.0.3.tar.bz2"; 710 locale = "hsb"; 711 arch = "linux-i686"; 712 - sha256 = "4ee840b8014aa7b0e8ef5262ac2d69e48049a7b2beab803ee7dc09c35dee8f03"; 713 } 714 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/hu/firefox-96.0.3.tar.bz2"; 715 locale = "hu"; 716 arch = "linux-i686"; 717 - sha256 = "8e62842f1be4afd2d61c0ef9a9be05f6e3c133d1994a55d8b165d39560d96018"; 718 } 719 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/hy-AM/firefox-96.0.3.tar.bz2"; 720 locale = "hy-AM"; 721 arch = "linux-i686"; 722 - sha256 = "e0fa7cbc6bc4679585ce832f8cc1380e7de0cb0ca46b93293c9ba08fb04f91d7"; 723 } 724 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/ia/firefox-96.0.3.tar.bz2"; 725 locale = "ia"; 726 arch = "linux-i686"; 727 - sha256 = "d20630531aba75aa0641422fadcfd2d3bc663fc817c22641a63e9bfc4cd29a76"; 728 } 729 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/id/firefox-96.0.3.tar.bz2"; 730 locale = "id"; 731 arch = "linux-i686"; 732 - sha256 = "b11550957bf6caf0f088e5791db67f7685d4626f7535691c4201764244649fd5"; 733 } 734 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/is/firefox-96.0.3.tar.bz2"; 735 locale = "is"; 736 arch = "linux-i686"; 737 - sha256 = "d9112f5dc6c3fbc415d9bb9da52f36dbce325d36d8ec1843cf96b093d19d4b69"; 738 } 739 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/it/firefox-96.0.3.tar.bz2"; 740 locale = "it"; 741 arch = "linux-i686"; 742 - sha256 = "35f4350d1cec94cb4402b7b22f11e929e8a08b44a150f7910f278c9a5cb77324"; 743 } 744 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/ja/firefox-96.0.3.tar.bz2"; 745 locale = "ja"; 746 arch = "linux-i686"; 747 - sha256 = "5fe015cc6d0250500912187edc04e697cbf62028b447e47e8d1532dfd0628d2c"; 748 } 749 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/ka/firefox-96.0.3.tar.bz2"; 750 locale = "ka"; 751 arch = "linux-i686"; 752 - sha256 = "a696df24f1b95e5b228f53328514c77639020a8719cdb23f88017be7e6d2a037"; 753 } 754 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/kab/firefox-96.0.3.tar.bz2"; 755 locale = "kab"; 756 arch = "linux-i686"; 757 - sha256 = "4d9c7c0cf22aacd5c18f75eb511db2ebffc393019af1f01fb5d1dbb837da96a6"; 758 } 759 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/kk/firefox-96.0.3.tar.bz2"; 760 locale = "kk"; 761 arch = "linux-i686"; 762 - sha256 = "db9c1eee0cd6a696e24b7edb142aa3f04a89bb3b30ec46e76be3738e3787bbe4"; 763 } 764 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/km/firefox-96.0.3.tar.bz2"; 765 locale = "km"; 766 arch = "linux-i686"; 767 - sha256 = "e05b5a315de970a2bb58276204a341870d0028214b2a402eef5db36ce8ca8190"; 768 } 769 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/kn/firefox-96.0.3.tar.bz2"; 770 locale = "kn"; 771 arch = "linux-i686"; 772 - sha256 = "1c60915882ba74ddb257517036932c154a5081e9418b98e0fb533f1c71479eaf"; 773 } 774 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/ko/firefox-96.0.3.tar.bz2"; 775 locale = "ko"; 776 arch = "linux-i686"; 777 - sha256 = "1c69656cf1e302973ee92d9064388cd537b70ca8e36882b2aba5ba477522192b"; 778 } 779 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/lij/firefox-96.0.3.tar.bz2"; 780 locale = "lij"; 781 arch = "linux-i686"; 782 - sha256 = "bef0d7289833480363ab76d610e2cfecb286f5ed614d910ee84c9016da358c1c"; 783 } 784 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/lt/firefox-96.0.3.tar.bz2"; 785 locale = "lt"; 786 arch = "linux-i686"; 787 - sha256 = "738746e5e17271ebc97963a890e6951c9338c7f9bdb6021c3db0de1f346eb66c"; 788 } 789 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/lv/firefox-96.0.3.tar.bz2"; 790 locale = "lv"; 791 arch = "linux-i686"; 792 - sha256 = "d16713a766aecb20428d6642805fdb94a70523c0eb557b4a143c60afbc7ab623"; 793 } 794 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/mk/firefox-96.0.3.tar.bz2"; 795 locale = "mk"; 796 arch = "linux-i686"; 797 - sha256 = "f04eb09a5ccf6fb017a652ed8016d2e6f83202acb1f596a9f1b972caea8bc6ad"; 798 } 799 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/mr/firefox-96.0.3.tar.bz2"; 800 locale = "mr"; 801 arch = "linux-i686"; 802 - sha256 = "8cb8bdfe8b57fde90425e242de2a6c6a2fd76341efe32017febce6eb8189595b"; 803 } 804 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/ms/firefox-96.0.3.tar.bz2"; 805 locale = "ms"; 806 arch = "linux-i686"; 807 - sha256 = "785a87e3cbd7521913c47b9ba0f3838ee44e729df17680d780c78735c2ede188"; 808 } 809 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/my/firefox-96.0.3.tar.bz2"; 810 locale = "my"; 811 arch = "linux-i686"; 812 - sha256 = "6a555d259acd118123630f2da9c82c72fb95208b6aa02cec36ee8f803a94db82"; 813 } 814 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/nb-NO/firefox-96.0.3.tar.bz2"; 815 locale = "nb-NO"; 816 arch = "linux-i686"; 817 - sha256 = "a095c6f9991033a60015416f049e39f403368aafd85b3eb63dc3b7ab1183b9a0"; 818 } 819 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/ne-NP/firefox-96.0.3.tar.bz2"; 820 locale = "ne-NP"; 821 arch = "linux-i686"; 822 - sha256 = "3e3d546d2c2671f026414c809ac29431e4497a609c429c549f3183b101282766"; 823 } 824 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/nl/firefox-96.0.3.tar.bz2"; 825 locale = "nl"; 826 arch = "linux-i686"; 827 - sha256 = "5a0f987ddf354053e128a9c4d27b0eb73df227569643bfdca211aa2d4aef9208"; 828 } 829 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/nn-NO/firefox-96.0.3.tar.bz2"; 830 locale = "nn-NO"; 831 arch = "linux-i686"; 832 - sha256 = "736ed19fe6aabe0db06c3b5ba8971b9f73ec7014d876ce5fc0b5caff491cdff9"; 833 } 834 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/oc/firefox-96.0.3.tar.bz2"; 835 locale = "oc"; 836 arch = "linux-i686"; 837 - sha256 = "abde35c0c8ec426bdf5b35d0d19d2076fb72091939dded1318af90234efdc795"; 838 } 839 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/pa-IN/firefox-96.0.3.tar.bz2"; 840 locale = "pa-IN"; 841 arch = "linux-i686"; 842 - sha256 = "f40fca6a7f15b21ed61ff1293f9ce26cd4331736c4f59dc3515fa895176a15af"; 843 } 844 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/pl/firefox-96.0.3.tar.bz2"; 845 locale = "pl"; 846 arch = "linux-i686"; 847 - sha256 = "37dbcf64865442c1e42d22cb926888dee9aed8f3d99e08c8a8da3fc3bbcc18a0"; 848 } 849 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/pt-BR/firefox-96.0.3.tar.bz2"; 850 locale = "pt-BR"; 851 arch = "linux-i686"; 852 - sha256 = "60059b1fd78fd5dbf4df958274dc3c272142b4daaaf7fcd527491674bafbc234"; 853 } 854 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/pt-PT/firefox-96.0.3.tar.bz2"; 855 locale = "pt-PT"; 856 arch = "linux-i686"; 857 - sha256 = "958dd069404ef0b5aa3426c0436f7cc2fb0665d7aeb17b894f555baa875b1808"; 858 } 859 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/rm/firefox-96.0.3.tar.bz2"; 860 locale = "rm"; 861 arch = "linux-i686"; 862 - sha256 = "5d1379af25c004d0e16b3763fe2a78ddbd766a1ed8d3aa966a71bf44b65a8140"; 863 } 864 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/ro/firefox-96.0.3.tar.bz2"; 865 locale = "ro"; 866 arch = "linux-i686"; 867 - sha256 = "11ac629ea7b38db0043e9563fc5d75ea26ad75b0a3565d12798d56d2c7256992"; 868 } 869 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/ru/firefox-96.0.3.tar.bz2"; 870 locale = "ru"; 871 arch = "linux-i686"; 872 - sha256 = "2cc4cc849625dfc20a3dcdfa3a964218b521d4271c0cc166312b016948944b33"; 873 } 874 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/sco/firefox-96.0.3.tar.bz2"; 875 locale = "sco"; 876 arch = "linux-i686"; 877 - sha256 = "956160210c34a207a129a08667c3c3a3f978ad444a3f524e5cf4ce3406205c3b"; 878 } 879 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/si/firefox-96.0.3.tar.bz2"; 880 locale = "si"; 881 arch = "linux-i686"; 882 - sha256 = "68b2d054ed0af6e2608b42f958e5790d22552882ae2c143fd5a35b755232577b"; 883 } 884 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/sk/firefox-96.0.3.tar.bz2"; 885 locale = "sk"; 886 arch = "linux-i686"; 887 - sha256 = "5e5f318c5783feedcdd155afd7b2755fe0db513766378d823bec141a34245d73"; 888 } 889 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/sl/firefox-96.0.3.tar.bz2"; 890 locale = "sl"; 891 arch = "linux-i686"; 892 - sha256 = "75be9829bc9b3e9167eac5c24a9c1d091a7f932c99c496b7a07c0d438523ba13"; 893 } 894 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/son/firefox-96.0.3.tar.bz2"; 895 locale = "son"; 896 arch = "linux-i686"; 897 - sha256 = "eb18e65b5ff61953e8a8a2eff766dd13b9ecc5ce66179108eeb919b64219efcc"; 898 } 899 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/sq/firefox-96.0.3.tar.bz2"; 900 locale = "sq"; 901 arch = "linux-i686"; 902 - sha256 = "e21779796d19e344b518cc06106d9da298430dea03842c37e7856676999e57f4"; 903 } 904 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/sr/firefox-96.0.3.tar.bz2"; 905 locale = "sr"; 906 arch = "linux-i686"; 907 - sha256 = "12ff3eb22ea684b81909f9c03a4ce2ea802d6160bf1b7b939a808b28ad042d7e"; 908 } 909 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/sv-SE/firefox-96.0.3.tar.bz2"; 910 locale = "sv-SE"; 911 arch = "linux-i686"; 912 - sha256 = "ed48713a2c50e806fa4ecb082bf87765e00f4b496f7087ac642d4b7d5287a373"; 913 } 914 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/szl/firefox-96.0.3.tar.bz2"; 915 locale = "szl"; 916 arch = "linux-i686"; 917 - sha256 = "0a8335399ff54640d374c0c1035a4ba74a0a88b3940c02e7351c0372be4efd3e"; 918 } 919 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/ta/firefox-96.0.3.tar.bz2"; 920 locale = "ta"; 921 arch = "linux-i686"; 922 - sha256 = "6d39220c2d88014acbfcb0d6ac93f1539a668b787a26acd31b80312f59f6be12"; 923 } 924 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/te/firefox-96.0.3.tar.bz2"; 925 locale = "te"; 926 arch = "linux-i686"; 927 - sha256 = "f037e673f47ce4569eec2525be5c1b903ffe0df71e322eeda033c91cc92cdd0b"; 928 } 929 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/th/firefox-96.0.3.tar.bz2"; 930 locale = "th"; 931 arch = "linux-i686"; 932 - sha256 = "dc7aae98e8b4928f7b3b703aeca5d07aa1a820efb5bf34b1d07d9360b2eefbec"; 933 } 934 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/tl/firefox-96.0.3.tar.bz2"; 935 locale = "tl"; 936 arch = "linux-i686"; 937 - sha256 = "1fac0d3b63677d85d1921a7b9a9e81bb45be52a63ddeaa679022a9178acb2081"; 938 } 939 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/tr/firefox-96.0.3.tar.bz2"; 940 locale = "tr"; 941 arch = "linux-i686"; 942 - sha256 = "d380b853b024daa0c11a34ce80c90b1840a2439b89b9f471ed1d483577c9e297"; 943 } 944 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/trs/firefox-96.0.3.tar.bz2"; 945 locale = "trs"; 946 arch = "linux-i686"; 947 - sha256 = "4b143569552d987f05fa482c481b846398cc45fa98edb59b257764762198a5f2"; 948 } 949 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/uk/firefox-96.0.3.tar.bz2"; 950 locale = "uk"; 951 arch = "linux-i686"; 952 - sha256 = "a6df28358b227cbc03887ecc6e3ef516a71b09050fed3ba19f13a7bba8fe7f3f"; 953 } 954 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/ur/firefox-96.0.3.tar.bz2"; 955 locale = "ur"; 956 arch = "linux-i686"; 957 - sha256 = "0eb5d0680e985acc6bd5dc9602080c953a0664260e0ad62ba697b9a13b0282ca"; 958 } 959 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/uz/firefox-96.0.3.tar.bz2"; 960 locale = "uz"; 961 arch = "linux-i686"; 962 - sha256 = "a1916a60680587dad773be1a63eb6a8959d84d08ffd3aaf9c062d12a7bb9f1fa"; 963 } 964 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/vi/firefox-96.0.3.tar.bz2"; 965 locale = "vi"; 966 arch = "linux-i686"; 967 - sha256 = "b4072149b45d7514af7260f1f13605823dc3420c5f45198266503f3a9e42119f"; 968 } 969 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/xh/firefox-96.0.3.tar.bz2"; 970 locale = "xh"; 971 arch = "linux-i686"; 972 - sha256 = "ed0c483448b2eeff1adac520be15dee6ecff162f0420669902e565eaf30e0dd2"; 973 } 974 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/zh-CN/firefox-96.0.3.tar.bz2"; 975 locale = "zh-CN"; 976 arch = "linux-i686"; 977 - sha256 = "c1416988cbff23e6a68a04ff54b65fe11909dba59e9a0b2709a5ce4599a9d8aa"; 978 } 979 - { url = "http://archive.mozilla.org/pub/firefox/releases/96.0.3/linux-i686/zh-TW/firefox-96.0.3.tar.bz2"; 980 locale = "zh-TW"; 981 arch = "linux-i686"; 982 - sha256 = "ee7b2c30ae3e685f631a132ef1992b6b59c189781385ef0823330ee24fd4d43e"; 983 } 984 ]; 985 }
··· 1 { 2 + version = "97.0"; 3 sources = [ 4 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/ach/firefox-97.0.tar.bz2"; 5 locale = "ach"; 6 arch = "linux-x86_64"; 7 + sha256 = "1d02f86f1e903f97e36a90e89af2190c905e2c15bd78e252d4e52f77b347c7d4"; 8 } 9 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/af/firefox-97.0.tar.bz2"; 10 locale = "af"; 11 arch = "linux-x86_64"; 12 + sha256 = "f82635fa7e2835fbdd998e0a0132c83c5831f5d4969ac8c2840a0b690ccba805"; 13 } 14 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/an/firefox-97.0.tar.bz2"; 15 locale = "an"; 16 arch = "linux-x86_64"; 17 + sha256 = "cc817e42258c09944108bea46553ebea9859c99884b157b322f78f2550f9018b"; 18 } 19 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/ar/firefox-97.0.tar.bz2"; 20 locale = "ar"; 21 arch = "linux-x86_64"; 22 + sha256 = "87b782af877baebae09aa2d0e0ab399b3ad9a9d6d8aa63ac8519fc7767f7cc60"; 23 } 24 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/ast/firefox-97.0.tar.bz2"; 25 locale = "ast"; 26 arch = "linux-x86_64"; 27 + sha256 = "f8889f0a843da8c681701e559bca94ce9bb6db446387cc142e2c4547115b5811"; 28 } 29 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/az/firefox-97.0.tar.bz2"; 30 locale = "az"; 31 arch = "linux-x86_64"; 32 + sha256 = "bab0951865aa8f62b6aa2b92437fc861caa4c6f2757848835d6523e0677e3bc4"; 33 } 34 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/be/firefox-97.0.tar.bz2"; 35 locale = "be"; 36 arch = "linux-x86_64"; 37 + sha256 = "fd6d94270bf1333d2f12229bcf843a43a9b1d9775bc9fa71ce6260d924176310"; 38 } 39 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/bg/firefox-97.0.tar.bz2"; 40 locale = "bg"; 41 arch = "linux-x86_64"; 42 + sha256 = "95a576e8624745e94087aeb51718cb9ef55a0ed3258e06a8f0341ea6b1e993d8"; 43 } 44 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/bn/firefox-97.0.tar.bz2"; 45 locale = "bn"; 46 arch = "linux-x86_64"; 47 + sha256 = "a27340668dde133d2526607cd67f5216c62b22ba9f46c943ada18b979d8fd010"; 48 } 49 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/br/firefox-97.0.tar.bz2"; 50 locale = "br"; 51 arch = "linux-x86_64"; 52 + sha256 = "2f66ff56c261d8b30614937fd7c1ccb3a89474b5cafe9573dab180279b3c18c6"; 53 } 54 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/bs/firefox-97.0.tar.bz2"; 55 locale = "bs"; 56 arch = "linux-x86_64"; 57 + sha256 = "d3fa9bcaf628cdfe067449e79abe378ef44fca46fcb43ab9a14fa73f75b817f1"; 58 } 59 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/ca-valencia/firefox-97.0.tar.bz2"; 60 locale = "ca-valencia"; 61 arch = "linux-x86_64"; 62 + sha256 = "3339e4a2859893368534b9390ef1475d115a4ba1058dcc44dacbb7da80e0fef3"; 63 } 64 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/ca/firefox-97.0.tar.bz2"; 65 locale = "ca"; 66 arch = "linux-x86_64"; 67 + sha256 = "1c2e354248e8bf969ad026a472e6820dd125df35f23b9663aa65090a71af4398"; 68 } 69 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/cak/firefox-97.0.tar.bz2"; 70 locale = "cak"; 71 arch = "linux-x86_64"; 72 + sha256 = "580c7fb31030d000bf9f1c807690a4df6d67a37a41c88a2b70d8aee10ed37b59"; 73 } 74 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/cs/firefox-97.0.tar.bz2"; 75 locale = "cs"; 76 arch = "linux-x86_64"; 77 + sha256 = "3be967c8cb22ae11587a48e0e2592097c486a9dfc2b5eb252442d7302cb04d6f"; 78 } 79 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/cy/firefox-97.0.tar.bz2"; 80 locale = "cy"; 81 arch = "linux-x86_64"; 82 + sha256 = "cc1c93fff75ea41e45020ed81d8d68a5663effe695993b7fc34d34c76f1b0d00"; 83 } 84 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/da/firefox-97.0.tar.bz2"; 85 locale = "da"; 86 arch = "linux-x86_64"; 87 + sha256 = "34d7952beb7d5dad269df9664faabb43ff94475ef5acb3f4bc726be5f92c4d10"; 88 } 89 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/de/firefox-97.0.tar.bz2"; 90 locale = "de"; 91 arch = "linux-x86_64"; 92 + sha256 = "475f14c65678178ef0581003a0a04c2fa3f8904f0261946387dd114a8c03d679"; 93 } 94 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/dsb/firefox-97.0.tar.bz2"; 95 locale = "dsb"; 96 arch = "linux-x86_64"; 97 + sha256 = "d20671dedcf007a2d3e2be65bea9a13b98fa33c4cb34181a1996cb1629dc0de2"; 98 } 99 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/el/firefox-97.0.tar.bz2"; 100 locale = "el"; 101 arch = "linux-x86_64"; 102 + sha256 = "92daba146e93c9dd378208f85fb530d241f4e9fbaebc10670ba67f3e707e8c5b"; 103 } 104 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/en-CA/firefox-97.0.tar.bz2"; 105 locale = "en-CA"; 106 arch = "linux-x86_64"; 107 + sha256 = "b7f9aeb6ecd2f0053f2df7e4e7a168b7ac425fb7c91435446d554042b55f38c0"; 108 } 109 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/en-GB/firefox-97.0.tar.bz2"; 110 locale = "en-GB"; 111 arch = "linux-x86_64"; 112 + sha256 = "99f3af63a1ac4f16a0fbb714d42592881e0b20714c04cbdfe4ba51d1ead81213"; 113 } 114 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/en-US/firefox-97.0.tar.bz2"; 115 locale = "en-US"; 116 arch = "linux-x86_64"; 117 + sha256 = "3d0f74790fe6ff5e38324222ab0c47e10edb31970ed67c6dd7a1c84e7017d1a5"; 118 } 119 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/eo/firefox-97.0.tar.bz2"; 120 locale = "eo"; 121 arch = "linux-x86_64"; 122 + sha256 = "0ecc3d02a07c48076549ad9420c0ac9cf692470705ca390051ee5bc2a15af026"; 123 } 124 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/es-AR/firefox-97.0.tar.bz2"; 125 locale = "es-AR"; 126 arch = "linux-x86_64"; 127 + sha256 = "7a4a3f330fb00c9e1083d65ded0006e44bbfc2b75f16acb93f49c257f3bf4243"; 128 } 129 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/es-CL/firefox-97.0.tar.bz2"; 130 locale = "es-CL"; 131 arch = "linux-x86_64"; 132 + sha256 = "4a2c44c4def2502a5606d4951d6436ff38de02a678a2c3385d0bb2ac60612d1e"; 133 } 134 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/es-ES/firefox-97.0.tar.bz2"; 135 locale = "es-ES"; 136 arch = "linux-x86_64"; 137 + sha256 = "31b3c7ca8f3f9bf46fcf6a3cf33b1182cbc3cecd09f4e1741ed9a3e1257c2eff"; 138 } 139 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/es-MX/firefox-97.0.tar.bz2"; 140 locale = "es-MX"; 141 arch = "linux-x86_64"; 142 + sha256 = "c9a2e2ed18dd3b08828cb08e1da038bd887429543e55ce4597a802169445240e"; 143 } 144 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/et/firefox-97.0.tar.bz2"; 145 locale = "et"; 146 arch = "linux-x86_64"; 147 + sha256 = "5b929209e539d57d94ff0ce3e2bfd4da41ab06e60fe050e7351a09b91e08ee10"; 148 } 149 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/eu/firefox-97.0.tar.bz2"; 150 locale = "eu"; 151 arch = "linux-x86_64"; 152 + sha256 = "285dac2db38f2cec56b1bb5c81790dac85f6097de2262038fafdca42680246fe"; 153 } 154 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/fa/firefox-97.0.tar.bz2"; 155 locale = "fa"; 156 arch = "linux-x86_64"; 157 + sha256 = "fec85a746389ca7ee1e11d1e4b23f24fc31b4c72fd9628ca2772bdd544ff7f45"; 158 } 159 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/ff/firefox-97.0.tar.bz2"; 160 locale = "ff"; 161 arch = "linux-x86_64"; 162 + sha256 = "819c604b071e0f95cc3209d6ce0d6e733e4f15dc93a9154aa9b0a63c2b3c3af5"; 163 } 164 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/fi/firefox-97.0.tar.bz2"; 165 locale = "fi"; 166 arch = "linux-x86_64"; 167 + sha256 = "92e242fd2ea40389d0710ce798d795df9509fc0e0bbd93ec69ac29df93609e66"; 168 } 169 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/fr/firefox-97.0.tar.bz2"; 170 locale = "fr"; 171 arch = "linux-x86_64"; 172 + sha256 = "44e95b2045e407f08be367f17573520ceadbb1198d16f0fc2c200d265f904c56"; 173 } 174 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/fy-NL/firefox-97.0.tar.bz2"; 175 locale = "fy-NL"; 176 arch = "linux-x86_64"; 177 + sha256 = "abdc4e3bcf9e1d8b0aac777adc55ceb52cfca92e27523f22614b2347b6209ae4"; 178 } 179 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/ga-IE/firefox-97.0.tar.bz2"; 180 locale = "ga-IE"; 181 arch = "linux-x86_64"; 182 + sha256 = "699866a4b21d6c0015a0a65b937f784e4d66a24f0560f00b73c75b68ceaa2fb0"; 183 } 184 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/gd/firefox-97.0.tar.bz2"; 185 locale = "gd"; 186 arch = "linux-x86_64"; 187 + sha256 = "ad7a9847468cf3dd84f106b712ed9ff3824a9bcd8e15032fc371843b5357eb5f"; 188 } 189 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/gl/firefox-97.0.tar.bz2"; 190 locale = "gl"; 191 arch = "linux-x86_64"; 192 + sha256 = "efa8b59f8b7c7a3638adfcd31095dff88ba24016b8891f7cc496e9f286259559"; 193 } 194 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/gn/firefox-97.0.tar.bz2"; 195 locale = "gn"; 196 arch = "linux-x86_64"; 197 + sha256 = "e850bd2e1940f755c7eaa1c517972e2d2e7ae2bdf5fc75142fda1c7aad05e0b0"; 198 } 199 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/gu-IN/firefox-97.0.tar.bz2"; 200 locale = "gu-IN"; 201 arch = "linux-x86_64"; 202 + sha256 = "d74495e5369db197e614d99aefd2b26ab858511017b44c18da668d0a16a69a7d"; 203 } 204 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/he/firefox-97.0.tar.bz2"; 205 locale = "he"; 206 arch = "linux-x86_64"; 207 + sha256 = "c9889e3356e2a7cd99519f97c9f7053f2b1ccaafa48a3462cd4bb3192f174e43"; 208 } 209 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/hi-IN/firefox-97.0.tar.bz2"; 210 locale = "hi-IN"; 211 arch = "linux-x86_64"; 212 + sha256 = "3d02c2af702972412cc6923c426fd7235c7dafbf3a95f2a0703abc002813ef88"; 213 } 214 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/hr/firefox-97.0.tar.bz2"; 215 locale = "hr"; 216 arch = "linux-x86_64"; 217 + sha256 = "ac6eef6986bfea61aced2183eb592b2ff1d033e4ec60dbbfc4e2301947b3d40c"; 218 } 219 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/hsb/firefox-97.0.tar.bz2"; 220 locale = "hsb"; 221 arch = "linux-x86_64"; 222 + sha256 = "719e01cec8be4d16b6bef69d45bbe838a4ca8c3b84a1340c88de48511970379e"; 223 } 224 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/hu/firefox-97.0.tar.bz2"; 225 locale = "hu"; 226 arch = "linux-x86_64"; 227 + sha256 = "3774aee9afd211b50605ab76a213d36ba6692ff695fdb464ccd116dcb0a64d4c"; 228 } 229 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/hy-AM/firefox-97.0.tar.bz2"; 230 locale = "hy-AM"; 231 arch = "linux-x86_64"; 232 + sha256 = "d27c4148627a2f32bf4ee900e50b8f96805deaead292b4ccc33259c8fdabf626"; 233 } 234 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/ia/firefox-97.0.tar.bz2"; 235 locale = "ia"; 236 arch = "linux-x86_64"; 237 + sha256 = "d1bd6d3f5c78a3ec6e7caf25cd5befe1e35125aa2456431cb0487d968375798a"; 238 } 239 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/id/firefox-97.0.tar.bz2"; 240 locale = "id"; 241 arch = "linux-x86_64"; 242 + sha256 = "325af486e9faaa9202d013dcd9a6fd4e0b04237ccd54a132b79480475033e936"; 243 } 244 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/is/firefox-97.0.tar.bz2"; 245 locale = "is"; 246 arch = "linux-x86_64"; 247 + sha256 = "2b980ba98d7edcb737bb47d3eced8fde9a3285e43e345a52fe0d375343e841e5"; 248 } 249 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/it/firefox-97.0.tar.bz2"; 250 locale = "it"; 251 arch = "linux-x86_64"; 252 + sha256 = "b7f9c12f31e7306592a2640582b327c12f250f3237aed83848d37be0dc6a2647"; 253 } 254 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/ja/firefox-97.0.tar.bz2"; 255 locale = "ja"; 256 arch = "linux-x86_64"; 257 + sha256 = "7d535b695a0adf5a6068c33c03f0ab589fb00e33192fe855eca3953b94dd7a27"; 258 } 259 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/ka/firefox-97.0.tar.bz2"; 260 locale = "ka"; 261 arch = "linux-x86_64"; 262 + sha256 = "e712558a74a73600cb751b583be37294f7b23053b560bef3ba8468baf8614cd4"; 263 } 264 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/kab/firefox-97.0.tar.bz2"; 265 locale = "kab"; 266 arch = "linux-x86_64"; 267 + sha256 = "f46c4c90bf3a3da559e7c4cadc9bd6fea92dba6635058bf82a276b1483640951"; 268 } 269 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/kk/firefox-97.0.tar.bz2"; 270 locale = "kk"; 271 arch = "linux-x86_64"; 272 + sha256 = "379a45ae1b5f6fa2a039ab2bfdd342d40c5cc6ae556bd6f7ab54b79964533948"; 273 } 274 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/km/firefox-97.0.tar.bz2"; 275 locale = "km"; 276 arch = "linux-x86_64"; 277 + sha256 = "d619c47406d024691e63657e11dfb34624c01f120470f1acbffc2b39ab6f95a8"; 278 } 279 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/kn/firefox-97.0.tar.bz2"; 280 locale = "kn"; 281 arch = "linux-x86_64"; 282 + sha256 = "c058146a99dd06e71c61e780a232efca883e181b237ba03d0bc70942181109e2"; 283 } 284 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/ko/firefox-97.0.tar.bz2"; 285 locale = "ko"; 286 arch = "linux-x86_64"; 287 + sha256 = "f9d5f7d11c8ac517fc7f19b7d1c3dbf325a224c3a8993c6a91879e0aca05c3ba"; 288 } 289 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/lij/firefox-97.0.tar.bz2"; 290 locale = "lij"; 291 arch = "linux-x86_64"; 292 + sha256 = "2d450a105ff42bd396df813438085b88cf6a4fbd7c59af05be482a0e316e03df"; 293 } 294 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/lt/firefox-97.0.tar.bz2"; 295 locale = "lt"; 296 arch = "linux-x86_64"; 297 + sha256 = "ecd64fb4eaa169e36a36e039563ecc5de9cf97f655fffce496373dadd5e4b49a"; 298 } 299 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/lv/firefox-97.0.tar.bz2"; 300 locale = "lv"; 301 arch = "linux-x86_64"; 302 + sha256 = "a0fcb7699d6b76165b7274b2316c192dbd933ed39349148882a682c8d354497f"; 303 } 304 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/mk/firefox-97.0.tar.bz2"; 305 locale = "mk"; 306 arch = "linux-x86_64"; 307 + sha256 = "850f5589b9d4951738ed1d32bf14270191bfc34f7278243c42c7a745ee893e62"; 308 } 309 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/mr/firefox-97.0.tar.bz2"; 310 locale = "mr"; 311 arch = "linux-x86_64"; 312 + sha256 = "bc13f72cde29dd1ba5e770b929376572a9cdd4a755fce685b44e34af757f240f"; 313 } 314 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/ms/firefox-97.0.tar.bz2"; 315 locale = "ms"; 316 arch = "linux-x86_64"; 317 + sha256 = "bbb9fb8ae7548ffe1e1d982925d7b3933fbcded03c5bc31df606282c4d4f538f"; 318 } 319 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/my/firefox-97.0.tar.bz2"; 320 locale = "my"; 321 arch = "linux-x86_64"; 322 + sha256 = "05f5c5eca3d02480ec61b42ec92bd71c9d27a1e843439f527fa57ba7dc5762ab"; 323 } 324 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/nb-NO/firefox-97.0.tar.bz2"; 325 locale = "nb-NO"; 326 arch = "linux-x86_64"; 327 + sha256 = "715a82164dd577d36100bb28859efa1468e7213993e622eb97a44c4423c5829a"; 328 } 329 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/ne-NP/firefox-97.0.tar.bz2"; 330 locale = "ne-NP"; 331 arch = "linux-x86_64"; 332 + sha256 = "d7c55ac4e78309718caf4b1e911999f6d4a1558b885f9831747d4fbd3bffba55"; 333 } 334 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/nl/firefox-97.0.tar.bz2"; 335 locale = "nl"; 336 arch = "linux-x86_64"; 337 + sha256 = "6b539b2486aa1deff4b99828a319285ce73277c93bd863777f88b4a906b83c76"; 338 } 339 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/nn-NO/firefox-97.0.tar.bz2"; 340 locale = "nn-NO"; 341 arch = "linux-x86_64"; 342 + sha256 = "42777f881c86b597f7c39cef1651d65aabdae9d616d8a115a0a993867adba92f"; 343 } 344 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/oc/firefox-97.0.tar.bz2"; 345 locale = "oc"; 346 arch = "linux-x86_64"; 347 + sha256 = "76ad8b28abea06743e7e70a463ca39c6eae94dd406d7db27428246d190266aaf"; 348 } 349 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/pa-IN/firefox-97.0.tar.bz2"; 350 locale = "pa-IN"; 351 arch = "linux-x86_64"; 352 + sha256 = "8f30e7f2835c6421e41da2558d30448911d1eb4b84d4d9b076833d70450030b3"; 353 } 354 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/pl/firefox-97.0.tar.bz2"; 355 locale = "pl"; 356 arch = "linux-x86_64"; 357 + sha256 = "107b879c5c34608f1c5aca1cfc3c0722be2df4c1573a0bbc8cf0968742c11cf1"; 358 } 359 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/pt-BR/firefox-97.0.tar.bz2"; 360 locale = "pt-BR"; 361 arch = "linux-x86_64"; 362 + sha256 = "83f52f48d55efa4b52ffead877ba7fcf69823d136a307d2d84640edf586c4108"; 363 } 364 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/pt-PT/firefox-97.0.tar.bz2"; 365 locale = "pt-PT"; 366 arch = "linux-x86_64"; 367 + sha256 = "523f082daad8c56e258eb053ba0d2383cbd36a8924b01b57cc2efdaa85292d3a"; 368 } 369 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/rm/firefox-97.0.tar.bz2"; 370 locale = "rm"; 371 arch = "linux-x86_64"; 372 + sha256 = "798bdf60c52b331edbae3ed77734e1204696ba18c08b509b9465a999a7707484"; 373 } 374 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/ro/firefox-97.0.tar.bz2"; 375 locale = "ro"; 376 arch = "linux-x86_64"; 377 + sha256 = "811d95d5ecfa02e2f315ac1c6065251d9b7e7f862748a9466b3464c02687088f"; 378 } 379 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/ru/firefox-97.0.tar.bz2"; 380 locale = "ru"; 381 arch = "linux-x86_64"; 382 + sha256 = "dd9060448a645c7395d2abb75b1b6c0d33399ef7fc4ee7fa2474e4de4e5cd5ec"; 383 } 384 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/sco/firefox-97.0.tar.bz2"; 385 locale = "sco"; 386 arch = "linux-x86_64"; 387 + sha256 = "27f119009eae212234ce78dc77d66e99505c1a7058658b5cfd4952f5bd5b7732"; 388 } 389 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/si/firefox-97.0.tar.bz2"; 390 locale = "si"; 391 arch = "linux-x86_64"; 392 + sha256 = "73f37697e72ebc8ee72583ab2061f10dedd09a7c91dfcd00f051f9d372e10700"; 393 } 394 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/sk/firefox-97.0.tar.bz2"; 395 locale = "sk"; 396 arch = "linux-x86_64"; 397 + sha256 = "9aeb7a0a38defc38e7483c1fb6e939421cab6704dc69dd882b7dbf2c413af246"; 398 } 399 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/sl/firefox-97.0.tar.bz2"; 400 locale = "sl"; 401 arch = "linux-x86_64"; 402 + sha256 = "ff2020d595daf151fcf1d8c20614b848b8dac981f7ad9b9b11497fd3adb94a94"; 403 } 404 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/son/firefox-97.0.tar.bz2"; 405 locale = "son"; 406 arch = "linux-x86_64"; 407 + sha256 = "eb758e0772b33a955f0a69e673dc53c419e83b29e7003b90161555567bd0c9c6"; 408 } 409 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/sq/firefox-97.0.tar.bz2"; 410 locale = "sq"; 411 arch = "linux-x86_64"; 412 + sha256 = "8cfcd1863bb79e537547f296f08c6e34b441d110e0d360678aecb43564eaada7"; 413 } 414 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/sr/firefox-97.0.tar.bz2"; 415 locale = "sr"; 416 arch = "linux-x86_64"; 417 + sha256 = "84246cd93b2762e06af5aee56139484b70bb37dc10d8077c58323bca88ca86a0"; 418 } 419 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/sv-SE/firefox-97.0.tar.bz2"; 420 locale = "sv-SE"; 421 arch = "linux-x86_64"; 422 + sha256 = "b57f4a6ea4e8011c1fdf448d67afca9a028f76c9a08e399919937aaf3cd1bf84"; 423 } 424 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/szl/firefox-97.0.tar.bz2"; 425 locale = "szl"; 426 arch = "linux-x86_64"; 427 + sha256 = "71f1b134dc8b363856596e4c0b398641702d37811e84008c9efe36b3722e8633"; 428 } 429 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/ta/firefox-97.0.tar.bz2"; 430 locale = "ta"; 431 arch = "linux-x86_64"; 432 + sha256 = "25cc66d29ad3e85be20a620c40426d0afe65df22f75001ecffec733122006841"; 433 } 434 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/te/firefox-97.0.tar.bz2"; 435 locale = "te"; 436 arch = "linux-x86_64"; 437 + sha256 = "15dc00d56d31699e3d7089b82ad9e585be5a857b7b2e1056b678b2ecf9c50994"; 438 } 439 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/th/firefox-97.0.tar.bz2"; 440 locale = "th"; 441 arch = "linux-x86_64"; 442 + sha256 = "16629550b5eafbe3ad4c9137d3e89225050918dfca55bc898aa001084e1882bb"; 443 } 444 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/tl/firefox-97.0.tar.bz2"; 445 locale = "tl"; 446 arch = "linux-x86_64"; 447 + sha256 = "ad4ecfe3d7c103090d8642101543b6e2970fdefb3923afd28ac4f1602c926b3e"; 448 } 449 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/tr/firefox-97.0.tar.bz2"; 450 locale = "tr"; 451 arch = "linux-x86_64"; 452 + sha256 = "5d8b1b1dd0ae04869be672f098ceb1ddd3b70be40fd5c09d52006120a434f3f9"; 453 } 454 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/trs/firefox-97.0.tar.bz2"; 455 locale = "trs"; 456 arch = "linux-x86_64"; 457 + sha256 = "f64a6a311034b7d02737bc1ed5aac991286a42463554c10eb96795cd1a5d169d"; 458 } 459 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/uk/firefox-97.0.tar.bz2"; 460 locale = "uk"; 461 arch = "linux-x86_64"; 462 + sha256 = "b0e98a5ddb7ec8bce8dd456c6587733ac6bde6f8058cfcd735f10751d4b95d92"; 463 } 464 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/ur/firefox-97.0.tar.bz2"; 465 locale = "ur"; 466 arch = "linux-x86_64"; 467 + sha256 = "d6fdbc3111b040a8b4880d81e22aa76abfe45ff05d551950324ffcbff2cb8eef"; 468 } 469 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/uz/firefox-97.0.tar.bz2"; 470 locale = "uz"; 471 arch = "linux-x86_64"; 472 + sha256 = "4d806ff1b92ce4ec56f49d0ec474c5bcf01bbfb2aa46ce3ed3eb3297658cf185"; 473 } 474 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/vi/firefox-97.0.tar.bz2"; 475 locale = "vi"; 476 arch = "linux-x86_64"; 477 + sha256 = "0ee797028b2464417fef119de35e78895e0c14d43c8344e3bb5332e71958fa76"; 478 } 479 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/xh/firefox-97.0.tar.bz2"; 480 locale = "xh"; 481 arch = "linux-x86_64"; 482 + sha256 = "6c3acd60b0124f23403160c3194e3c1624d16c7c4450c2eeae929ba562e138c8"; 483 } 484 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/zh-CN/firefox-97.0.tar.bz2"; 485 locale = "zh-CN"; 486 arch = "linux-x86_64"; 487 + sha256 = "22606e4647d267ec369382ecca328e2022becaf6600449da482cc3d402fd60f3"; 488 } 489 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-x86_64/zh-TW/firefox-97.0.tar.bz2"; 490 locale = "zh-TW"; 491 arch = "linux-x86_64"; 492 + sha256 = "7046246516f83e6747706e164f75b03ea5358c9ef262a2eebe9091eb67037791"; 493 } 494 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/ach/firefox-97.0.tar.bz2"; 495 locale = "ach"; 496 arch = "linux-i686"; 497 + sha256 = "8f2b6c27b89643661fb6c457daea22403787d9255da83f57cc1ece1c133ff6f7"; 498 } 499 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/af/firefox-97.0.tar.bz2"; 500 locale = "af"; 501 arch = "linux-i686"; 502 + sha256 = "f0066a19fe65b6d4a32e202a09bd2e454d5265e424543235ce4dd5c440c6f492"; 503 } 504 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/an/firefox-97.0.tar.bz2"; 505 locale = "an"; 506 arch = "linux-i686"; 507 + sha256 = "7aeb5226c869c2ba438ba62a49e0a1b5dbaca2c4b7a427794ad2603e522024b5"; 508 } 509 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/ar/firefox-97.0.tar.bz2"; 510 locale = "ar"; 511 arch = "linux-i686"; 512 + sha256 = "6e8d27e6ce8051e918e0ce29976aa048d58a38b31fe6ade18965881bdb07268d"; 513 } 514 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/ast/firefox-97.0.tar.bz2"; 515 locale = "ast"; 516 arch = "linux-i686"; 517 + sha256 = "e1814ef2b6f314fc46693e822a8bb7f6340bdda8af9a48d2534aa8a385e1646e"; 518 } 519 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/az/firefox-97.0.tar.bz2"; 520 locale = "az"; 521 arch = "linux-i686"; 522 + sha256 = "14d3bcd5251620d59764c9c905c56f8332174ff1bbe78087cdb73e1803edf3cc"; 523 } 524 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/be/firefox-97.0.tar.bz2"; 525 locale = "be"; 526 arch = "linux-i686"; 527 + sha256 = "903eaf9f4ebe60d69605da083733cca327b25fa9842c9c9384600b4a4b6d6fbe"; 528 } 529 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/bg/firefox-97.0.tar.bz2"; 530 locale = "bg"; 531 arch = "linux-i686"; 532 + sha256 = "e71e1fab1a87d4346e5f8a90b8f674eb10af292a5bf640a94cb7d765d6217b46"; 533 } 534 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/bn/firefox-97.0.tar.bz2"; 535 locale = "bn"; 536 arch = "linux-i686"; 537 + sha256 = "f815f71dc8a1f288c7fc62978b8bfba1e53323459f99de0ac931d9f6c266e641"; 538 } 539 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/br/firefox-97.0.tar.bz2"; 540 locale = "br"; 541 arch = "linux-i686"; 542 + sha256 = "4443dcd0d1e1fbaa7f52884734bdf2378caeeece0e2f62f36b56eb6aea8b73bc"; 543 } 544 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/bs/firefox-97.0.tar.bz2"; 545 locale = "bs"; 546 arch = "linux-i686"; 547 + sha256 = "0d02992545c745b95c341204585b0163ce32938a7112903f7878c91196c883ba"; 548 } 549 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/ca-valencia/firefox-97.0.tar.bz2"; 550 locale = "ca-valencia"; 551 arch = "linux-i686"; 552 + sha256 = "bcd25813e25d30f4d6e3cfc999c02c014f2d6335e52ff4c46226540bdc0c720c"; 553 } 554 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/ca/firefox-97.0.tar.bz2"; 555 locale = "ca"; 556 arch = "linux-i686"; 557 + sha256 = "dc5874fe3c9e9fb01cda7e7dfcf93ce3c9de2e8a65b7443e231e193ef4debb14"; 558 } 559 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/cak/firefox-97.0.tar.bz2"; 560 locale = "cak"; 561 arch = "linux-i686"; 562 + sha256 = "979008d2f21b0cdeb877841e66dd6013c32d8eb00a7bfe95fc3343d66bd3eff8"; 563 } 564 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/cs/firefox-97.0.tar.bz2"; 565 locale = "cs"; 566 arch = "linux-i686"; 567 + sha256 = "27a831c18f74e449a624905c18485989391b4e8769f1ac2646e2567a6cccc91f"; 568 } 569 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/cy/firefox-97.0.tar.bz2"; 570 locale = "cy"; 571 arch = "linux-i686"; 572 + sha256 = "a6cb71d9eb5d19a00818faf353b7f454e38316fadb242150948fb9ab485133ab"; 573 } 574 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/da/firefox-97.0.tar.bz2"; 575 locale = "da"; 576 arch = "linux-i686"; 577 + sha256 = "2224b753fc1e9355ebffcf381adce940e1e517e33e11098d3a8e92ea36216eb7"; 578 } 579 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/de/firefox-97.0.tar.bz2"; 580 locale = "de"; 581 arch = "linux-i686"; 582 + sha256 = "aa7f041d58eedb41b7460574d736cbed6bd990dc68de6687f143e9a2cd450ce1"; 583 } 584 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/dsb/firefox-97.0.tar.bz2"; 585 locale = "dsb"; 586 arch = "linux-i686"; 587 + sha256 = "7d14ef8d451e8274c3a03af9111c3d1f09cc83fad57ee0a6f84366428bed417e"; 588 } 589 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/el/firefox-97.0.tar.bz2"; 590 locale = "el"; 591 arch = "linux-i686"; 592 + sha256 = "bebc24fd34af4d3a7d5820a0df0a2753956a82034603c4a71441b8cb66b99066"; 593 } 594 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/en-CA/firefox-97.0.tar.bz2"; 595 locale = "en-CA"; 596 arch = "linux-i686"; 597 + sha256 = "f39a52a27af7b68f683df373a35b29848fa990fb6fc251a511f0525061e6f930"; 598 } 599 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/en-GB/firefox-97.0.tar.bz2"; 600 locale = "en-GB"; 601 arch = "linux-i686"; 602 + sha256 = "858e86a232cf23be1ca2c6aff1954d28782f8e893c096d8263e486b92a6498f2"; 603 } 604 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/en-US/firefox-97.0.tar.bz2"; 605 locale = "en-US"; 606 arch = "linux-i686"; 607 + sha256 = "7df5164de2eea1c32657c6ba813664a15ba5a198ac1a19c32ab494f9fab1d39c"; 608 } 609 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/eo/firefox-97.0.tar.bz2"; 610 locale = "eo"; 611 arch = "linux-i686"; 612 + sha256 = "c48804fe31c7ec37676fe2f875b61faa992aa2dc1ff67bb5b3033b790e927d79"; 613 } 614 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/es-AR/firefox-97.0.tar.bz2"; 615 locale = "es-AR"; 616 arch = "linux-i686"; 617 + sha256 = "4aef2060aca1d24a2ae0ad8e6f9029ab0cc1296bc2efc53ce4f28073f6b15757"; 618 } 619 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/es-CL/firefox-97.0.tar.bz2"; 620 locale = "es-CL"; 621 arch = "linux-i686"; 622 + sha256 = "5423bbcea8a0454202c099fb66a39eba4a274d2062f45464783c9a8aee5c2305"; 623 } 624 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/es-ES/firefox-97.0.tar.bz2"; 625 locale = "es-ES"; 626 arch = "linux-i686"; 627 + sha256 = "cbc1dcbcf7c2e3602507826e9d2e299f213855c5e7aa1968cdc2fd19a1fee872"; 628 } 629 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/es-MX/firefox-97.0.tar.bz2"; 630 locale = "es-MX"; 631 arch = "linux-i686"; 632 + sha256 = "9225ef8b083b8b7fb91cd142ec204a53d74ef49518db6f9f5eb98851ecf52def"; 633 } 634 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/et/firefox-97.0.tar.bz2"; 635 locale = "et"; 636 arch = "linux-i686"; 637 + sha256 = "32d4dbf6ab64e7a54fed85c6ff58d514e43b4427a30e5009f157a21bf21997d8"; 638 } 639 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/eu/firefox-97.0.tar.bz2"; 640 locale = "eu"; 641 arch = "linux-i686"; 642 + sha256 = "576696120b4dfc64174a0a208506482dfb24cf45bc4794c4d4255796539b85d4"; 643 } 644 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/fa/firefox-97.0.tar.bz2"; 645 locale = "fa"; 646 arch = "linux-i686"; 647 + sha256 = "96b394c28bc77fd4d650196b75e266c70774af5a4f6f49c813cdbd5d0ad6de9e"; 648 } 649 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/ff/firefox-97.0.tar.bz2"; 650 locale = "ff"; 651 arch = "linux-i686"; 652 + sha256 = "d9aa3dac84c96163bf3c2a4370d7cf1a27045b8c506df3da2c8751bde80e1a44"; 653 } 654 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/fi/firefox-97.0.tar.bz2"; 655 locale = "fi"; 656 arch = "linux-i686"; 657 + sha256 = "594e1b265abd354aabd180af2e9099f5d22eaab05d66dbd7511468dee0fb31df"; 658 } 659 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/fr/firefox-97.0.tar.bz2"; 660 locale = "fr"; 661 arch = "linux-i686"; 662 + sha256 = "542441111026dca84050e6ecec1007dce9910d41d8f961a2dc6a4ed49a7aba6b"; 663 } 664 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/fy-NL/firefox-97.0.tar.bz2"; 665 locale = "fy-NL"; 666 arch = "linux-i686"; 667 + sha256 = "40ea9e076c5df6c81a4c19960a2c96f83a8174817db33aff882d4c121e58d8de"; 668 } 669 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/ga-IE/firefox-97.0.tar.bz2"; 670 locale = "ga-IE"; 671 arch = "linux-i686"; 672 + sha256 = "b7839aeae2734ac52fad253311e255a5e5d203ae117730bb9bd8a414489f300a"; 673 } 674 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/gd/firefox-97.0.tar.bz2"; 675 locale = "gd"; 676 arch = "linux-i686"; 677 + sha256 = "86820d66c8f6e7a03f4a73b564d0f94bd70477a4e5d74b27f7cfc23f70d0b559"; 678 } 679 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/gl/firefox-97.0.tar.bz2"; 680 locale = "gl"; 681 arch = "linux-i686"; 682 + sha256 = "4c121697d38f717cbf66d48bf9af5d65d67e2e3458ad17ac72266b522e89c6c1"; 683 } 684 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/gn/firefox-97.0.tar.bz2"; 685 locale = "gn"; 686 arch = "linux-i686"; 687 + sha256 = "71a823797c386c3b50e4034bcd404197f40af00128eedc614638bda51a7bdeca"; 688 } 689 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/gu-IN/firefox-97.0.tar.bz2"; 690 locale = "gu-IN"; 691 arch = "linux-i686"; 692 + sha256 = "498a2222df5fc34e2565b76a797723d8e01a7569c168fb549fe07cb6b1d20c2d"; 693 } 694 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/he/firefox-97.0.tar.bz2"; 695 locale = "he"; 696 arch = "linux-i686"; 697 + sha256 = "7b86815403bda8e156ad2d461391b81f869222ce93ead4bf40fadb2c687dc850"; 698 } 699 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/hi-IN/firefox-97.0.tar.bz2"; 700 locale = "hi-IN"; 701 arch = "linux-i686"; 702 + sha256 = "068b26208c44b2c5fe46c29e5a1c4e98ee1eb81f335cde5935575e05088fd18a"; 703 } 704 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/hr/firefox-97.0.tar.bz2"; 705 locale = "hr"; 706 arch = "linux-i686"; 707 + sha256 = "876985390499fb65e29c91ae1410c41959d9baef96cf0857baf4988e7ac2e94f"; 708 } 709 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/hsb/firefox-97.0.tar.bz2"; 710 locale = "hsb"; 711 arch = "linux-i686"; 712 + sha256 = "d366bf448d82abda3cf1728fb4bd57489010fef0885e5f0d4eb5c8d371e004ca"; 713 } 714 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/hu/firefox-97.0.tar.bz2"; 715 locale = "hu"; 716 arch = "linux-i686"; 717 + sha256 = "5b080f77d0990a026a73bdc298ab1bfc3e1bbc07714646e3ebf0c064104b58f9"; 718 } 719 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/hy-AM/firefox-97.0.tar.bz2"; 720 locale = "hy-AM"; 721 arch = "linux-i686"; 722 + sha256 = "86a9c6285a87ecb3f41f4c894f4b27f28975daf487cab8600e18c6a7f8446919"; 723 } 724 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/ia/firefox-97.0.tar.bz2"; 725 locale = "ia"; 726 arch = "linux-i686"; 727 + sha256 = "fdba1012d16a7b4fe98cabc7527a7c912f81383e09d7f3d195248b52072a3040"; 728 } 729 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/id/firefox-97.0.tar.bz2"; 730 locale = "id"; 731 arch = "linux-i686"; 732 + sha256 = "0cde2aeae0bc24841d8487880d80b0842c3d738d110c6235a2b09b03df366e74"; 733 } 734 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/is/firefox-97.0.tar.bz2"; 735 locale = "is"; 736 arch = "linux-i686"; 737 + sha256 = "76dccb349d505794a13863960d432f1362c1d24df25e0152e710aa661760d95c"; 738 } 739 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/it/firefox-97.0.tar.bz2"; 740 locale = "it"; 741 arch = "linux-i686"; 742 + sha256 = "b8f85fdafff993e12e02cc9fda1c79e38c06a1cff6c04a75edfcf227e2e4b6f5"; 743 } 744 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/ja/firefox-97.0.tar.bz2"; 745 locale = "ja"; 746 arch = "linux-i686"; 747 + sha256 = "2880b426221b983e92248e7e1a58e7b5940c6a782d6f6abe8679b3dce09b675b"; 748 } 749 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/ka/firefox-97.0.tar.bz2"; 750 locale = "ka"; 751 arch = "linux-i686"; 752 + sha256 = "d2dd3f4061dce484eb40c4f7d8a3101bbf4e838e657c4cf3b7fd31efe5ac1556"; 753 } 754 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/kab/firefox-97.0.tar.bz2"; 755 locale = "kab"; 756 arch = "linux-i686"; 757 + sha256 = "c49cd9e7a5786fcd2d123bef197c1361b07644244e869bc038dd2ca1022da089"; 758 } 759 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/kk/firefox-97.0.tar.bz2"; 760 locale = "kk"; 761 arch = "linux-i686"; 762 + sha256 = "466dbe14d44fcc547d5bba6d8475f908af0cc8fc5a788edcc9ea314b74e01aae"; 763 } 764 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/km/firefox-97.0.tar.bz2"; 765 locale = "km"; 766 arch = "linux-i686"; 767 + sha256 = "67499ddaf97d90f07cbb8e7bec337287346d964630a73e99a192be94ac38f19d"; 768 } 769 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/kn/firefox-97.0.tar.bz2"; 770 locale = "kn"; 771 arch = "linux-i686"; 772 + sha256 = "1c661152b25860acd10d6ca039107957ce8811b448c88c55df0627436ef35955"; 773 } 774 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/ko/firefox-97.0.tar.bz2"; 775 locale = "ko"; 776 arch = "linux-i686"; 777 + sha256 = "d43000c9c03f855e2d3b061d085c4c1dddce06b511145370cacb0e11e272382e"; 778 } 779 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/lij/firefox-97.0.tar.bz2"; 780 locale = "lij"; 781 arch = "linux-i686"; 782 + sha256 = "d330473b0a20100c9fcfbbb6488dbf367a21816683a1b21b861a729defbbcfc2"; 783 } 784 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/lt/firefox-97.0.tar.bz2"; 785 locale = "lt"; 786 arch = "linux-i686"; 787 + sha256 = "0d89e5bb389c6d4ab91965141d5f16bc6e34b1cf2a7022e4d97db135501b3cce"; 788 } 789 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/lv/firefox-97.0.tar.bz2"; 790 locale = "lv"; 791 arch = "linux-i686"; 792 + sha256 = "754b82aa04425353fb85a02fcfaa02a47f6f2e5218af4e814970c91282c77e82"; 793 } 794 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/mk/firefox-97.0.tar.bz2"; 795 locale = "mk"; 796 arch = "linux-i686"; 797 + sha256 = "e554245a73bca28a816c1f4605164554a8a2680fb098aee3020c972c1e535541"; 798 } 799 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/mr/firefox-97.0.tar.bz2"; 800 locale = "mr"; 801 arch = "linux-i686"; 802 + sha256 = "e3a0daf03fe745268e08a82b53a94c192dbf499d9f7fc556f835552a2002bf63"; 803 } 804 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/ms/firefox-97.0.tar.bz2"; 805 locale = "ms"; 806 arch = "linux-i686"; 807 + sha256 = "dca49aebc098103f212a16ab135de42aa3a7eae98cf3775c9d3c8e48d27816e3"; 808 } 809 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/my/firefox-97.0.tar.bz2"; 810 locale = "my"; 811 arch = "linux-i686"; 812 + sha256 = "471986bf5b5aa0f63c9953a465cb2ce527699f497ed720defe80aef8b7dbe249"; 813 } 814 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/nb-NO/firefox-97.0.tar.bz2"; 815 locale = "nb-NO"; 816 arch = "linux-i686"; 817 + sha256 = "d184e4b06acca71983b6a075c5d4d70a5419162a96ba5ef612b9a7e9727759ec"; 818 } 819 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/ne-NP/firefox-97.0.tar.bz2"; 820 locale = "ne-NP"; 821 arch = "linux-i686"; 822 + sha256 = "7a8ebb648a0aac4c7d101e99da6a396ed5f3bb7688b59cee94f67aa6f627d4aa"; 823 } 824 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/nl/firefox-97.0.tar.bz2"; 825 locale = "nl"; 826 arch = "linux-i686"; 827 + sha256 = "6f24663da51d9c38b1e66e0064a161630da5f0a9e8a5920f63b76ef96d7d6a93"; 828 } 829 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/nn-NO/firefox-97.0.tar.bz2"; 830 locale = "nn-NO"; 831 arch = "linux-i686"; 832 + sha256 = "9f02fb57edac62277fd649f5da56d14eb52940581adbcf6b970883cb020ad0c2"; 833 } 834 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/oc/firefox-97.0.tar.bz2"; 835 locale = "oc"; 836 arch = "linux-i686"; 837 + sha256 = "766c5f0ea370fc0c2fa3c39096a9bb1d0f1b71c6c0a410f34bdbd21469d932db"; 838 } 839 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/pa-IN/firefox-97.0.tar.bz2"; 840 locale = "pa-IN"; 841 arch = "linux-i686"; 842 + sha256 = "d5f44b2116490596780d4af5e14f815e40e344a1b29cae556957a0b537aaa8cc"; 843 } 844 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/pl/firefox-97.0.tar.bz2"; 845 locale = "pl"; 846 arch = "linux-i686"; 847 + sha256 = "5dab218cd9efe307e844913218769eb845b6abe4153191dad34b8f9853a2fd73"; 848 } 849 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/pt-BR/firefox-97.0.tar.bz2"; 850 locale = "pt-BR"; 851 arch = "linux-i686"; 852 + sha256 = "20d3a3f3f3e037780de788f858d3c9c4d778219a9158cbb1496ba968e9f50b32"; 853 } 854 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/pt-PT/firefox-97.0.tar.bz2"; 855 locale = "pt-PT"; 856 arch = "linux-i686"; 857 + sha256 = "a97777d502c304541d1fb2c177198dc41d46e66052008f0adaa97141b4fb81c0"; 858 } 859 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/rm/firefox-97.0.tar.bz2"; 860 locale = "rm"; 861 arch = "linux-i686"; 862 + sha256 = "b008b8767060459644fe8a1221b6b02710393d8074d685dc60f188424c6272fd"; 863 } 864 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/ro/firefox-97.0.tar.bz2"; 865 locale = "ro"; 866 arch = "linux-i686"; 867 + sha256 = "9716c8abba493f6f2f627276aeeb0e7a434301bf59142a0ec90a35f0d683df89"; 868 } 869 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/ru/firefox-97.0.tar.bz2"; 870 locale = "ru"; 871 arch = "linux-i686"; 872 + sha256 = "8cb413a6ca340356c9ba3500e6e683d7d6e807b56e44651f69252e82d31f2484"; 873 } 874 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/sco/firefox-97.0.tar.bz2"; 875 locale = "sco"; 876 arch = "linux-i686"; 877 + sha256 = "a6df0b4240863b6a41f8a10d3d73577e0391cb98fecc82b544ea33099cff2d15"; 878 } 879 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/si/firefox-97.0.tar.bz2"; 880 locale = "si"; 881 arch = "linux-i686"; 882 + sha256 = "bc7bbe3c418d78afca0ab5f1907ee6d95e7e1488101e2adea56e4efc3ee53584"; 883 } 884 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/sk/firefox-97.0.tar.bz2"; 885 locale = "sk"; 886 arch = "linux-i686"; 887 + sha256 = "56f7be236c7d0135e6d3a9fe2e7d173c7f7c9c95dd46f170ed616dba8d1c4edc"; 888 } 889 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/sl/firefox-97.0.tar.bz2"; 890 locale = "sl"; 891 arch = "linux-i686"; 892 + sha256 = "eb4c4c11ef6f853d88447a96381093ac37130728ef131a6ec7f74a84803298df"; 893 } 894 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/son/firefox-97.0.tar.bz2"; 895 locale = "son"; 896 arch = "linux-i686"; 897 + sha256 = "49cad9188901a1fda74afab30dbc430c465c2a8f91b03499d5bf55f361ec9c97"; 898 } 899 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/sq/firefox-97.0.tar.bz2"; 900 locale = "sq"; 901 arch = "linux-i686"; 902 + sha256 = "c2080aa59871af97b1ebba2e25f32fc0ab88cf5c407c43f63406dcc3c2fa5087"; 903 } 904 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/sr/firefox-97.0.tar.bz2"; 905 locale = "sr"; 906 arch = "linux-i686"; 907 + sha256 = "e4c0723595f741bc306a066b96c11f8c125c1e7cf2c70998548a8b77375fa8ad"; 908 } 909 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/sv-SE/firefox-97.0.tar.bz2"; 910 locale = "sv-SE"; 911 arch = "linux-i686"; 912 + sha256 = "665d95546dbcf38e91102a559ad7063052b8554f5f8799c127231b93d0d75744"; 913 } 914 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/szl/firefox-97.0.tar.bz2"; 915 locale = "szl"; 916 arch = "linux-i686"; 917 + sha256 = "f85aca1b01a2ae08915c893d25ce6243c405fe3e32f18cc28e111451cae006b7"; 918 } 919 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/ta/firefox-97.0.tar.bz2"; 920 locale = "ta"; 921 arch = "linux-i686"; 922 + sha256 = "3d263a4ab9991f25cdc130f42f8bf37212f06fd614966cec0f42a9e5e3585a1a"; 923 } 924 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/te/firefox-97.0.tar.bz2"; 925 locale = "te"; 926 arch = "linux-i686"; 927 + sha256 = "59ad98ba6c2b4f9eab95c200ca36d884fc7b7d99e0c121fc7bd8867a2a1cad05"; 928 } 929 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/th/firefox-97.0.tar.bz2"; 930 locale = "th"; 931 arch = "linux-i686"; 932 + sha256 = "c1f73e025dad87d5314093abbeabef1e0107dd4f29c3a8cec2f7ab1c01d8a0e8"; 933 } 934 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/tl/firefox-97.0.tar.bz2"; 935 locale = "tl"; 936 arch = "linux-i686"; 937 + sha256 = "a71fcb2727d70e02bb2d50e1284b4c783d227c2da3940c918c7e7eaa2cebbbda"; 938 } 939 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/tr/firefox-97.0.tar.bz2"; 940 locale = "tr"; 941 arch = "linux-i686"; 942 + sha256 = "597a37f249f46ec9bedc4605afb5c13b213c4eee1d1544a1f74a645446d92e1e"; 943 } 944 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/trs/firefox-97.0.tar.bz2"; 945 locale = "trs"; 946 arch = "linux-i686"; 947 + sha256 = "f6a93b3835aabe44781fb73985193d6c704202cefdcc2823ea77cb13df8844ff"; 948 } 949 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/uk/firefox-97.0.tar.bz2"; 950 locale = "uk"; 951 arch = "linux-i686"; 952 + sha256 = "ba11ca8bf215bf0190b273374228db3019baa6db85a5acb372dbe550d94148fa"; 953 } 954 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/ur/firefox-97.0.tar.bz2"; 955 locale = "ur"; 956 arch = "linux-i686"; 957 + sha256 = "61e9becb283fdd38961bc79629e332946fc449d40b37163d46303de9dab2eb26"; 958 } 959 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/uz/firefox-97.0.tar.bz2"; 960 locale = "uz"; 961 arch = "linux-i686"; 962 + sha256 = "9e47cd99a5a5309c7b388a4e17e0101558bfdd397ad0caee82902e8d56d652e0"; 963 } 964 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/vi/firefox-97.0.tar.bz2"; 965 locale = "vi"; 966 arch = "linux-i686"; 967 + sha256 = "e2fb08af58be123b81edf9d7ec0dd532388fb81a7cf9a2952012b5758f5329f8"; 968 } 969 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/xh/firefox-97.0.tar.bz2"; 970 locale = "xh"; 971 arch = "linux-i686"; 972 + sha256 = "cc19114d522b0e9bf00dd2293e80643919229262afb01316e95e34f4fc18dbca"; 973 } 974 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/zh-CN/firefox-97.0.tar.bz2"; 975 locale = "zh-CN"; 976 arch = "linux-i686"; 977 + sha256 = "11c608bb9511dc12e8c55d31fbf322a2524aec99ce90fea35a5d83d7282976d0"; 978 } 979 + { url = "http://archive.mozilla.org/pub/firefox/releases/97.0/linux-i686/zh-TW/firefox-97.0.tar.bz2"; 980 locale = "zh-TW"; 981 arch = "linux-i686"; 982 + sha256 = "6a0268efa615f9559d258cfc05f113d54700d81c5ca0546054c10b9879d76d2d"; 983 } 984 ]; 985 }
+2 -3
pkgs/applications/networking/browsers/firefox/common.nix
··· 134 lib.optional (lib.versionAtLeast version "90" && lib.versionOlder version "95") ./no-buildconfig-ffx90.patch ++ 135 lib.optional (lib.versionAtLeast version "96") ./no-buildconfig-ffx96.patch ++ 136 137 - # Fix wayland 1.20 compatibility (https://bugzilla.mozilla.org/show_bug.cgi?id=1745560:) 138 - lib.optional (lib.versionOlder version "96") ./fix-build-with-wayland-1.20.patch ++ 139 - 140 patches; 141 142 # Ignore trivial whitespace changes in patches, this fixes compatibility of ··· 178 rm -rf obj-x86_64-pc-linux-gnu 179 substituteInPlace toolkit/xre/glxtest.cpp \ 180 --replace 'dlopen("libpci.so' 'dlopen("${pciutils}/lib/libpci.so' 181 ''; 182 183 nativeBuildInputs =
··· 134 lib.optional (lib.versionAtLeast version "90" && lib.versionOlder version "95") ./no-buildconfig-ffx90.patch ++ 135 lib.optional (lib.versionAtLeast version "96") ./no-buildconfig-ffx96.patch ++ 136 137 patches; 138 139 # Ignore trivial whitespace changes in patches, this fixes compatibility of ··· 175 rm -rf obj-x86_64-pc-linux-gnu 176 substituteInPlace toolkit/xre/glxtest.cpp \ 177 --replace 'dlopen("libpci.so' 'dlopen("${pciutils}/lib/libpci.so' 178 + 179 + patchShebangs mach 180 ''; 181 182 nativeBuildInputs =
-13
pkgs/applications/networking/browsers/firefox/fix-build-with-wayland-1.20.patch
··· 1 - diff --git a/widget/gtk/mozwayland/mozwayland.c b/widget/gtk/mozwayland/mozwayland.c 2 - index 7a448e6..7792581 100644 3 - --- a/widget/gtk/mozwayland/mozwayland.c 4 - +++ b/widget/gtk/mozwayland/mozwayland.c 5 - @@ -200,3 +200,8 @@ MOZ_EXPORT int wl_list_empty(const struct wl_list* list) { return -1; } 6 - 7 - MOZ_EXPORT void wl_list_insert_list(struct wl_list* list, 8 - struct wl_list* other) {} 9 - + 10 - +MOZ_EXPORT struct wl_proxy * 11 - +wl_proxy_marshal_flags(struct wl_proxy *proxy, uint32_t opcode, 12 - + const struct wl_interface *interface, uint32_t version, 13 - + uint32_t flags, ...) { return NULL; }
···
+4 -4
pkgs/applications/networking/browsers/firefox/packages.nix
··· 7 rec { 8 firefox = common rec { 9 pname = "firefox"; 10 - version = "96.0.3"; 11 src = fetchurl { 12 url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz"; 13 - sha512 = "3dd5fbc96e369d5f4fb3eca778c2bd3e2313d089f867de9fac3556810a797e9b5629ef1b8840fb2f22a18df7de95ea1993eee052f691d861a555cea544b05966"; 14 }; 15 16 meta = { ··· 32 33 firefox-esr-91 = common rec { 34 pname = "firefox-esr"; 35 - version = "91.5.1esr"; 36 src = fetchurl { 37 url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz"; 38 - sha512 = "26239e7a94b79f1e24a6667d7cf1c398d75992e8850144affbc5d3f34f04b91f0c9b020cab662b2cd4927924839ff2ddd2f3605c537bb5494fd9ac0d951b14fa"; 39 }; 40 41 meta = {
··· 7 rec { 8 firefox = common rec { 9 pname = "firefox"; 10 + version = "97.0"; 11 src = fetchurl { 12 url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz"; 13 + sha512 = "a913695a42cb06ee9bda2a20e65cc573e40ca93e9f75b7ee0a43ebd1935b371e7e80d5fc8d5f126ad0712ab848635a8624bbeed43807e5c179537aa32c884186"; 14 }; 15 16 meta = { ··· 32 33 firefox-esr-91 = common rec { 34 pname = "firefox-esr"; 35 + version = "91.6.0esr"; 36 src = fetchurl { 37 url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz"; 38 + sha512 = "3dd1929f93cdd087a93fc3597f32d9005c986b59832954e01a8c2472b179c92ad611eaa73d3fc000a08b838a0b70da73ff5ba82d6009160655ba6894cf04520e"; 39 }; 40 41 meta = {
+4 -4
pkgs/applications/networking/cluster/fluxcd/default.nix
··· 1 { lib, buildGoModule, fetchFromGitHub, fetchzip, installShellFiles }: 2 3 let 4 - version = "0.26.1"; 5 - sha256 = "10l02cw0ypci9vaman1nm9z36fshqwwf0gk16rvsc82d02lv4iq5"; 6 - manifestsSha256 = "0gffjmcxsf9c4f6g60nwq88snm6lar0qd53xp0csr4n5sy7zg6dm"; 7 8 manifests = fetchzip { 9 url = ··· 23 inherit sha256; 24 }; 25 26 - vendorSha256 = "sha256-IJGp4QWZbTzPHeawyjJI0aN4LP5ZV2mb5pUusfQ4rfE="; 27 28 postUnpack = '' 29 cp -r ${manifests} source/cmd/flux/manifests
··· 1 { lib, buildGoModule, fetchFromGitHub, fetchzip, installShellFiles }: 2 3 let 4 + version = "0.26.2"; 5 + sha256 = "1p99bjqlwyibycpby9fnzfmfd826zaw7k7d4f4p4gjpd7dphlrp1"; 6 + manifestsSha256 = "1s1hx754xa63s7in7gcrr146nkyvadba6vmy1bagjcxibxc3qdqy"; 7 8 manifests = fetchzip { 9 url = ··· 23 inherit sha256; 24 }; 25 26 + vendorSha256 = "sha256-9MMEqJiplg7kmMmbHnTBEQ+GF+dBL7bpzs5Q0IYcMXU="; 27 28 postUnpack = '' 29 cp -r ${manifests} source/cmd/flux/manifests
+34 -34
pkgs/applications/networking/cluster/terraform-providers/default.nix
··· 10 # Our generic constructor to build new providers. 11 # 12 # Is designed to combine with the terraform.withPlugins implementation. 13 - mkProvider = 14 - { owner 15 - , repo 16 - , rev 17 - , version 18 - , sha256 19 - , vendorSha256 ? throw "vendorSha256 missing: please use `buildGoModule`" /* added 2022/01 */ 20 - , deleteVendor ? false 21 - , proxyVendor ? false 22 - , # Looks like "registry.terraform.io/vancluever/acme" 23 - provider-source-address 24 - }@attrs: 25 - buildGoModule { 26 - pname = repo; 27 - inherit vendorSha256 version deleteVendor proxyVendor; 28 - subPackages = [ "." ]; 29 - doCheck = false; 30 - # https://github.com/hashicorp/terraform-provider-scaffolding/blob/a8ac8375a7082befe55b71c8cbb048493dd220c2/.goreleaser.yml 31 - # goreleaser (used for builds distributed via terraform registry) requires that CGO is disabled 32 - CGO_ENABLED = 0; 33 - ldflags = [ "-s" "-w" "-X main.version=${version}" "-X main.commit=${rev}" ]; 34 - src = fetchFromGitHub { 35 - inherit owner repo rev sha256; 36 - }; 37 38 - # Move the provider to libexec 39 - postInstall = '' 40 - dir=$out/libexec/terraform-providers/${provider-source-address}/${version}/''${GOOS}_''${GOARCH} 41 - mkdir -p "$dir" 42 - mv $out/bin/* "$dir/terraform-provider-$(basename ${provider-source-address})_${version}" 43 - rmdir $out/bin 44 - ''; 45 46 - # Keep the attributes around for later consumption 47 - passthru = attrs; 48 - }; 49 50 list = lib.importJSON ./providers.json; 51
··· 10 # Our generic constructor to build new providers. 11 # 12 # Is designed to combine with the terraform.withPlugins implementation. 13 + mkProvider = lib.makeOverridable 14 + ({ owner 15 + , repo 16 + , rev 17 + , version 18 + , sha256 19 + , vendorSha256 ? throw "vendorSha256 missing: please use `buildGoModule`" /* added 2022/01 */ 20 + , deleteVendor ? false 21 + , proxyVendor ? false 22 + , # Looks like "registry.terraform.io/vancluever/acme" 23 + provider-source-address 24 + }@attrs: 25 + buildGoModule { 26 + pname = repo; 27 + inherit vendorSha256 version deleteVendor proxyVendor; 28 + subPackages = [ "." ]; 29 + doCheck = false; 30 + # https://github.com/hashicorp/terraform-provider-scaffolding/blob/a8ac8375a7082befe55b71c8cbb048493dd220c2/.goreleaser.yml 31 + # goreleaser (used for builds distributed via terraform registry) requires that CGO is disabled 32 + CGO_ENABLED = 0; 33 + ldflags = [ "-s" "-w" "-X main.version=${version}" "-X main.commit=${rev}" ]; 34 + src = fetchFromGitHub { 35 + inherit owner repo rev sha256; 36 + }; 37 38 + # Move the provider to libexec 39 + postInstall = '' 40 + dir=$out/libexec/terraform-providers/${provider-source-address}/${version}/''${GOOS}_''${GOARCH} 41 + mkdir -p "$dir" 42 + mv $out/bin/* "$dir/terraform-provider-$(basename ${provider-source-address})_${version}" 43 + rmdir $out/bin 44 + ''; 45 46 + # Keep the attributes around for later consumption 47 + passthru = attrs; 48 + }); 49 50 list = lib.importJSON ./providers.json; 51
+26 -3
pkgs/applications/networking/cluster/terraform/default.nix
··· 86 withPlugins (x: newplugins x ++ actualPlugins); 87 full = withPlugins (p: lib.filter lib.isDerivation (lib.attrValues p)); 88 89 - # Ouch 90 overrideDerivation = f: 91 (pluggable (terraform.overrideDerivation f)).withPlugins plugins; 92 overrideAttrs = f: ··· 105 inherit (terraform) name meta; 106 nativeBuildInputs = [ makeWrapper ]; 107 108 buildCommand = '' 109 # Create wrappers for terraform plugins because Terraform only 110 # walks inside of a tree of files. ··· 128 --set NIX_TERRAFORM_PLUGIN_DIR $out/libexec/terraform-providers \ 129 --prefix PATH : "${lib.makeBinPath wrapperInputs}" 130 ''; 131 - 132 - inherit passthru; 133 }); 134 in 135 withPlugins (_: [ ]);
··· 86 withPlugins (x: newplugins x ++ actualPlugins); 87 full = withPlugins (p: lib.filter lib.isDerivation (lib.attrValues p)); 88 89 + # Expose wrappers around the override* functions of the terraform 90 + # derivation. 91 + # 92 + # Note that this does not behave as anyone would expect if plugins 93 + # are specified. The overrides are not on the user-visible wrapper 94 + # derivation but instead on the function application that eventually 95 + # generates the wrapper. This means: 96 + # 97 + # 1. When using overrideAttrs, only `passthru` attributes will 98 + # become visible on the wrapper derivation. Other overrides that 99 + # modify the derivation *may* still have an effect, but it can be 100 + # difficult to follow. 101 + # 102 + # 2. Other overrides may work if they modify the terraform 103 + # derivation, or they may have no effect, depending on what 104 + # exactly is being changed. 105 + # 106 + # 3. Specifying overrides on the wrapper is unsupported. 107 + # 108 + # See nixpkgs#158620 for details. 109 overrideDerivation = f: 110 (pluggable (terraform.overrideDerivation f)).withPlugins plugins; 111 overrideAttrs = f: ··· 124 inherit (terraform) name meta; 125 nativeBuildInputs = [ makeWrapper ]; 126 127 + # Expose the passthru set with the override functions 128 + # defined above, as well as any passthru values already 129 + # set on `terraform` at this point (relevant in case a 130 + # user overrides attributes). 131 + passthru = terraform.passthru // passthru; 132 + 133 buildCommand = '' 134 # Create wrappers for terraform plugins because Terraform only 135 # walks inside of a tree of files. ··· 153 --set NIX_TERRAFORM_PLUGIN_DIR $out/libexec/terraform-providers \ 154 --prefix PATH : "${lib.makeBinPath wrapperInputs}" 155 ''; 156 }); 157 in 158 withPlugins (_: [ ]);
+2 -2
pkgs/applications/networking/instant-messengers/jitsi-meet-electron/default.nix
··· 9 10 stdenv.mkDerivation rec { 11 pname = "jitsi-meet-electron"; 12 - version = "2.8.11"; 13 14 src = fetchurl { 15 url = "https://github.com/jitsi/jitsi-meet-electron/releases/download/v${version}/jitsi-meet-x86_64.AppImage"; 16 - sha256 = "sha256-DznbSwA1UISw3EkIfM5hGgmIToeXsH1b1HB7UOgDTKU="; 17 name = "${pname}-${version}.AppImage"; 18 }; 19
··· 9 10 stdenv.mkDerivation rec { 11 pname = "jitsi-meet-electron"; 12 + version = "2022.1.1"; 13 14 src = fetchurl { 15 url = "https://github.com/jitsi/jitsi-meet-electron/releases/download/v${version}/jitsi-meet-x86_64.AppImage"; 16 + sha256 = "0x3fdqgjnsd570b7nszfx3h8l5c8x2kg32ig85n2a2g481c7xi6l"; 17 name = "${pname}-${version}.AppImage"; 18 }; 19
+4 -4
pkgs/applications/networking/instant-messengers/schildichat/pin.json
··· 1 { 2 - "version": "1.9.7-sc.1", 3 - "srcHash": "0qrjjwcxa141phsgdz325rrkfmjqdmxc3h917cs9c9kf6cblkxaq", 4 - "webYarnHash": "19c594pql2yz1z15phfdlkwcvrcbm8k058fcq7p0k6840dhif5fd", 5 - "desktopYarnHash": "058ihkljb1swjzvgf8gqci5ghvwapmpcf2bsab3yr66lhps7fhci" 6 }
··· 1 { 2 + "version": "1.9.8-sc.1", 3 + "srcHash": "1ki4ccsa2i0mv10ypxg6bx9njikipdqkc5bsq5h7bi86scjm4lni", 4 + "webYarnHash": "1za6r0snrflh2605xw4m19p88chx19ip8jj592bqjdagildqm50l", 5 + "desktopYarnHash": "176ih0nzzx2yds6kp3lzdsrlp0glb9nqw146z0s1az7pjp6nrf18" 6 }
+2
pkgs/applications/networking/n8n/default.nix
··· 12 node-pre-gyp 13 ]; 14 15 meta = with lib; { 16 description = "Free and open fair-code licensed node based Workflow Automation Tool"; 17 maintainers = with maintainers; [ freezeboy k900 ];
··· 12 node-pre-gyp 13 ]; 14 15 + passthru.updateScript = ./generate-dependencies.sh; 16 + 17 meta = with lib; { 18 description = "Free and open fair-code licensed node based Workflow Automation Tool"; 19 maintainers = with maintainers; [ freezeboy k900 ];
+1
pkgs/applications/networking/n8n/generate-dependencies.sh
··· 10 # -> cpu-features 11 # -> node-gyp@3.8.0 -> python2 12 # -> cmake 13 14 node2nix \ 15 --14 \
··· 10 # -> cpu-features 11 # -> node-gyp@3.8.0 -> python2 12 # -> cmake 13 + cd "$(dirname $(readlink -f $0))" 14 15 node2nix \ 16 --14 \
+213 -169
pkgs/applications/networking/n8n/node-packages.nix
··· 31 sha512 = "7CU6DmCHIZp5ZPiZ9r3J17lTKMmYsm/zGvNkjArQwPkrLlZ1TZ+EUYfGgh2X31OLMVAQCTJZW4cXHJi02EbJnA=="; 32 }; 33 }; 34 - "@azure/core-http-2.2.3" = { 35 name = "_at_azure_slash_core-http"; 36 packageName = "@azure/core-http"; 37 - version = "2.2.3"; 38 src = fetchurl { 39 - url = "https://registry.npmjs.org/@azure/core-http/-/core-http-2.2.3.tgz"; 40 - sha512 = "xr8AeszxP418rI//W38NfJDDr0kbVAPZkURZnZ+Fle+lLWeURjDE5zNIuocA1wUPoKSP8iXc0ApW6nPtbLGswA=="; 41 }; 42 }; 43 "@azure/core-lro-2.2.3" = { ··· 112 sha512 = "c8+Wz19xauW0bGkTCoqZH4dYfbtBniPiGiRQOn1ca6G5jsjr4azwaTk9gwjVY8r3vY2Taf95eivLzipfIfiS4A=="; 113 }; 114 }; 115 - "@babel/runtime-7.16.7" = { 116 name = "_at_babel_slash_runtime"; 117 packageName = "@babel/runtime"; 118 - version = "7.16.7"; 119 src = fetchurl { 120 - url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.7.tgz"; 121 - sha512 = "9E9FJowqAsytyOY6LG+1KuueckRL+aQW+mKvXRXnuFGyRAyepJPmEo9vgMfXUA6O9u3IeEdv9MAkppFcaQwogQ=="; 122 }; 123 }; 124 "@dabh/diagnostics-2.0.2" = { ··· 130 sha512 = "+A1YivoVDNNVCdfozHSR8v/jyuuLTMXwjWuxPFlFlUapXoGc+Gj9mDlTDDfrwl7rXCl2tNZ0kE8sIBO6YOn96Q=="; 131 }; 132 }; 133 - "@fontsource/open-sans-4.5.2" = { 134 name = "_at_fontsource_slash_open-sans"; 135 packageName = "@fontsource/open-sans"; 136 - version = "4.5.2"; 137 src = fetchurl { 138 - url = "https://registry.npmjs.org/@fontsource/open-sans/-/open-sans-4.5.2.tgz"; 139 - sha512 = "aDQrW8s0KslG2aKb9nM5R6fiQR9iPomqWXf6iZCC30qv/UFlSY14SppodA3rE//+w37EqsJjyUq3BSEYzLdisg=="; 140 }; 141 }; 142 "@icetee/ftp-0.3.15" = { ··· 220 sha512 = "cE3qfHWv8hGRCP31j7fIS7BfCflm/BNZ2HNqHexH+fDrdF2f1D5S8VmXWLC77ffv3oDvWyvE9AZeR0RfmHCCaA=="; 221 }; 222 }; 223 "@oclif/errors-1.3.5" = { 224 name = "_at_oclif_slash_errors"; 225 packageName = "@oclif/errors"; ··· 256 sha512 = "tXb0NKgSgNxmf6baN6naK+CCwOueaFk93FG9u202U7mTBHUKsioOUlw1SG/iPi9aJM3WE4pHLXmty59pci0OEw=="; 257 }; 258 }; 259 - "@opentelemetry/api-1.0.4" = { 260 name = "_at_opentelemetry_slash_api"; 261 packageName = "@opentelemetry/api"; 262 - version = "1.0.4"; 263 src = fetchurl { 264 - url = "https://registry.npmjs.org/@opentelemetry/api/-/api-1.0.4.tgz"; 265 - sha512 = "BuJuXRSJNQ3QoKA6GWWDyuLpOUck+9hAXNMCnrloc1aWVoy6Xq6t9PUV08aBZ4Lutqq2LEHM486bpZqoViScog=="; 266 }; 267 }; 268 "@rudderstack/rudder-sdk-node-1.0.6" = { ··· 454 sha512 = "YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw=="; 455 }; 456 }; 457 - "@types/node-12.20.42" = { 458 name = "_at_types_slash_node"; 459 packageName = "@types/node"; 460 - version = "12.20.42"; 461 src = fetchurl { 462 - url = "https://registry.npmjs.org/@types/node/-/node-12.20.42.tgz"; 463 - sha512 = "aI3/oo5DzyiI5R/xAhxxRzfZlWlsbbqdgxfTPkqu/Zt+23GXiJvMCyPJT4+xKSXOnLqoL8jJYMLTwvK2M3a5hw=="; 464 }; 465 }; 466 - "@types/node-17.0.10" = { 467 name = "_at_types_slash_node"; 468 packageName = "@types/node"; 469 - version = "17.0.10"; 470 src = fetchurl { 471 - url = "https://registry.npmjs.org/@types/node/-/node-17.0.10.tgz"; 472 - sha512 = "S/3xB4KzyFxYGCppyDt68yzBU9ysL88lSdIah4D6cptdcltc4NCPCAMc0+PCpg/lLIyC7IPvj2Z52OJWeIUkog=="; 473 }; 474 }; 475 "@types/node-fetch-2.5.12" = { ··· 589 sha512 = "h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg=="; 590 }; 591 }; 592 - "accepts-1.3.7" = { 593 name = "accepts"; 594 packageName = "accepts"; 595 - version = "1.3.7"; 596 src = fetchurl { 597 - url = "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz"; 598 - sha512 = "Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA=="; 599 }; 600 }; 601 "access-control-1.0.1" = { ··· 940 sha512 = "uUbetCWczQHbsKyX1C99XpQHBM8SWfovvaZhPIj23/1uV7SQf0WeRZbiLpw0JZm+LHTChfNgrLfDJOVoU2kU+A=="; 941 }; 942 }; 943 - "aws-sdk-2.1062.0" = { 944 name = "aws-sdk"; 945 packageName = "aws-sdk"; 946 - version = "2.1062.0"; 947 src = fetchurl { 948 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1062.0.tgz"; 949 - sha512 = "QIU8jwi7Uqyvw2HjsXXXUZv3V/6TinUzLewrdl2EdvonqZCXhwMgnZx2F9I2x62IKH1RqnINwFWdoK+OTgcAjA=="; 950 }; 951 }; 952 "aws-sign2-0.7.0" = { ··· 1768 sha1 = "e303a882b342cc3ee8ca513a79999734dab3ae2c"; 1769 }; 1770 }; 1771 - "core-js-3.20.3" = { 1772 name = "core-js"; 1773 packageName = "core-js"; 1774 - version = "3.20.3"; 1775 src = fetchurl { 1776 - url = "https://registry.npmjs.org/core-js/-/core-js-3.20.3.tgz"; 1777 - sha512 = "vVl8j8ph6tRS3B8qir40H7yw7voy17xL0piAjlbBUsH7WIfzoedL/ZOr1OV9FyZQLWXsayOJyV4tnRyXR85/ag=="; 1778 }; 1779 }; 1780 "core-util-is-1.0.2" = { ··· 1786 sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; 1787 }; 1788 }; 1789 - "crc-32-1.2.0" = { 1790 name = "crc-32"; 1791 packageName = "crc-32"; 1792 - version = "1.2.0"; 1793 src = fetchurl { 1794 - url = "https://registry.npmjs.org/crc-32/-/crc-32-1.2.0.tgz"; 1795 - sha512 = "1uBwHxF+Y/4yF5G48fwnKq6QsIXheor3ZLPT80yGBV1oEUwpPojlEhQbWKVw1VwcTQyMGHK1/XMmTjmlsmTTGA=="; 1796 }; 1797 }; 1798 "cron-1.7.2" = { ··· 2542 sha512 = "aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA=="; 2543 }; 2544 }; 2545 - "flatted-2.0.2" = { 2546 name = "flatted"; 2547 packageName = "flatted"; 2548 - version = "2.0.2"; 2549 src = fetchurl { 2550 - url = "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz"; 2551 - sha512 = "r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA=="; 2552 - }; 2553 - }; 2554 - "flatted-3.2.4" = { 2555 - name = "flatted"; 2556 - packageName = "flatted"; 2557 - version = "3.2.4"; 2558 - src = fetchurl { 2559 - url = "https://registry.npmjs.org/flatted/-/flatted-3.2.4.tgz"; 2560 - sha512 = "8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw=="; 2561 }; 2562 }; 2563 "fn.name-1.1.0" = { ··· 3235 sha512 = "O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA=="; 3236 }; 3237 }; 3238 - "ioredis-4.28.3" = { 3239 name = "ioredis"; 3240 packageName = "ioredis"; 3241 - version = "4.28.3"; 3242 src = fetchurl { 3243 - url = "https://registry.npmjs.org/ioredis/-/ioredis-4.28.3.tgz"; 3244 - sha512 = "9JOWVgBnuSxpIgfpjc1OeY1OLmA4t2KOWWURTDRXky+eWO0LZhI33pQNT9gYxANUXfh5p/zYephYni6GPRsksQ=="; 3245 }; 3246 }; 3247 "ip-regex-2.1.0" = { ··· 3577 sha1 = "bb935d48582cba168c06834957a54a3e07124f11"; 3578 }; 3579 }; 3580 - "isbot-3.4.0" = { 3581 name = "isbot"; 3582 packageName = "isbot"; 3583 - version = "3.4.0"; 3584 src = fetchurl { 3585 - url = "https://registry.npmjs.org/isbot/-/isbot-3.4.0.tgz"; 3586 - sha512 = "0WOb6bbJ6gtpWVHQ30r5MzqvSrCNbZ70wFXAJWdXt/0LulF59uvBQnPgA7IelbOXEpV+CtLWkDxLB4TU7f0+VA=="; 3587 }; 3588 }; 3589 "isexe-2.0.0" = { ··· 3820 sha512 = "2Bm96d5ktnE217Ib1FldvUaPAaOst6GtZrsxJCwnJgi9lnsoAKIHyU0sae8rNx6DNYbjdqqh8lv5/b9poD8qOg=="; 3821 }; 3822 }; 3823 - "libphonenumber-js-1.9.44" = { 3824 name = "libphonenumber-js"; 3825 packageName = "libphonenumber-js"; 3826 - version = "1.9.44"; 3827 src = fetchurl { 3828 - url = "https://registry.npmjs.org/libphonenumber-js/-/libphonenumber-js-1.9.44.tgz"; 3829 - sha512 = "zhw8nUMJuQf7jG1dZfEOKKOS6M3QYIv3HnvB/vGohNd0QfxIQcObH3a6Y6s350H+9xgBeOXClOJkS0hJ0yvS3g=="; 3830 }; 3831 }; 3832 "libqp-1.1.0" = { ··· 3991 sha1 = "d527dfb5456eca7cc9bb95d5daeaf88ba54a5451"; 3992 }; 3993 }; 3994 "lodash.once-4.1.1" = { 3995 name = "lodash.once"; 3996 packageName = "lodash.once"; ··· 4144 sha512 = "etgt+n4LlOkGSJbBTV9VROHA5R7ekIPS4vfh+bCAoJgRrJWdqJCBbpS3osRJ/HrT7R68MzMiY3L3sDJ/Fd8aBg=="; 4145 }; 4146 }; 4147 - "mappersmith-2.36.3" = { 4148 name = "mappersmith"; 4149 packageName = "mappersmith"; 4150 - version = "2.36.3"; 4151 src = fetchurl { 4152 - url = "https://registry.npmjs.org/mappersmith/-/mappersmith-2.36.3.tgz"; 4153 - sha512 = "izy4Gc7+VafMR/fDQukiEEBAfFoPGRYLBzFxXqXMR1IwAHqlQgSPRX+g/uIkaVqGRh+eb5c7sy8HNaBq9opwkA=="; 4154 }; 4155 }; 4156 "md5-2.3.0" = { ··· 4450 sha512 = "z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q=="; 4451 }; 4452 }; 4453 - "n8n-core-0.102.0" = { 4454 name = "n8n-core"; 4455 packageName = "n8n-core"; 4456 - version = "0.102.0"; 4457 src = fetchurl { 4458 - url = "https://registry.npmjs.org/n8n-core/-/n8n-core-0.102.0.tgz"; 4459 - sha512 = "9/suLELO/HBoEZ06bEv3cN7HZoR43qZlubM0BDXDhXJHBasfKcfegXYYacSfBxtTVX71cLffVgshJoJt8OtDcw=="; 4460 }; 4461 }; 4462 - "n8n-design-system-0.9.0" = { 4463 name = "n8n-design-system"; 4464 packageName = "n8n-design-system"; 4465 - version = "0.9.0"; 4466 src = fetchurl { 4467 - url = "https://registry.npmjs.org/n8n-design-system/-/n8n-design-system-0.9.0.tgz"; 4468 - sha512 = "E1DoUDIvPTLAQ72mkg+MVS72QxDxa5UPxVqX4QeF/xAhUrXKfTWHveG5OxugW+mrEF5nO8IG08MEDOQCOzJZpQ=="; 4469 }; 4470 }; 4471 - "n8n-editor-ui-0.127.0" = { 4472 name = "n8n-editor-ui"; 4473 packageName = "n8n-editor-ui"; 4474 - version = "0.127.0"; 4475 src = fetchurl { 4476 - url = "https://registry.npmjs.org/n8n-editor-ui/-/n8n-editor-ui-0.127.0.tgz"; 4477 - sha512 = "XCiLwXing2nSidUfrEqcYxG7Zc7TBbJDxmUjSwv2fdH4SK4vMPcUINJbEQOHPIhc6GNEjSt1J/tbCEJJC/acbg=="; 4478 }; 4479 }; 4480 - "n8n-nodes-base-0.158.0" = { 4481 name = "n8n-nodes-base"; 4482 packageName = "n8n-nodes-base"; 4483 - version = "0.158.0"; 4484 src = fetchurl { 4485 - url = "https://registry.npmjs.org/n8n-nodes-base/-/n8n-nodes-base-0.158.0.tgz"; 4486 - sha512 = "qs/T0S2BHrovOFh6mnCRpuY9qhKZxub160+qtvXMVsiUWCpKEW1eIA4owYHLH3DLYqW0izQJap0sGlZEzV3xTg=="; 4487 }; 4488 }; 4489 - "n8n-workflow-0.84.0" = { 4490 name = "n8n-workflow"; 4491 packageName = "n8n-workflow"; 4492 - version = "0.84.0"; 4493 src = fetchurl { 4494 - url = "https://registry.npmjs.org/n8n-workflow/-/n8n-workflow-0.84.0.tgz"; 4495 - sha512 = "ibZ/oCWd81DMhjUQcAMC5GNs2C/dm+4boKTIjRuFHmbGzF2elwpb5s2nlkRn5REj9aZseZ0N9bfJ6slcLbw/Sw=="; 4496 }; 4497 }; 4498 "named-placeholders-1.1.2" = { ··· 4549 sha512 = "6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ=="; 4550 }; 4551 }; 4552 - "negotiator-0.6.2" = { 4553 name = "negotiator"; 4554 packageName = "negotiator"; 4555 - version = "0.6.2"; 4556 src = fetchurl { 4557 - url = "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz"; 4558 - sha512 = "hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw=="; 4559 }; 4560 }; 4561 "neo-async-2.6.2" = { ··· 5107 sha512 = "v6ZJ/efsBpGrGGknjtq9J/oC8tZWq0KWL5vQrk2GlzLEQPUDB1ex+13Rmidl1neNN358Jn9EHZw5y07FFtaC7A=="; 5108 }; 5109 }; 5110 - "peek-readable-4.0.2" = { 5111 name = "peek-readable"; 5112 packageName = "peek-readable"; 5113 - version = "4.0.2"; 5114 src = fetchurl { 5115 - url = "https://registry.npmjs.org/peek-readable/-/peek-readable-4.0.2.tgz"; 5116 - sha512 = "9fMaz6zoxw9ypO1KZy5RDJgSupEtu0Q+g/OqqsVHX3rKGR8qehRLYzsFARZ4bVvdvfknKiXvuDbkMnO1g6cRpQ=="; 5117 }; 5118 }; 5119 "performance-now-2.1.0" = { ··· 5134 sha512 = "7bdYcv7V6U3KAtWjpQJJBww0UEsWuh4yQ/EjNf2HeO/NnvKjpvhEIe/A/TleP6wtmSKnUnghs5A9jUoK6iDdkA=="; 5135 }; 5136 }; 5137 "pg-connection-string-2.5.0" = { 5138 name = "pg-connection-string"; 5139 packageName = "pg-connection-string"; ··· 5161 sha512 = "1KdmFGGTP6jplJoI8MfvRlfvMiyBivMRP7/ffh4a11RUFJ7kC2J0ZHlipoKiH/1hz+DVgceon9U2qbaHpPeyPg=="; 5162 }; 5163 }; 5164 - "pg-pool-3.4.1" = { 5165 name = "pg-pool"; 5166 packageName = "pg-pool"; 5167 - version = "3.4.1"; 5168 src = fetchurl { 5169 - url = "https://registry.npmjs.org/pg-pool/-/pg-pool-3.4.1.tgz"; 5170 - sha512 = "TVHxR/gf3MeJRvchgNHxsYsTCHQ+4wm3VIHSS19z8NC0+gioEhq1okDY1sm/TYbfoP6JLFx01s0ShvZ3puP/iQ=="; 5171 }; 5172 }; 5173 "pg-promise-10.11.1" = { ··· 5332 sha512 = "sanczS6xOJOg7IKDvi4sGOUOe7c1tsEzjwlLFH/zgwx/uyImVM9/rgBkc8AfiQa/Vg54nRd8mkm9yI7WV/O+WA=="; 5333 }; 5334 }; 5335 - "printj-1.3.0" = { 5336 name = "printj"; 5337 packageName = "printj"; 5338 - version = "1.3.0"; 5339 src = fetchurl { 5340 - url = "https://registry.npmjs.org/printj/-/printj-1.3.0.tgz"; 5341 - sha512 = "017o8YIaz8gLhaNxRB9eBv2mWXI2CtzhPJALnQTP+OPpuUfP0RMWqr/mHCzqVeu1AQxfzSfAtAq66vKB8y7Lzg=="; 5342 }; 5343 }; 5344 "process-0.11.10" = { ··· 5971 sha512 = "ERq4hUjKDbJfE4+XtZLFPCDi8Vb1JqaxAPTxWFLBx8XcAlf9Bda/ZJdVezs/NAfsMQScyIlUMx+Yeu7P7rx5jw=="; 5972 }; 5973 }; 5974 "safer-buffer-2.1.2" = { 5975 name = "safer-buffer"; 5976 packageName = "safer-buffer"; ··· 6169 sha512 = "q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw=="; 6170 }; 6171 }; 6172 - "signal-exit-3.0.6" = { 6173 name = "signal-exit"; 6174 packageName = "signal-exit"; 6175 - version = "3.0.6"; 6176 src = fetchurl { 6177 - url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.6.tgz"; 6178 - sha512 = "sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ=="; 6179 }; 6180 }; 6181 "simple-git-2.48.0" = { ··· 6322 sha512 = "+idbmIXoYET47hH+d7dfm2epdOMUDjqcB4648sTZ+t2JwoyBFL/insLfB/racrDmsKB3diwsDA696pZMieAC5g=="; 6323 }; 6324 }; 6325 - "ssh2-1.5.0" = { 6326 name = "ssh2"; 6327 packageName = "ssh2"; 6328 - version = "1.5.0"; 6329 src = fetchurl { 6330 - url = "https://registry.npmjs.org/ssh2/-/ssh2-1.5.0.tgz"; 6331 - sha512 = "iUmRkhH9KGeszQwDW7YyyqjsMTf4z+0o48Cp4xOwlY5LjtbIAvyd3fwnsoUZW/hXmTCRA3yt7S/Jb9uVjErVlA=="; 6332 }; 6333 }; 6334 - "ssh2-sftp-client-7.2.1" = { 6335 name = "ssh2-sftp-client"; 6336 packageName = "ssh2-sftp-client"; 6337 - version = "7.2.1"; 6338 src = fetchurl { 6339 - url = "https://registry.npmjs.org/ssh2-sftp-client/-/ssh2-sftp-client-7.2.1.tgz"; 6340 - sha512 = "kr5QFL+d8Ta28wGhlRqkHo812PjMhKrBK7oTaYGNHqTvXAUjxZR6SeWRXbwKASE3dh2xeDz5aXHcg01bzfAeCA=="; 6341 }; 6342 }; 6343 "sshpk-1.17.0" = { ··· 6493 sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a"; 6494 }; 6495 }; 6496 - "strtok3-6.2.4" = { 6497 name = "strtok3"; 6498 packageName = "strtok3"; 6499 - version = "6.2.4"; 6500 src = fetchurl { 6501 - url = "https://registry.npmjs.org/strtok3/-/strtok3-6.2.4.tgz"; 6502 - sha512 = "GO8IcFF9GmFDvqduIspUBwCzCbqzegyVKIsSymcMgiZKeCfrN9SowtUoi8+b59WZMAjIzVZic/Ft97+pynR3Iw=="; 6503 }; 6504 }; 6505 "supports-color-2.0.0" = { ··· 7186 sha512 = "NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg=="; 7187 }; 7188 }; 7189 - "winston-3.4.0" = { 7190 name = "winston"; 7191 packageName = "winston"; 7192 - version = "3.4.0"; 7193 src = fetchurl { 7194 - url = "https://registry.npmjs.org/winston/-/winston-3.4.0.tgz"; 7195 - sha512 = "FqilVj+5HKwCfIHQzMxrrd5tBIH10JTS3koFGbLVWBODjiIYq7zir08rFyBT4rrTYG/eaTqDcfSIbcjSM78YSw=="; 7196 }; 7197 }; 7198 - "winston-transport-4.4.2" = { 7199 name = "winston-transport"; 7200 packageName = "winston-transport"; 7201 - version = "4.4.2"; 7202 src = fetchurl { 7203 - url = "https://registry.npmjs.org/winston-transport/-/winston-transport-4.4.2.tgz"; 7204 - sha512 = "9jmhltAr5ygt5usgUTQbEiw/7RYXpyUbEAFRCSicIacpUzPkrnQsQZSPGEI12aLK9Jth4zNcYJx3Cvznwrl8pw=="; 7205 }; 7206 }; 7207 "wmf-1.0.2" = { ··· 7426 n8n = nodeEnv.buildNodePackage { 7427 name = "n8n"; 7428 packageName = "n8n"; 7429 - version = "0.160.0"; 7430 src = fetchurl { 7431 - url = "https://registry.npmjs.org/n8n/-/n8n-0.160.0.tgz"; 7432 - sha512 = "mdjD4tKohZP8kMbFa+gGWx5rYXLz9HprXr2tPHUpAvZ6x7JGb06uY2ieNifSAH9Ap3CR+qfg6HkPgSKe183CIA=="; 7433 }; 7434 dependencies = [ 7435 (sources."@azure/abort-controller-1.0.5" // { ··· 7443 sources."tslib-2.3.1" 7444 ]; 7445 }) 7446 - (sources."@azure/core-http-2.2.3" // { 7447 dependencies = [ 7448 sources."tough-cookie-4.0.0" 7449 sources."tslib-2.3.1" ··· 7481 sources."tslib-2.3.1" 7482 ]; 7483 }) 7484 - sources."@babel/runtime-7.16.7" 7485 (sources."@dabh/diagnostics-2.0.2" // { 7486 dependencies = [ 7487 sources."enabled-2.0.0" 7488 sources."kuler-2.0.0" 7489 ]; 7490 }) 7491 - sources."@fontsource/open-sans-4.5.2" 7492 sources."@icetee/ftp-0.3.15" 7493 sources."@kafkajs/confluent-schema-registry-1.0.6" 7494 sources."@kwsites/file-exists-1.1.1" ··· 7497 sources."@nodelib/fs.stat-2.0.5" 7498 sources."@nodelib/fs.walk-1.2.8" 7499 sources."@oclif/command-1.8.16" 7500 - (sources."@oclif/config-1.18.2" // { 7501 dependencies = [ 7502 sources."tslib-2.3.1" 7503 ]; ··· 7507 sources."wrap-ansi-7.0.0" 7508 ]; 7509 }) 7510 - sources."@oclif/help-1.0.1" 7511 sources."@oclif/linewrap-1.0.0" 7512 (sources."@oclif/parser-3.8.6" // { 7513 dependencies = [ 7514 sources."tslib-2.3.1" 7515 ]; 7516 }) 7517 - sources."@opentelemetry/api-1.0.4" 7518 sources."@rudderstack/rudder-sdk-node-1.0.6" 7519 sources."@segment/loosely-validate-event-2.0.0" 7520 sources."@selderee/plugin-htmlparser2-0.6.0" ··· 7535 sources."@types/lodash-4.14.178" 7536 sources."@types/lossless-json-1.0.1" 7537 sources."@types/mime-1.3.2" 7538 - sources."@types/node-17.0.10" 7539 (sources."@types/node-fetch-2.5.12" // { 7540 dependencies = [ 7541 sources."form-data-3.0.1" ··· 7553 sources."@xmldom/xmldom-0.7.5" 7554 sources."abbrev-1.1.1" 7555 sources."abort-controller-3.0.0" 7556 - sources."accepts-1.3.7" 7557 sources."access-control-1.0.1" 7558 (sources."adal-node-0.2.3" // { 7559 dependencies = [ ··· 7602 ]; 7603 }) 7604 sources."avsc-5.7.3" 7605 - (sources."aws-sdk-2.1062.0" // { 7606 dependencies = [ 7607 sources."buffer-4.9.2" 7608 sources."events-1.1.1" ··· 7697 sources."printj-1.2.3" 7698 ]; 7699 }) 7700 - sources."printj-1.3.0" 7701 ]; 7702 }) 7703 sources."chalk-4.1.2" ··· 7776 sources."convict-6.2.1" 7777 sources."cookie-0.4.1" 7778 sources."cookie-signature-1.0.6" 7779 - sources."core-js-3.20.3" 7780 sources."core-util-is-1.0.2" 7781 - sources."crc-32-1.2.0" 7782 sources."cron-1.7.2" 7783 sources."cron-parser-2.18.0" 7784 (sources."cross-spawn-4.0.2" // { ··· 7884 sources."ms-2.0.0" 7885 ]; 7886 }) 7887 - sources."flatted-2.0.2" 7888 sources."fn.name-1.1.0" 7889 sources."follow-redirects-1.14.7" 7890 sources."for-each-0.3.3" ··· 7977 sources."ini-1.3.8" 7978 sources."inquirer-7.3.3" 7979 sources."internal-slot-1.0.3" 7980 - sources."ioredis-4.28.3" 7981 sources."ip-regex-2.1.0" 7982 sources."ipaddr.js-1.9.1" 7983 sources."is-absolute-1.0.0" ··· 8012 sources."is-windows-1.0.2" 8013 sources."is-wsl-2.2.0" 8014 sources."isarray-0.0.1" 8015 - sources."isbot-3.4.0" 8016 sources."isexe-2.0.0" 8017 sources."iso-639-1-2.1.12" 8018 sources."isstream-0.1.2" ··· 8045 sources."iconv-lite-0.6.2" 8046 ]; 8047 }) 8048 - sources."libphonenumber-js-1.9.44" 8049 sources."libqp-1.1.0" 8050 sources."limiter-1.1.5" 8051 sources."linkify-it-3.0.3" ··· 8068 sources."lodash.isnumber-3.0.3" 8069 sources."lodash.isplainobject-4.0.6" 8070 sources."lodash.isstring-4.0.1" 8071 sources."lodash.once-4.1.1" 8072 sources."lodash.set-4.3.2" 8073 sources."lodash.uniqby-4.7.0" 8074 sources."lodash.unset-4.5.2" 8075 - sources."logform-2.3.2" 8076 sources."long-4.0.0" 8077 sources."lossless-json-1.0.5" 8078 (sources."lower-case-2.0.2" // { ··· 8101 }) 8102 sources."make-error-1.3.6" 8103 sources."make-error-cause-2.3.0" 8104 - sources."mappersmith-2.36.3" 8105 sources."md5-2.3.0" 8106 sources."media-typer-0.3.0" 8107 sources."merge-descriptors-1.0.1" ··· 8157 ]; 8158 }) 8159 sources."mz-2.7.0" 8160 - (sources."n8n-core-0.102.0" // { 8161 dependencies = [ 8162 - sources."flatted-3.2.4" 8163 sources."qs-6.10.3" 8164 ]; 8165 }) 8166 - sources."n8n-design-system-0.9.0" 8167 - sources."n8n-editor-ui-0.127.0" 8168 - (sources."n8n-nodes-base-0.158.0" // { 8169 dependencies = [ 8170 sources."iconv-lite-0.6.3" 8171 ]; 8172 }) 8173 - sources."n8n-workflow-0.84.0" 8174 (sources."named-placeholders-1.1.2" // { 8175 dependencies = [ 8176 sources."lru-cache-4.1.5" ··· 8190 sources."debug-3.2.7" 8191 ]; 8192 }) 8193 - sources."negotiator-0.6.2" 8194 sources."neo-async-2.6.2" 8195 (sources."no-case-3.0.4" // { 8196 dependencies = [ ··· 8289 sources."debug-3.2.7" 8290 ]; 8291 }) 8292 - sources."peek-readable-4.0.2" 8293 sources."performance-now-2.1.0" 8294 - sources."pg-8.7.1" 8295 sources."pg-connection-string-2.5.0" 8296 sources."pg-int8-1.0.1" 8297 sources."pg-minify-1.6.2" 8298 - sources."pg-pool-3.4.1" 8299 - sources."pg-promise-10.11.1" 8300 sources."pg-protocol-1.5.0" 8301 sources."pg-types-2.2.0" 8302 (sources."pgpass-1.0.5" // { ··· 8401 sources."run-parallel-1.2.0" 8402 sources."rxjs-6.6.7" 8403 sources."safe-buffer-5.2.1" 8404 - sources."safe-stable-stringify-1.1.1" 8405 sources."safer-buffer-2.1.2" 8406 sources."sax-1.2.4" 8407 sources."sb-promise-queue-2.1.0" ··· 8433 sources."sha.js-2.4.11" 8434 sources."shell-escape-0.2.0" 8435 sources."side-channel-1.0.4" 8436 - sources."signal-exit-3.0.6" 8437 sources."simple-git-2.48.0" 8438 sources."simple-lru-cache-0.0.2" 8439 sources."simple-swizzle-0.2.2" ··· 8467 sources."sqlstring-2.3.2" 8468 sources."sse-channel-3.1.1" 8469 sources."ssf-0.11.2" 8470 - sources."ssh2-1.5.0" 8471 - sources."ssh2-sftp-client-7.2.1" 8472 sources."sshpk-1.17.0" 8473 sources."stack-trace-0.0.10" 8474 sources."standard-as-callback-2.1.0" ··· 8482 sources."string_decoder-0.10.31" 8483 sources."strip-ansi-6.0.1" 8484 sources."strip-json-comments-2.0.1" 8485 - sources."strtok3-6.2.4" 8486 sources."supports-color-7.2.0" 8487 (sources."tar-4.4.19" // { 8488 dependencies = [ ··· 8494 sources."tdigest-0.1.1" 8495 (sources."tedious-6.7.1" // { 8496 dependencies = [ 8497 - sources."@types/node-12.20.42" 8498 sources."bl-3.0.1" 8499 sources."depd-2.0.0" 8500 sources."iconv-lite-0.5.2" ··· 8601 sources."which-boxed-primitive-1.0.2" 8602 sources."wide-align-1.1.5" 8603 sources."widest-line-3.1.0" 8604 - (sources."winston-3.4.0" // { 8605 dependencies = [ 8606 sources."async-3.2.3" 8607 sources."readable-stream-3.6.0" 8608 sources."string_decoder-1.3.0" 8609 ]; 8610 }) 8611 - (sources."winston-transport-4.4.2" // { 8612 dependencies = [ 8613 sources."readable-stream-3.6.0" 8614 sources."string_decoder-1.3.0"
··· 31 sha512 = "7CU6DmCHIZp5ZPiZ9r3J17lTKMmYsm/zGvNkjArQwPkrLlZ1TZ+EUYfGgh2X31OLMVAQCTJZW4cXHJi02EbJnA=="; 32 }; 33 }; 34 + "@azure/core-http-2.2.4" = { 35 name = "_at_azure_slash_core-http"; 36 packageName = "@azure/core-http"; 37 + version = "2.2.4"; 38 src = fetchurl { 39 + url = "https://registry.npmjs.org/@azure/core-http/-/core-http-2.2.4.tgz"; 40 + sha512 = "QmmJmexXKtPyc3/rsZR/YTLDvMatzbzAypJmLzvlfxgz/SkgnqV/D4f6F2LsK6tBj1qhyp8BoXiOebiej0zz3A=="; 41 }; 42 }; 43 "@azure/core-lro-2.2.3" = { ··· 112 sha512 = "c8+Wz19xauW0bGkTCoqZH4dYfbtBniPiGiRQOn1ca6G5jsjr4azwaTk9gwjVY8r3vY2Taf95eivLzipfIfiS4A=="; 113 }; 114 }; 115 + "@babel/runtime-7.17.0" = { 116 name = "_at_babel_slash_runtime"; 117 packageName = "@babel/runtime"; 118 + version = "7.17.0"; 119 src = fetchurl { 120 + url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.17.0.tgz"; 121 + sha512 = "etcO/ohMNaNA2UBdaXBBSX/3aEzFMRrVfaPv8Ptc0k+cWpWW0QFiGZ2XnVqQZI1Cf734LbPGmqBKWESfW4x/dQ=="; 122 }; 123 }; 124 "@dabh/diagnostics-2.0.2" = { ··· 130 sha512 = "+A1YivoVDNNVCdfozHSR8v/jyuuLTMXwjWuxPFlFlUapXoGc+Gj9mDlTDDfrwl7rXCl2tNZ0kE8sIBO6YOn96Q=="; 131 }; 132 }; 133 + "@fontsource/open-sans-4.5.4" = { 134 name = "_at_fontsource_slash_open-sans"; 135 packageName = "@fontsource/open-sans"; 136 + version = "4.5.4"; 137 src = fetchurl { 138 + url = "https://registry.npmjs.org/@fontsource/open-sans/-/open-sans-4.5.4.tgz"; 139 + sha512 = "iaEuU7l3VGA/bqWW9UsBD2bgFwCwDFwKlmOUft4Jps3pD3Zc9POMNYV0+mNyKbA4OIcIice32l+BMif8vY6pdg=="; 140 }; 141 }; 142 "@icetee/ftp-0.3.15" = { ··· 220 sha512 = "cE3qfHWv8hGRCP31j7fIS7BfCflm/BNZ2HNqHexH+fDrdF2f1D5S8VmXWLC77ffv3oDvWyvE9AZeR0RfmHCCaA=="; 221 }; 222 }; 223 + "@oclif/config-1.18.3" = { 224 + name = "_at_oclif_slash_config"; 225 + packageName = "@oclif/config"; 226 + version = "1.18.3"; 227 + src = fetchurl { 228 + url = "https://registry.npmjs.org/@oclif/config/-/config-1.18.3.tgz"; 229 + sha512 = "sBpko86IrTscc39EvHUhL+c++81BVTsIZ3ETu/vG+cCdi0N6vb2DoahR67A9FI2CGnxRRHjnTfa3m6LulwNATA=="; 230 + }; 231 + }; 232 "@oclif/errors-1.3.5" = { 233 name = "_at_oclif_slash_errors"; 234 packageName = "@oclif/errors"; ··· 265 sha512 = "tXb0NKgSgNxmf6baN6naK+CCwOueaFk93FG9u202U7mTBHUKsioOUlw1SG/iPi9aJM3WE4pHLXmty59pci0OEw=="; 266 }; 267 }; 268 + "@opentelemetry/api-1.1.0" = { 269 name = "_at_opentelemetry_slash_api"; 270 packageName = "@opentelemetry/api"; 271 + version = "1.1.0"; 272 src = fetchurl { 273 + url = "https://registry.npmjs.org/@opentelemetry/api/-/api-1.1.0.tgz"; 274 + sha512 = "hf+3bwuBwtXsugA2ULBc95qxrOqP2pOekLz34BJhcAKawt94vfeNyUKpYc0lZQ/3sCP6LqRa7UAdHA7i5UODzQ=="; 275 }; 276 }; 277 "@rudderstack/rudder-sdk-node-1.0.6" = { ··· 463 sha512 = "YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw=="; 464 }; 465 }; 466 + "@types/node-12.20.43" = { 467 name = "_at_types_slash_node"; 468 packageName = "@types/node"; 469 + version = "12.20.43"; 470 src = fetchurl { 471 + url = "https://registry.npmjs.org/@types/node/-/node-12.20.43.tgz"; 472 + sha512 = "HCfJdaYqJX3BCzeihgZrD7b85Cu05OC/GVJ4kEYIflwUs4jbnUlLLWoq7hw1LBcdvUyehO+gr6P5JQ895/2ZfA=="; 473 }; 474 }; 475 + "@types/node-17.0.15" = { 476 name = "_at_types_slash_node"; 477 packageName = "@types/node"; 478 + version = "17.0.15"; 479 src = fetchurl { 480 + url = "https://registry.npmjs.org/@types/node/-/node-17.0.15.tgz"; 481 + sha512 = "zWt4SDDv1S9WRBNxLFxFRHxdD9tvH8f5/kg5/IaLFdnSNXsDY4eL3Q3XXN+VxUnWIhyVFDwcsmAprvwXoM/ClA=="; 482 }; 483 }; 484 "@types/node-fetch-2.5.12" = { ··· 598 sha512 = "h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg=="; 599 }; 600 }; 601 + "accepts-1.3.8" = { 602 name = "accepts"; 603 packageName = "accepts"; 604 + version = "1.3.8"; 605 src = fetchurl { 606 + url = "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz"; 607 + sha512 = "PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw=="; 608 }; 609 }; 610 "access-control-1.0.1" = { ··· 949 sha512 = "uUbetCWczQHbsKyX1C99XpQHBM8SWfovvaZhPIj23/1uV7SQf0WeRZbiLpw0JZm+LHTChfNgrLfDJOVoU2kU+A=="; 950 }; 951 }; 952 + "aws-sdk-2.1069.0" = { 953 name = "aws-sdk"; 954 packageName = "aws-sdk"; 955 + version = "2.1069.0"; 956 src = fetchurl { 957 + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1069.0.tgz"; 958 + sha512 = "AF7/5JotrVd8g/D3WWHgQto+IryB1V7iudIYm+H+qxmkGOU3xvL63ChhEoLTY/CxuK/diayg0oWILEsXUn3dfw=="; 959 }; 960 }; 961 "aws-sign2-0.7.0" = { ··· 1777 sha1 = "e303a882b342cc3ee8ca513a79999734dab3ae2c"; 1778 }; 1779 }; 1780 + "core-js-3.21.0" = { 1781 name = "core-js"; 1782 packageName = "core-js"; 1783 + version = "3.21.0"; 1784 src = fetchurl { 1785 + url = "https://registry.npmjs.org/core-js/-/core-js-3.21.0.tgz"; 1786 + sha512 = "YUdI3fFu4TF/2WykQ2xzSiTQdldLB4KVuL9WeAy5XONZYt5Cun/fpQvctoKbCgvPhmzADeesTk/j2Rdx77AcKQ=="; 1787 }; 1788 }; 1789 "core-util-is-1.0.2" = { ··· 1795 sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; 1796 }; 1797 }; 1798 + "crc-32-1.2.1" = { 1799 name = "crc-32"; 1800 packageName = "crc-32"; 1801 + version = "1.2.1"; 1802 src = fetchurl { 1803 + url = "https://registry.npmjs.org/crc-32/-/crc-32-1.2.1.tgz"; 1804 + sha512 = "Dn/xm/1vFFgs3nfrpEVScHoIslO9NZRITWGz/1E/St6u4xw99vfZzVkW0OSnzx2h9egej9xwMCEut6sqwokM/w=="; 1805 }; 1806 }; 1807 "cron-1.7.2" = { ··· 2551 sha512 = "aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA=="; 2552 }; 2553 }; 2554 + "flatted-3.2.5" = { 2555 name = "flatted"; 2556 packageName = "flatted"; 2557 + version = "3.2.5"; 2558 src = fetchurl { 2559 + url = "https://registry.npmjs.org/flatted/-/flatted-3.2.5.tgz"; 2560 + sha512 = "WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg=="; 2561 }; 2562 }; 2563 "fn.name-1.1.0" = { ··· 3235 sha512 = "O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA=="; 3236 }; 3237 }; 3238 + "ioredis-4.28.5" = { 3239 name = "ioredis"; 3240 packageName = "ioredis"; 3241 + version = "4.28.5"; 3242 src = fetchurl { 3243 + url = "https://registry.npmjs.org/ioredis/-/ioredis-4.28.5.tgz"; 3244 + sha512 = "3GYo0GJtLqgNXj4YhrisLaNNvWSNwSS2wS4OELGfGxH8I69+XfNdnmV1AyN+ZqMh0i7eX+SWjrwFKDBDgfBC1A=="; 3245 }; 3246 }; 3247 "ip-regex-2.1.0" = { ··· 3577 sha1 = "bb935d48582cba168c06834957a54a3e07124f11"; 3578 }; 3579 }; 3580 + "isbot-3.4.1" = { 3581 name = "isbot"; 3582 packageName = "isbot"; 3583 + version = "3.4.1"; 3584 src = fetchurl { 3585 + url = "https://registry.npmjs.org/isbot/-/isbot-3.4.1.tgz"; 3586 + sha512 = "CyapceDROQ9dp9uGUh2d0D7q/MDGDt2B3rl/da+BZ0maCBI9bNlZMk3fr4dEO+LEsRY7ur3mfYNQPavCRDRJxg=="; 3587 }; 3588 }; 3589 "isexe-2.0.0" = { ··· 3820 sha512 = "2Bm96d5ktnE217Ib1FldvUaPAaOst6GtZrsxJCwnJgi9lnsoAKIHyU0sae8rNx6DNYbjdqqh8lv5/b9poD8qOg=="; 3821 }; 3822 }; 3823 + "libphonenumber-js-1.9.48" = { 3824 name = "libphonenumber-js"; 3825 packageName = "libphonenumber-js"; 3826 + version = "1.9.48"; 3827 src = fetchurl { 3828 + url = "https://registry.npmjs.org/libphonenumber-js/-/libphonenumber-js-1.9.48.tgz"; 3829 + sha512 = "2aiDGkr5Ty7LZRhKhnMeV9tfRbzd2zahgF12I0v11AFwEelSdiu5t8/Npf3UejKcuoO4anqTdjnIW3dEtj1xYQ=="; 3830 }; 3831 }; 3832 "libqp-1.1.0" = { ··· 3991 sha1 = "d527dfb5456eca7cc9bb95d5daeaf88ba54a5451"; 3992 }; 3993 }; 3994 + "lodash.merge-4.6.2" = { 3995 + name = "lodash.merge"; 3996 + packageName = "lodash.merge"; 3997 + version = "4.6.2"; 3998 + src = fetchurl { 3999 + url = "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz"; 4000 + sha512 = "0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="; 4001 + }; 4002 + }; 4003 "lodash.once-4.1.1" = { 4004 name = "lodash.once"; 4005 packageName = "lodash.once"; ··· 4153 sha512 = "etgt+n4LlOkGSJbBTV9VROHA5R7ekIPS4vfh+bCAoJgRrJWdqJCBbpS3osRJ/HrT7R68MzMiY3L3sDJ/Fd8aBg=="; 4154 }; 4155 }; 4156 + "mappersmith-2.37.1" = { 4157 name = "mappersmith"; 4158 packageName = "mappersmith"; 4159 + version = "2.37.1"; 4160 src = fetchurl { 4161 + url = "https://registry.npmjs.org/mappersmith/-/mappersmith-2.37.1.tgz"; 4162 + sha512 = "3QiXhRADHTK/it1riJMJm/sHmLlGdw3pfLgZJQu9MfT1CNeiO93keNY0BVLlRmpPBsMER/P7kj3mtcAK2V331Q=="; 4163 }; 4164 }; 4165 "md5-2.3.0" = { ··· 4459 sha512 = "z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q=="; 4460 }; 4461 }; 4462 + "n8n-core-0.104.0" = { 4463 name = "n8n-core"; 4464 packageName = "n8n-core"; 4465 + version = "0.104.0"; 4466 src = fetchurl { 4467 + url = "https://registry.npmjs.org/n8n-core/-/n8n-core-0.104.0.tgz"; 4468 + sha512 = "rh8ooCF0zeVjic6JWByuCzcltpeV/OJjUmLcChXU3S6peggCvazvxlU6GOF/+YT69CeQdHwhTmOXSEevu0uzVQ=="; 4469 }; 4470 }; 4471 + "n8n-design-system-0.11.0" = { 4472 name = "n8n-design-system"; 4473 packageName = "n8n-design-system"; 4474 + version = "0.11.0"; 4475 src = fetchurl { 4476 + url = "https://registry.npmjs.org/n8n-design-system/-/n8n-design-system-0.11.0.tgz"; 4477 + sha512 = "KL64XTr9sqqiBEEV7on2cdLooleHPyXClFL+THUy2oXDbGqdlyCGykukU7S4aX+nSjrJEQEDMaMcbw3NCHrumg=="; 4478 }; 4479 }; 4480 + "n8n-editor-ui-0.129.0" = { 4481 name = "n8n-editor-ui"; 4482 packageName = "n8n-editor-ui"; 4483 + version = "0.129.0"; 4484 src = fetchurl { 4485 + url = "https://registry.npmjs.org/n8n-editor-ui/-/n8n-editor-ui-0.129.0.tgz"; 4486 + sha512 = "LEYqSL04FWh9dPM/YhL1yySOYCN7IB5uP7uLjfiDR+B7BQcmpq1Do6NzuKqdzfoN8MwMZy6avQrw691rq266nQ=="; 4487 }; 4488 }; 4489 + "n8n-nodes-base-0.160.0" = { 4490 name = "n8n-nodes-base"; 4491 packageName = "n8n-nodes-base"; 4492 + version = "0.160.0"; 4493 src = fetchurl { 4494 + url = "https://registry.npmjs.org/n8n-nodes-base/-/n8n-nodes-base-0.160.0.tgz"; 4495 + sha512 = "q1eJBZSRgafVZBoCgmqxP0vnGDbgUpru0SOgtPgvvZxceo02PiBn8X8N8UjZ5ZeqIekO25tWvbJjGZpyIQ5/sg=="; 4496 }; 4497 }; 4498 + "n8n-workflow-0.86.0" = { 4499 name = "n8n-workflow"; 4500 packageName = "n8n-workflow"; 4501 + version = "0.86.0"; 4502 src = fetchurl { 4503 + url = "https://registry.npmjs.org/n8n-workflow/-/n8n-workflow-0.86.0.tgz"; 4504 + sha512 = "+Kdo5RMEsh7QJ8AkWNTSpyxYRtjpxPmPfifVAFg4HVguW7g5e7f74xlmqD2xnxQybC9B3f6jxvx6WMKbNcT/+A=="; 4505 }; 4506 }; 4507 "named-placeholders-1.1.2" = { ··· 4558 sha512 = "6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ=="; 4559 }; 4560 }; 4561 + "negotiator-0.6.3" = { 4562 name = "negotiator"; 4563 packageName = "negotiator"; 4564 + version = "0.6.3"; 4565 src = fetchurl { 4566 + url = "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz"; 4567 + sha512 = "+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg=="; 4568 }; 4569 }; 4570 "neo-async-2.6.2" = { ··· 5116 sha512 = "v6ZJ/efsBpGrGGknjtq9J/oC8tZWq0KWL5vQrk2GlzLEQPUDB1ex+13Rmidl1neNN358Jn9EHZw5y07FFtaC7A=="; 5117 }; 5118 }; 5119 + "peek-readable-4.1.0" = { 5120 name = "peek-readable"; 5121 packageName = "peek-readable"; 5122 + version = "4.1.0"; 5123 src = fetchurl { 5124 + url = "https://registry.npmjs.org/peek-readable/-/peek-readable-4.1.0.tgz"; 5125 + sha512 = "ZI3LnwUv5nOGbQzD9c2iDG6toheuXSZP5esSHBjopsXH4dg19soufvpUGA3uohi5anFtGb2lhAVdHzH6R/Evvg=="; 5126 }; 5127 }; 5128 "performance-now-2.1.0" = { ··· 5143 sha512 = "7bdYcv7V6U3KAtWjpQJJBww0UEsWuh4yQ/EjNf2HeO/NnvKjpvhEIe/A/TleP6wtmSKnUnghs5A9jUoK6iDdkA=="; 5144 }; 5145 }; 5146 + "pg-8.7.3" = { 5147 + name = "pg"; 5148 + packageName = "pg"; 5149 + version = "8.7.3"; 5150 + src = fetchurl { 5151 + url = "https://registry.npmjs.org/pg/-/pg-8.7.3.tgz"; 5152 + sha512 = "HPmH4GH4H3AOprDJOazoIcpI49XFsHCe8xlrjHkWiapdbHK+HLtbm/GQzXYAZwmPju/kzKhjaSfMACG+8cgJcw=="; 5153 + }; 5154 + }; 5155 "pg-connection-string-2.5.0" = { 5156 name = "pg-connection-string"; 5157 packageName = "pg-connection-string"; ··· 5179 sha512 = "1KdmFGGTP6jplJoI8MfvRlfvMiyBivMRP7/ffh4a11RUFJ7kC2J0ZHlipoKiH/1hz+DVgceon9U2qbaHpPeyPg=="; 5180 }; 5181 }; 5182 + "pg-pool-3.5.1" = { 5183 name = "pg-pool"; 5184 packageName = "pg-pool"; 5185 + version = "3.5.1"; 5186 src = fetchurl { 5187 + url = "https://registry.npmjs.org/pg-pool/-/pg-pool-3.5.1.tgz"; 5188 + sha512 = "6iCR0wVrro6OOHFsyavV+i6KYL4lVNyYAB9RD18w66xSzN+d8b66HiwuP30Gp1SH5O9T82fckkzsRjlrhD0ioQ=="; 5189 }; 5190 }; 5191 "pg-promise-10.11.1" = { ··· 5350 sha512 = "sanczS6xOJOg7IKDvi4sGOUOe7c1tsEzjwlLFH/zgwx/uyImVM9/rgBkc8AfiQa/Vg54nRd8mkm9yI7WV/O+WA=="; 5351 }; 5352 }; 5353 + "printj-1.3.1" = { 5354 name = "printj"; 5355 packageName = "printj"; 5356 + version = "1.3.1"; 5357 src = fetchurl { 5358 + url = "https://registry.npmjs.org/printj/-/printj-1.3.1.tgz"; 5359 + sha512 = "GA3TdL8szPK4AQ2YnOe/b+Y1jUFwmmGMMK/qbY7VcE3Z7FU8JstbKiKRzO6CIiAKPhTO8m01NoQ0V5f3jc4OGg=="; 5360 }; 5361 }; 5362 "process-0.11.10" = { ··· 5989 sha512 = "ERq4hUjKDbJfE4+XtZLFPCDi8Vb1JqaxAPTxWFLBx8XcAlf9Bda/ZJdVezs/NAfsMQScyIlUMx+Yeu7P7rx5jw=="; 5990 }; 5991 }; 5992 + "safe-stable-stringify-2.3.1" = { 5993 + name = "safe-stable-stringify"; 5994 + packageName = "safe-stable-stringify"; 5995 + version = "2.3.1"; 5996 + src = fetchurl { 5997 + url = "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.3.1.tgz"; 5998 + sha512 = "kYBSfT+troD9cDA85VDnHZ1rpHC50O0g1e6WlGHVCz/g+JS+9WKLj+XwFYyR8UbrZN8ll9HUpDAAddY58MGisg=="; 5999 + }; 6000 + }; 6001 "safer-buffer-2.1.2" = { 6002 name = "safer-buffer"; 6003 packageName = "safer-buffer"; ··· 6196 sha512 = "q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw=="; 6197 }; 6198 }; 6199 + "signal-exit-3.0.7" = { 6200 name = "signal-exit"; 6201 packageName = "signal-exit"; 6202 + version = "3.0.7"; 6203 src = fetchurl { 6204 + url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz"; 6205 + sha512 = "wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="; 6206 }; 6207 }; 6208 "simple-git-2.48.0" = { ··· 6349 sha512 = "+idbmIXoYET47hH+d7dfm2epdOMUDjqcB4648sTZ+t2JwoyBFL/insLfB/racrDmsKB3diwsDA696pZMieAC5g=="; 6350 }; 6351 }; 6352 + "ssh2-1.6.0" = { 6353 name = "ssh2"; 6354 packageName = "ssh2"; 6355 + version = "1.6.0"; 6356 src = fetchurl { 6357 + url = "https://registry.npmjs.org/ssh2/-/ssh2-1.6.0.tgz"; 6358 + sha512 = "lxc+uvXqOxyQ99N2M7k5o4pkYDO5GptOTYduWw7hIM41icxvoBcCNHcj+LTKrjkL0vFcAl+qfZekthoSFRJn2Q=="; 6359 }; 6360 }; 6361 + "ssh2-sftp-client-7.2.2" = { 6362 name = "ssh2-sftp-client"; 6363 packageName = "ssh2-sftp-client"; 6364 + version = "7.2.2"; 6365 src = fetchurl { 6366 + url = "https://registry.npmjs.org/ssh2-sftp-client/-/ssh2-sftp-client-7.2.2.tgz"; 6367 + sha512 = "qZYivU1zezyRomCf+TtsCYVAsc0TDQWzxJMMUN8NknEPonm2TYGxJAzrW8acUh2ILYgA0ZPOJElLV/qp9nRVYQ=="; 6368 }; 6369 }; 6370 "sshpk-1.17.0" = { ··· 6520 sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a"; 6521 }; 6522 }; 6523 + "strtok3-6.3.0" = { 6524 name = "strtok3"; 6525 packageName = "strtok3"; 6526 + version = "6.3.0"; 6527 src = fetchurl { 6528 + url = "https://registry.npmjs.org/strtok3/-/strtok3-6.3.0.tgz"; 6529 + sha512 = "fZtbhtvI9I48xDSywd/somNqgUHl2L2cstmXCCif0itOf96jeW18MBSyrLuNicYQVkvpOxkZtkzujiTJ9LW5Jw=="; 6530 }; 6531 }; 6532 "supports-color-2.0.0" = { ··· 7213 sha512 = "NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg=="; 7214 }; 7215 }; 7216 + "winston-3.5.1" = { 7217 name = "winston"; 7218 packageName = "winston"; 7219 + version = "3.5.1"; 7220 src = fetchurl { 7221 + url = "https://registry.npmjs.org/winston/-/winston-3.5.1.tgz"; 7222 + sha512 = "tbRtVy+vsSSCLcZq/8nXZaOie/S2tPXPFt4be/Q3vI/WtYwm7rrwidxVw2GRa38FIXcJ1kUM6MOZ9Jmnk3F3UA=="; 7223 }; 7224 }; 7225 + "winston-transport-4.5.0" = { 7226 name = "winston-transport"; 7227 packageName = "winston-transport"; 7228 + version = "4.5.0"; 7229 src = fetchurl { 7230 + url = "https://registry.npmjs.org/winston-transport/-/winston-transport-4.5.0.tgz"; 7231 + sha512 = "YpZzcUzBedhlTAfJg6vJDlyEai/IFMIVcaEZZyl3UXIl4gmqRpU7AE89AHLkbzLUsv0NVmw7ts+iztqKxxPW1Q=="; 7232 }; 7233 }; 7234 "wmf-1.0.2" = { ··· 7453 n8n = nodeEnv.buildNodePackage { 7454 name = "n8n"; 7455 packageName = "n8n"; 7456 + version = "0.162.0"; 7457 src = fetchurl { 7458 + url = "https://registry.npmjs.org/n8n/-/n8n-0.162.0.tgz"; 7459 + sha512 = "76fcq99iZXy+j+BiuZMrR1rgeBgWRGOVwNeqlEqWCJ3u8kg6iDsGRuo9nSdx11OzP17hAJJKLtYHxLfTBV3kUw=="; 7460 }; 7461 dependencies = [ 7462 (sources."@azure/abort-controller-1.0.5" // { ··· 7470 sources."tslib-2.3.1" 7471 ]; 7472 }) 7473 + (sources."@azure/core-http-2.2.4" // { 7474 dependencies = [ 7475 sources."tough-cookie-4.0.0" 7476 sources."tslib-2.3.1" ··· 7508 sources."tslib-2.3.1" 7509 ]; 7510 }) 7511 + sources."@babel/runtime-7.17.0" 7512 (sources."@dabh/diagnostics-2.0.2" // { 7513 dependencies = [ 7514 sources."enabled-2.0.0" 7515 sources."kuler-2.0.0" 7516 ]; 7517 }) 7518 + sources."@fontsource/open-sans-4.5.4" 7519 sources."@icetee/ftp-0.3.15" 7520 sources."@kafkajs/confluent-schema-registry-1.0.6" 7521 sources."@kwsites/file-exists-1.1.1" ··· 7524 sources."@nodelib/fs.stat-2.0.5" 7525 sources."@nodelib/fs.walk-1.2.8" 7526 sources."@oclif/command-1.8.16" 7527 + (sources."@oclif/config-1.18.3" // { 7528 dependencies = [ 7529 sources."tslib-2.3.1" 7530 ]; ··· 7534 sources."wrap-ansi-7.0.0" 7535 ]; 7536 }) 7537 + (sources."@oclif/help-1.0.1" // { 7538 + dependencies = [ 7539 + sources."@oclif/config-1.18.2" 7540 + sources."tslib-2.3.1" 7541 + ]; 7542 + }) 7543 sources."@oclif/linewrap-1.0.0" 7544 (sources."@oclif/parser-3.8.6" // { 7545 dependencies = [ 7546 sources."tslib-2.3.1" 7547 ]; 7548 }) 7549 + sources."@opentelemetry/api-1.1.0" 7550 sources."@rudderstack/rudder-sdk-node-1.0.6" 7551 sources."@segment/loosely-validate-event-2.0.0" 7552 sources."@selderee/plugin-htmlparser2-0.6.0" ··· 7567 sources."@types/lodash-4.14.178" 7568 sources."@types/lossless-json-1.0.1" 7569 sources."@types/mime-1.3.2" 7570 + sources."@types/node-17.0.15" 7571 (sources."@types/node-fetch-2.5.12" // { 7572 dependencies = [ 7573 sources."form-data-3.0.1" ··· 7585 sources."@xmldom/xmldom-0.7.5" 7586 sources."abbrev-1.1.1" 7587 sources."abort-controller-3.0.0" 7588 + sources."accepts-1.3.8" 7589 sources."access-control-1.0.1" 7590 (sources."adal-node-0.2.3" // { 7591 dependencies = [ ··· 7634 ]; 7635 }) 7636 sources."avsc-5.7.3" 7637 + (sources."aws-sdk-2.1069.0" // { 7638 dependencies = [ 7639 sources."buffer-4.9.2" 7640 sources."events-1.1.1" ··· 7729 sources."printj-1.2.3" 7730 ]; 7731 }) 7732 + sources."printj-1.3.1" 7733 ]; 7734 }) 7735 sources."chalk-4.1.2" ··· 7808 sources."convict-6.2.1" 7809 sources."cookie-0.4.1" 7810 sources."cookie-signature-1.0.6" 7811 + sources."core-js-3.21.0" 7812 sources."core-util-is-1.0.2" 7813 + (sources."crc-32-1.2.1" // { 7814 + dependencies = [ 7815 + sources."printj-1.3.1" 7816 + ]; 7817 + }) 7818 sources."cron-1.7.2" 7819 sources."cron-parser-2.18.0" 7820 (sources."cross-spawn-4.0.2" // { ··· 7920 sources."ms-2.0.0" 7921 ]; 7922 }) 7923 + sources."flatted-3.2.5" 7924 sources."fn.name-1.1.0" 7925 sources."follow-redirects-1.14.7" 7926 sources."for-each-0.3.3" ··· 8013 sources."ini-1.3.8" 8014 sources."inquirer-7.3.3" 8015 sources."internal-slot-1.0.3" 8016 + sources."ioredis-4.28.5" 8017 sources."ip-regex-2.1.0" 8018 sources."ipaddr.js-1.9.1" 8019 sources."is-absolute-1.0.0" ··· 8048 sources."is-windows-1.0.2" 8049 sources."is-wsl-2.2.0" 8050 sources."isarray-0.0.1" 8051 + sources."isbot-3.4.1" 8052 sources."isexe-2.0.0" 8053 sources."iso-639-1-2.1.12" 8054 sources."isstream-0.1.2" ··· 8081 sources."iconv-lite-0.6.2" 8082 ]; 8083 }) 8084 + sources."libphonenumber-js-1.9.48" 8085 sources."libqp-1.1.0" 8086 sources."limiter-1.1.5" 8087 sources."linkify-it-3.0.3" ··· 8104 sources."lodash.isnumber-3.0.3" 8105 sources."lodash.isplainobject-4.0.6" 8106 sources."lodash.isstring-4.0.1" 8107 + sources."lodash.merge-4.6.2" 8108 sources."lodash.once-4.1.1" 8109 sources."lodash.set-4.3.2" 8110 sources."lodash.uniqby-4.7.0" 8111 sources."lodash.unset-4.5.2" 8112 + (sources."logform-2.3.2" // { 8113 + dependencies = [ 8114 + sources."safe-stable-stringify-1.1.1" 8115 + ]; 8116 + }) 8117 sources."long-4.0.0" 8118 sources."lossless-json-1.0.5" 8119 (sources."lower-case-2.0.2" // { ··· 8142 }) 8143 sources."make-error-1.3.6" 8144 sources."make-error-cause-2.3.0" 8145 + sources."mappersmith-2.37.1" 8146 sources."md5-2.3.0" 8147 sources."media-typer-0.3.0" 8148 sources."merge-descriptors-1.0.1" ··· 8198 ]; 8199 }) 8200 sources."mz-2.7.0" 8201 + (sources."n8n-core-0.104.0" // { 8202 dependencies = [ 8203 sources."qs-6.10.3" 8204 ]; 8205 }) 8206 + sources."n8n-design-system-0.11.0" 8207 + sources."n8n-editor-ui-0.129.0" 8208 + (sources."n8n-nodes-base-0.160.0" // { 8209 dependencies = [ 8210 sources."iconv-lite-0.6.3" 8211 ]; 8212 }) 8213 + sources."n8n-workflow-0.86.0" 8214 (sources."named-placeholders-1.1.2" // { 8215 dependencies = [ 8216 sources."lru-cache-4.1.5" ··· 8230 sources."debug-3.2.7" 8231 ]; 8232 }) 8233 + sources."negotiator-0.6.3" 8234 sources."neo-async-2.6.2" 8235 (sources."no-case-3.0.4" // { 8236 dependencies = [ ··· 8329 sources."debug-3.2.7" 8330 ]; 8331 }) 8332 + sources."peek-readable-4.1.0" 8333 sources."performance-now-2.1.0" 8334 + sources."pg-8.7.3" 8335 sources."pg-connection-string-2.5.0" 8336 sources."pg-int8-1.0.1" 8337 sources."pg-minify-1.6.2" 8338 + sources."pg-pool-3.5.1" 8339 + (sources."pg-promise-10.11.1" // { 8340 + dependencies = [ 8341 + sources."pg-8.7.1" 8342 + ]; 8343 + }) 8344 sources."pg-protocol-1.5.0" 8345 sources."pg-types-2.2.0" 8346 (sources."pgpass-1.0.5" // { ··· 8445 sources."run-parallel-1.2.0" 8446 sources."rxjs-6.6.7" 8447 sources."safe-buffer-5.2.1" 8448 + sources."safe-stable-stringify-2.3.1" 8449 sources."safer-buffer-2.1.2" 8450 sources."sax-1.2.4" 8451 sources."sb-promise-queue-2.1.0" ··· 8477 sources."sha.js-2.4.11" 8478 sources."shell-escape-0.2.0" 8479 sources."side-channel-1.0.4" 8480 + sources."signal-exit-3.0.7" 8481 sources."simple-git-2.48.0" 8482 sources."simple-lru-cache-0.0.2" 8483 sources."simple-swizzle-0.2.2" ··· 8511 sources."sqlstring-2.3.2" 8512 sources."sse-channel-3.1.1" 8513 sources."ssf-0.11.2" 8514 + sources."ssh2-1.6.0" 8515 + sources."ssh2-sftp-client-7.2.2" 8516 sources."sshpk-1.17.0" 8517 sources."stack-trace-0.0.10" 8518 sources."standard-as-callback-2.1.0" ··· 8526 sources."string_decoder-0.10.31" 8527 sources."strip-ansi-6.0.1" 8528 sources."strip-json-comments-2.0.1" 8529 + sources."strtok3-6.3.0" 8530 sources."supports-color-7.2.0" 8531 (sources."tar-4.4.19" // { 8532 dependencies = [ ··· 8538 sources."tdigest-0.1.1" 8539 (sources."tedious-6.7.1" // { 8540 dependencies = [ 8541 + sources."@types/node-12.20.43" 8542 sources."bl-3.0.1" 8543 sources."depd-2.0.0" 8544 sources."iconv-lite-0.5.2" ··· 8645 sources."which-boxed-primitive-1.0.2" 8646 sources."wide-align-1.1.5" 8647 sources."widest-line-3.1.0" 8648 + (sources."winston-3.5.1" // { 8649 dependencies = [ 8650 sources."async-3.2.3" 8651 sources."readable-stream-3.6.0" 8652 sources."string_decoder-1.3.0" 8653 ]; 8654 }) 8655 + (sources."winston-transport-4.5.0" // { 8656 dependencies = [ 8657 sources."readable-stream-3.6.0" 8658 sources."string_decoder-1.3.0"
+2 -2
pkgs/applications/office/qownnotes/default.nix
··· 5 6 mkDerivation rec { 7 pname = "qownnotes"; 8 - version = "22.1.11"; 9 10 src = fetchurl { 11 url = "https://download.tuxfamily.org/${pname}/src/${pname}-${version}.tar.xz"; 12 # Fetch the checksum of current version with curl: 13 # curl https://download.tuxfamily.org/qownnotes/src/qownnotes-<version>.tar.xz.sha256 14 - sha256 = "7fa21ca9b8b0df6f1bda7a7dc21d53642eccf8de6a31a9a29a251e0a17c00c83"; 15 }; 16 17 nativeBuildInputs = [ qmake qttools ];
··· 5 6 mkDerivation rec { 7 pname = "qownnotes"; 8 + version = "22.2.1"; 9 10 src = fetchurl { 11 url = "https://download.tuxfamily.org/${pname}/src/${pname}-${version}.tar.xz"; 12 # Fetch the checksum of current version with curl: 13 # curl https://download.tuxfamily.org/qownnotes/src/qownnotes-<version>.tar.xz.sha256 14 + sha256 = "26dfd41430e9efa5cc93c2d67156387a564efd0843c2020284658100b298d54c"; 15 }; 16 17 nativeBuildInputs = [ qmake qttools ];
+3 -3
pkgs/applications/science/logic/lean/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "lean"; 5 - version = "3.39.0"; 6 7 src = fetchFromGitHub { 8 owner = "leanprover-community"; ··· 11 # from. this is then used to check whether an olean file should be 12 # rebuilt. don't use a tag as rev because this will get replaced into 13 # src/githash.h.in in preConfigure. 14 - rev = "85c581588857624e9cd562aaa0301a951c497833"; 15 - sha256 = "1v9rqvpgm2hw0mvsg1arp7xp4r9h9p286364hn3if55pg3h8bjzn"; 16 }; 17 18 nativeBuildInputs = [ cmake ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "lean"; 5 + version = "3.39.1"; 6 7 src = fetchFromGitHub { 8 owner = "leanprover-community"; ··· 11 # from. this is then used to check whether an olean file should be 12 # rebuilt. don't use a tag as rev because this will get replaced into 13 # src/githash.h.in in preConfigure. 14 + rev = "1781ded0d0062f40a7eaf3ead8dcbef4429c6321"; 15 + sha256 = "0xdpbfjfa1q4cnf87nl7l760ivr4agpqmy3i1f2b132sgbjzm1xx"; 16 }; 17 18 nativeBuildInputs = [ cmake ];
+3 -3
pkgs/applications/version-management/git-and-tools/git-branchless/default.nix
··· 15 16 rustPlatform.buildRustPackage rec { 17 pname = "git-branchless"; 18 - version = "0.3.8"; 19 20 src = fetchFromGitHub { 21 owner = "arxanas"; 22 repo = "git-branchless"; 23 rev = "v${version}"; 24 - sha256 = "sha256-eDVC1tvAkCioV0Mi5f/Qkc0MMTNaoFXuvWXpllZ7PgE="; 25 }; 26 27 - cargoSha256 = "sha256-wtG/WTmZ13jxIawI9j9QKQm7jPx5TUs7MjqX+lq/Vf0="; 28 29 nativeBuildInputs = [ pkg-config ]; 30
··· 15 16 rustPlatform.buildRustPackage rec { 17 pname = "git-branchless"; 18 + version = "0.3.9"; 19 20 src = fetchFromGitHub { 21 owner = "arxanas"; 22 repo = "git-branchless"; 23 rev = "v${version}"; 24 + sha256 = "sha256-SEmIZy8ql1MxcFR6zeif03DVha/SRZHajVwt3QOBBYU="; 25 }; 26 27 + cargoSha256 = "sha256-mKfPxU1JoN/xLdPdwy3vo1M0qF9ag0T4Ls4dfvHn6Pc="; 28 29 nativeBuildInputs = [ pkg-config ]; 30
+24
pkgs/development/compilers/gforth/boot-forth.nix
···
··· 1 + { lib, stdenv, fetchurl, m4 }: 2 + 3 + let 4 + version = "0.7.3"; 5 + in 6 + stdenv.mkDerivation { 7 + pname = "gforth-boot"; 8 + inherit version; 9 + src = fetchurl { 10 + url = "https://ftp.gnu.org/gnu/gforth/gforth-${version}.tar.gz"; 11 + sha256 = "1c1bahc9ypmca8rv2dijiqbangm1d9av286904yw48ph7ciz4qig"; 12 + }; 13 + 14 + buildInputs = [ m4 ]; 15 + 16 + configureFlags = lib.optional stdenv.isDarwin [ "--build=x86_64-apple-darwin" ]; 17 + 18 + meta = { 19 + description = "The Forth implementation of the GNU project (outdated version used to bootstrap)"; 20 + homepage = "https://www.gnu.org/software/gforth/"; 21 + license = lib.licenses.gpl3; 22 + platforms = lib.platforms.all; 23 + }; 24 + }
+23 -10
pkgs/development/compilers/gforth/default.nix
··· 1 - { lib, stdenv, fetchurl, m4 }: 2 3 let 4 - version = "0.7.3"; 5 - in 6 - stdenv.mkDerivation { 7 pname = "gforth"; 8 - inherit version; 9 - src = fetchurl { 10 - url = "https://ftp.gnu.org/gnu/gforth/gforth-${version}.tar.gz"; 11 - sha256 = "1c1bahc9ypmca8rv2dijiqbangm1d9av286904yw48ph7ciz4qig"; 12 }; 13 14 - buildInputs = [ m4 ]; 15 16 configureFlags = lib.optional stdenv.isDarwin [ "--build=x86_64-apple-darwin" ]; 17 ··· 22 23 meta = { 24 description = "The Forth implementation of the GNU project"; 25 - homepage = "https://www.gnu.org/software/gforth/"; 26 license = lib.licenses.gpl3; 27 platforms = lib.platforms.all; 28 };
··· 1 + { lib, stdenv, fetchFromGitHub, callPackage 2 + , autoreconfHook, texinfo, libffi 3 + }: 4 5 let 6 + swig = callPackage ./swig.nix { }; 7 + bootForth = callPackage ./boot-forth.nix { }; 8 + in stdenv.mkDerivation rec { 9 + 10 pname = "gforth"; 11 + version = "0.7.9_20220127"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "forthy42"; 15 + repo = "gforth"; 16 + rev = version; 17 + sha256 = "sha256-3+ObHhsPvW44UFiN0GWOhwo7aiqhjwxNY8hw2Wv4MK0="; 18 }; 19 20 + nativeBuildInputs = [ 21 + autoreconfHook texinfo bootForth swig 22 + ]; 23 + buildInputs = [ 24 + libffi 25 + ]; 26 + 27 + passthru = { inherit bootForth; }; 28 29 configureFlags = lib.optional stdenv.isDarwin [ "--build=x86_64-apple-darwin" ]; 30 ··· 35 36 meta = { 37 description = "The Forth implementation of the GNU project"; 38 + homepage = "https://github.com/forthy42/gforth"; 39 license = lib.licenses.gpl3; 40 platforms = lib.platforms.all; 41 };
+16
pkgs/development/compilers/gforth/swig.nix
···
··· 1 + { swig3, fetchFromGitHub }: 2 + 3 + ## for updating to swig4, see 4 + ## https://github.com/GeraldWodni/swig/pull/6 5 + swig3.overrideDerivation (old: { 6 + version = "3.0.9-forth"; 7 + src = fetchFromGitHub { 8 + owner = "GeraldWodni"; 9 + repo = "swig"; 10 + rev = "a45b807e5f9d8ca1a43649c8265d2741a393862a"; 11 + sha256 = "sha256-6nOOPFGFNaQInEkul0ZAh+ks9n3wqCQ6/tbduvG/To0="; 12 + }; 13 + configureFlags = old.configureFlags ++ [ 14 + "--enable-forth" 15 + ]; 16 + })
+3 -2
pkgs/development/compilers/jetbrains-jdk/default.nix
··· 2 3 openjdk11.overrideAttrs (oldAttrs: rec { 4 pname = "jetbrains-jdk"; 5 - version = "11_0_11-b1504.13"; 6 src = fetchFromGitHub { 7 owner = "JetBrains"; 8 repo = "JetBrainsRuntime"; 9 rev = "jb${version}"; 10 - sha256 = "1xpgsgmmj5jp5qyw98hqmik6a7z3hfwmij023ij3qqymyj3nhm2i"; 11 }; 12 patches = []; 13 meta = with lib; {
··· 2 3 openjdk11.overrideAttrs (oldAttrs: rec { 4 pname = "jetbrains-jdk"; 5 + version = "11_0_13-b1751.25"; 6 + 7 src = fetchFromGitHub { 8 owner = "JetBrains"; 9 repo = "JetBrainsRuntime"; 10 rev = "jb${version}"; 11 + sha256 = "sha256-TPNYZUkAoiZfp7Ci3fslKnRNGY1lnyIhXYUt6J31lwI="; 12 }; 13 patches = []; 14 meta = with lib; {
+2 -2
pkgs/development/compilers/julia/1.7-bin.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "julia-bin"; 5 - version = "1.7.1"; 6 7 src = { 8 x86_64-linux = fetchurl { 9 url = "https://julialang-s3.julialang.org/bin/linux/x64/${lib.versions.majorMinor version}/julia-${version}-linux-x86_64.tar.gz"; 10 - sha256 = "04czipzai5628v1npa2y2xff0bd4rj8d2fcjnnsvkqj5gff8wra4"; 11 }; 12 }.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); 13
··· 2 3 stdenv.mkDerivation rec { 4 pname = "julia-bin"; 5 + version = "1.7.2"; 6 7 src = { 8 x86_64-linux = fetchurl { 9 url = "https://julialang-s3.julialang.org/bin/linux/x64/${lib.versions.majorMinor version}/julia-${version}-linux-x86_64.tar.gz"; 10 + sha256 = "15dsfdcxvx0wizkkn85ldz0mg0h7cjziz1lw4kky0b9v9xr48lm7"; 11 }; 12 }.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); 13
+1 -6
pkgs/development/haskell-modules/configuration-nix.nix
··· 595 sha256 = "1hjdprm990vyxz86fgq14ajn0lkams7i00h8k2i2g1a0hjdwppq6"; 596 }; 597 598 - spagoWithOverrides = super.spago.override { 599 - # spago has not yet been updated for the latest dhall. 600 - dhall = self.dhall_1_38_1; 601 - }; 602 - 603 spagoDocs = overrideCabal (drv: { 604 postUnpack = (drv.postUnpack or "") + '' 605 # Spago includes the following two files directly into the binary ··· 625 "$sourceRoot/templates/docs-search-app-0.0.11.js" \ 626 "$sourceRoot/templates/purescript-docs-search-0.0.11" 627 ''; 628 - }) spagoWithOverrides; 629 630 # Tests require network access. 631 spagoWithoutChecks = dontCheck spagoDocs;
··· 595 sha256 = "1hjdprm990vyxz86fgq14ajn0lkams7i00h8k2i2g1a0hjdwppq6"; 596 }; 597 598 spagoDocs = overrideCabal (drv: { 599 postUnpack = (drv.postUnpack or "") + '' 600 # Spago includes the following two files directly into the binary ··· 620 "$sourceRoot/templates/docs-search-app-0.0.11.js" \ 621 "$sourceRoot/templates/purescript-docs-search-0.0.11" 622 ''; 623 + }) super.spago; 624 625 # Tests require network access. 626 spagoWithoutChecks = dontCheck spagoDocs;
+15
pkgs/development/haskell-modules/with-packages-wrapper.nix
··· 164 passthru = { 165 preferLocalBuild = true; 166 inherit (ghc) version meta; 167 }; 168 }
··· 164 passthru = { 165 preferLocalBuild = true; 166 inherit (ghc) version meta; 167 + 168 + # Inform users about backwards incompatibilities with <= 21.05 169 + override = _: throw '' 170 + The ghc.withPackages wrapper itself can now be overridden, but no longer 171 + the result of calling it (as before). Consequently overrides need to be 172 + adjusted: Instead of 173 + 174 + (ghc.withPackages (p: [ p.my-package ])).override { withLLLVM = true; } 175 + 176 + use 177 + 178 + (ghc.withPackages.override { useLLVM = true; }) (p: [ p.my-package ]) 179 + 180 + Also note that withLLVM has been renamed to useLLVM for consistency with 181 + the GHC Nix expressions.''; 182 }; 183 }
+30 -8
pkgs/development/interpreters/bats/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, bash, makeWrapper, coreutils, gnugrep, ncurses, doCheck ? true }: 2 3 - stdenv.mkDerivation rec { 4 pname = "bats"; 5 version = "1.5.0"; 6 ··· 11 sha256 = "sha256-MEkMi2w8G9FZhE3JvzzbqObcErQ9WFXy5mtKwQOoxbk="; 12 }; 13 14 - nativeBuildInputs = [ makeWrapper ]; 15 - 16 patchPhase = '' 17 patchShebangs . 18 ''; 19 20 installPhase = '' 21 ./install.sh $out 22 - wrapProgram $out/bin/bats --suffix PATH : "${lib.makeBinPath [ bash coreutils gnugrep ]}" 23 ''; 24 25 - inherit doCheck; 26 - checkInputs = [ ncurses ]; 27 - checkPhase = '' 28 # TODO: cut if https://github.com/bats-core/bats-core/issues/418 allows 29 sed -i '/test works even if PATH is reset/a skip' test/bats.bats 30
··· 1 + { resholvePackage 2 + , lib 3 + , fetchFromGitHub 4 + , bash 5 + , coreutils 6 + , gnugrep 7 + , ncurses 8 + , doInstallCheck ? true 9 + }: 10 11 + resholvePackage rec { 12 pname = "bats"; 13 version = "1.5.0"; 14 ··· 19 sha256 = "sha256-MEkMi2w8G9FZhE3JvzzbqObcErQ9WFXy5mtKwQOoxbk="; 20 }; 21 22 patchPhase = '' 23 patchShebangs . 24 ''; 25 26 installPhase = '' 27 ./install.sh $out 28 ''; 29 30 + solutions = { 31 + bats = { 32 + scripts = [ "bin/bats" ]; 33 + interpreter = "${bash}/bin/bash"; 34 + inputs = [ bash coreutils gnugrep ]; 35 + fake = { 36 + external = [ "greadlink" ]; 37 + }; 38 + fix = { 39 + "$BATS_ROOT" = [ "${placeholder "out"}" ]; 40 + }; 41 + keep = { 42 + "${placeholder "out"}/libexec/bats-core/bats" = true; 43 + }; 44 + }; 45 + }; 46 + 47 + inherit doInstallCheck; 48 + installCheckInputs = [ ncurses ]; 49 + installCheckPhase = '' 50 # TODO: cut if https://github.com/bats-core/bats-core/issues/418 allows 51 sed -i '/test works even if PATH is reset/a skip' test/bats.bats 52
+25
pkgs/development/libraries/SDL2_ttf/2.0.15.nix
···
··· 1 + { lib, stdenv, pkg-config, darwin, fetchurl, SDL2, freetype, libGL }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "SDL2_ttf"; 5 + version = "2.0.15"; 6 + 7 + src = fetchurl { 8 + url = "https://www.libsdl.org/projects/SDL_ttf/release/${pname}-${version}.tar.gz"; 9 + sha256 = "0cyd48dipc0m399qy8s03lci8b0bpiy8xlkvrm2ia7wcv0dfpv59"; 10 + }; 11 + 12 + configureFlags = lib.optional stdenv.isDarwin "--disable-sdltest"; 13 + 14 + nativeBuildInputs = [ pkg-config ]; 15 + 16 + buildInputs = [ SDL2 freetype libGL ] 17 + ++ lib.optional stdenv.isDarwin darwin.libobjc; 18 + 19 + meta = with lib; { 20 + description = "SDL TrueType library"; 21 + platforms = platforms.unix; 22 + license = licenses.zlib; 23 + homepage = "https://www.libsdl.org/projects/SDL_ttf/"; 24 + }; 25 + }
+3 -3
pkgs/development/libraries/libnats-c/default.nix
··· 5 6 stdenv.mkDerivation rec { 7 pname = "libnats"; 8 - version = "2.1.0"; 9 10 src = fetchFromGitHub { 11 owner = "nats-io"; 12 repo = "nats.c"; 13 - rev = "refs/tags/v${version}"; 14 - sha256 = "16a0f0gvrmyrqvmh6vinqny3qhm6wyzw5ijnn3r82b1gqlpws0fz"; 15 }; 16 17 nativeBuildInputs = [ cmake ];
··· 5 6 stdenv.mkDerivation rec { 7 pname = "libnats"; 8 + version = "3.2.0"; 9 10 src = fetchFromGitHub { 11 owner = "nats-io"; 12 repo = "nats.c"; 13 + rev = "v${version}"; 14 + sha256 = "1ngji3sa44y27lnq4x5dzbd117s9psx4w0j50b4c2b72cf2z139q"; 15 }; 16 17 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/development/libraries/libosmium/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "libosmium"; 5 - version = "2.17.3"; 6 7 src = fetchFromGitHub { 8 owner = "osmcode"; 9 repo = "libosmium"; 10 rev = "v${version}"; 11 - sha256 = "sha256-XpC5gb19jPakYS3QSgOU6WnGad+VEoEtxyT38d9Beug="; 12 }; 13 14 nativeBuildInputs = [ cmake ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "libosmium"; 5 + version = "2.18.0"; 6 7 src = fetchFromGitHub { 8 owner = "osmcode"; 9 repo = "libosmium"; 10 rev = "v${version}"; 11 + sha256 = "sha256-IPdaBT6hRNHo8kuOsiKdyiQkRxA/l+44U3qGGG89BTo="; 12 }; 13 14 nativeBuildInputs = [ cmake ];
+2 -11
pkgs/development/libraries/pipewire/wireplumber.nix
··· 27 in 28 stdenv.mkDerivation rec { 29 pname = "wireplumber"; 30 - version = "0.4.7"; 31 32 outputs = [ "out" "dev" ] ++ lib.optional enableDocs "doc"; 33 ··· 36 owner = "pipewire"; 37 repo = "wireplumber"; 38 rev = version; 39 - sha256 = "sha256-yp4xtp+s+h+43LGVtYonoJ2tQaLRfwyMY4fp8z1l0CM="; 40 }; 41 - 42 - patches = [ 43 - # backport a fix for default device selection 44 - # FIXME remove this after 0.4.8 45 - (fetchpatch { 46 - url = "https://gitlab.freedesktop.org/pipewire/wireplumber/-/commit/211f1e6b6cd4898121e4c2b821fae4dea6cc3317.patch"; 47 - sha256 = "sha256-EGcbJ8Rq/5ft6SV0VC+mTkhVE7Ycze4TL6AVc9KH7+M="; 48 - }) 49 - ]; 50 51 nativeBuildInputs = [ 52 meson
··· 27 in 28 stdenv.mkDerivation rec { 29 pname = "wireplumber"; 30 + version = "0.4.8"; 31 32 outputs = [ "out" "dev" ] ++ lib.optional enableDocs "doc"; 33 ··· 36 owner = "pipewire"; 37 repo = "wireplumber"; 38 rev = version; 39 + sha256 = "sha256-xwfggrjKHh5mZdvH6dKqQo6o1ltxuYdjoGYaWl31C/Y="; 40 }; 41 42 nativeBuildInputs = [ 43 meson
+2 -2
pkgs/development/libraries/simgear/default.nix
··· 4 , curl 5 }: 6 let 7 - version = "2020.3.11"; 8 shortVersion = builtins.substring 0 6 version; 9 in 10 stdenv.mkDerivation rec { ··· 13 14 src = fetchurl { 15 url = "mirror://sourceforge/flightgear/release-${shortVersion}/${pname}-${version}.tar.bz2"; 16 - sha256 = "sha256-u438vCo7AUPR/88B0alh5WbvId0z2cx2jW2apYcdTzw="; 17 }; 18 19 nativeBuildInputs = [ cmake ];
··· 4 , curl 5 }: 6 let 7 + version = "2020.3.12"; 8 shortVersion = builtins.substring 0 6 version; 9 in 10 stdenv.mkDerivation rec { ··· 13 14 src = fetchurl { 15 url = "mirror://sourceforge/flightgear/release-${shortVersion}/${pname}-${version}.tar.bz2"; 16 + sha256 = "sha256-W7KZzFU5qZE6tOv9YSzH3yoNi8YET2yzmThMcl23140="; 17 }; 18 19 nativeBuildInputs = [ cmake ];
+4 -12
pkgs/development/libraries/zeitgeist/default.nix
··· 1 - { lib, stdenv 2 , fetchFromGitLab 3 - , fetchpatch 4 , pkg-config 5 , glib 6 , sqlite ··· 20 21 stdenv.mkDerivation rec { 22 pname = "zeitgeist"; 23 - version = "1.0.3"; 24 25 outputs = [ "out" "lib" "dev" "man" ] ++ lib.optional pythonSupport "py"; 26 ··· 29 owner = pname; 30 repo = pname; 31 rev = "v${version}"; 32 - sha256 = "0y6fyzxl5np4yskcxibd0p03h619w9ir907nhf40h02y0pk1kgkp"; 33 }; 34 - 35 - patches = [ 36 - # Fix build with Vala 0.52 37 - (fetchpatch { 38 - url = "https://gitlab.freedesktop.org/zeitgeist/zeitgeist/commit/64ac3a6f94cd299e5e14945dc31b48f009dec152.patch"; 39 - sha256 = "Dw1kNE3JoFdmgcQ0eFoFLYvmxlPjXNj56Jkn2meINz4="; 40 - }) 41 - ]; 42 43 nativeBuildInputs = [ 44 autoconf
··· 1 + { stdenv 2 + , lib 3 , fetchFromGitLab 4 , pkg-config 5 , glib 6 , sqlite ··· 20 21 stdenv.mkDerivation rec { 22 pname = "zeitgeist"; 23 + version = "1.0.4"; 24 25 outputs = [ "out" "lib" "dev" "man" ] ++ lib.optional pythonSupport "py"; 26 ··· 29 owner = pname; 30 repo = pname; 31 rev = "v${version}"; 32 + sha256 = "kG1N8DXgjYAJ8fbrGHsp7eTqB20H5smzRnW0PSRUYR0="; 33 }; 34 35 nativeBuildInputs = [ 36 autoconf
+2 -2
pkgs/development/ocaml-modules/janestreet/default.nix
··· 299 }; 300 301 core = janePackage { 302 - version = "0.11.2"; 303 pname = "core"; 304 - hash = "0vpsvd75lxb09il2rnzyib9mlr51v1hzqdc9fdxgx353pb5agh8a"; 305 propagatedBuildInputs = [ core_kernel spawn ]; 306 meta.description = "Jane Street's standard library overlay"; 307 };
··· 299 }; 300 301 core = janePackage { 302 + version = "0.11.3"; 303 pname = "core"; 304 + hash = "0pzl8n09z4f3i7z2wq4cjxfqrr8mj6xcdp7rbg0nxap2zdhjgvrq"; 305 propagatedBuildInputs = [ core_kernel spawn ]; 306 meta.description = "Jane Street's standard library overlay"; 307 };
+2 -2
pkgs/development/python-modules/adafruit-platformdetect/default.nix
··· 6 7 buildPythonPackage rec { 8 pname = "adafruit-platformdetect"; 9 - version = "3.19.4"; 10 format = "setuptools"; 11 12 src = fetchPypi { 13 pname = "Adafruit-PlatformDetect"; 14 inherit version; 15 - sha256 = "sha256-b/uAmrFdAtmXUjaW038mKeZgWHCSIEzCZvCy/9Z3ghw="; 16 }; 17 18 nativeBuildInputs = [
··· 6 7 buildPythonPackage rec { 8 pname = "adafruit-platformdetect"; 9 + version = "3.19.5"; 10 format = "setuptools"; 11 12 src = fetchPypi { 13 pname = "Adafruit-PlatformDetect"; 14 inherit version; 15 + sha256 = "sha256-vbiMD0En11VDJUGnEc5ww0AhQ12vkbTCm/pqF7wnywI="; 16 }; 17 18 nativeBuildInputs = [
+9 -4
pkgs/development/python-modules/adguardhome/default.nix
··· 23 sha256 = "sha256-HAgt52Bo2NOUkpr5xvWTcRyrLKpfcBDlVAZxgDNI7hY="; 24 }; 25 26 nativeBuildInputs = [ poetry-core ]; 27 28 propagatedBuildInputs = [ ··· 35 pytest-asyncio 36 pytestCheckHook 37 ]; 38 - 39 - postPatch = '' 40 - substituteInPlace pyproject.toml --replace "--cov" "" 41 - ''; 42 43 pythonImportsCheck = [ "adguardhome" ]; 44
··· 23 sha256 = "sha256-HAgt52Bo2NOUkpr5xvWTcRyrLKpfcBDlVAZxgDNI7hY="; 24 }; 25 26 + postPatch = '' 27 + substituteInPlace pyproject.toml \ 28 + --replace "--cov" "" \ 29 + --replace '"0.0.0"' '"${version}"' 30 + 31 + substituteInPlace tests/test_adguardhome.py \ 32 + --replace 0.0.0 ${version} 33 + ''; 34 + 35 nativeBuildInputs = [ poetry-core ]; 36 37 propagatedBuildInputs = [ ··· 44 pytest-asyncio 45 pytestCheckHook 46 ]; 47 48 pythonImportsCheck = [ "adguardhome" ]; 49
+5 -1
pkgs/development/python-modules/aiomusiccast/default.nix
··· 11 version = "0.14.3"; 12 13 format = "pyproject"; 14 - 15 disabled = pythonOlder "3.8"; 16 17 src = fetchFromGitHub { ··· 20 rev = version; 21 hash = "sha256-ELdNxeU9dajWr4VeOyuvNrSi7B+ImVJM/BlZsw3tcKE="; 22 }; 23 24 nativeBuildInputs = [ 25 poetry-core
··· 11 version = "0.14.3"; 12 13 format = "pyproject"; 14 disabled = pythonOlder "3.8"; 15 16 src = fetchFromGitHub { ··· 19 rev = version; 20 hash = "sha256-ELdNxeU9dajWr4VeOyuvNrSi7B+ImVJM/BlZsw3tcKE="; 21 }; 22 + 23 + postPatch = '' 24 + substituteInPlace pyproject.toml \ 25 + --replace '"0.0.0"' '"${version}"' 26 + ''; 27 28 nativeBuildInputs = [ 29 poetry-core
+2 -2
pkgs/development/python-modules/aionanoleaf/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "aionanoleaf"; 10 - version = "0.1.1"; 11 format = "setuptools"; 12 13 disabled = pythonOlder "3.8"; ··· 16 owner = "milanmeu"; 17 repo = pname; 18 rev = "v${version}"; 19 - sha256 = "10gi8fpv3xkdjaqig84723m3j0kxgxvqwqvjxmysq2sw4cjmsvz6"; 20 }; 21 22 propagatedBuildInputs = [
··· 7 8 buildPythonPackage rec { 9 pname = "aionanoleaf"; 10 + version = "0.2.0"; 11 format = "setuptools"; 12 13 disabled = pythonOlder "3.8"; ··· 16 owner = "milanmeu"; 17 repo = pname; 18 rev = "v${version}"; 19 + sha256 = "sha256-bz568DlodWtSu2WTTd/QMhdiX9IkllW7UYVXuNlKFaY="; 20 }; 21 22 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/aiooncue/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "aiooncue"; 10 - version = "0.3.2"; 11 format = "setuptools"; 12 13 disabled = pythonOlder "3.7"; ··· 16 owner = "bdraco"; 17 repo = pname; 18 rev = version; 19 - hash = "sha256-6GnXuYpggUMisfeOnl52xvWFIZRV+oCwsFKAjPwscTU="; 20 }; 21 22 propagatedBuildInputs = [
··· 7 8 buildPythonPackage rec { 9 pname = "aiooncue"; 10 + version = "0.3.3"; 11 format = "setuptools"; 12 13 disabled = pythonOlder "3.7"; ··· 16 owner = "bdraco"; 17 repo = pname; 18 rev = version; 19 + hash = "sha256-rzgSvgVfpz2AVwqnat+TO+QhA3KcXV/a1HDNAP1fNPM="; 20 }; 21 22 propagatedBuildInputs = [
+39
pkgs/development/python-modules/aiosenseme/default.nix
···
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , ifaddr 5 + , pythonOlder 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "aiosenseme"; 10 + version = "0.6.1"; 11 + format = "setuptools"; 12 + 13 + disabled = pythonOlder "3.7"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "bdraco"; 17 + repo = pname; 18 + rev = "v${version}"; 19 + hash = "sha256-ShK4DP1lAtAFI6z2kf5T1ecbNTKUn2kqUjps2ABRegg="; 20 + }; 21 + 22 + propagatedBuildInputs = [ 23 + ifaddr 24 + ]; 25 + 26 + pythonImportsCheck = [ 27 + "aiosenseme" 28 + ]; 29 + 30 + # Module has no tests 31 + doCheck = false; 32 + 33 + meta = with lib; { 34 + description = "Module to interact with SenseME fans and lights by Big Ass Fans"; 35 + homepage = "https://github.com/bdraco/aiosenseme"; 36 + license = with licenses; [ gpl3Only ]; 37 + maintainers = with maintainers; [ fab ]; 38 + }; 39 + }
+5
pkgs/development/python-modules/astropy-extension-helpers/default.nix
··· 3 , fetchPypi 4 , findutils 5 , pytestCheckHook 6 }: 7 8 buildPythonPackage rec { ··· 14 inherit pname version; 15 sha256 = "10iqjzmya2h4sk765dlm1pbqypwlqyh8rw59a5m9i63d3klnz2mc"; 16 }; 17 18 patches = [ ./permissions.patch ]; 19
··· 3 , fetchPypi 4 , findutils 5 , pytestCheckHook 6 + , setuptools-scm 7 }: 8 9 buildPythonPackage rec { ··· 15 inherit pname version; 16 sha256 = "10iqjzmya2h4sk765dlm1pbqypwlqyh8rw59a5m9i63d3klnz2mc"; 17 }; 18 + 19 + nativeBuildInputs = [ 20 + setuptools-scm 21 + ]; 22 23 patches = [ ./permissions.patch ]; 24
-54
pkgs/development/python-modules/asyncio-nats-client/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , ed25519 4 - , fetchFromGitHub 5 - , nats-server 6 - , pytestCheckHook 7 - , pythonOlder 8 - , uvloop 9 - }: 10 - 11 - buildPythonPackage rec { 12 - pname = "asyncio-nats-client"; 13 - version = "0.11.5"; 14 - disabled = pythonOlder "3.6"; 15 - 16 - src = fetchFromGitHub { 17 - owner = "nats-io"; 18 - repo = "nats.py"; 19 - rev = "v${version}"; 20 - sha256 = "0zwiijaswmfdk71diqmdpb6nx54fmgi8hy0vwx2m3ihhsyjxj82h"; 21 - }; 22 - 23 - propagatedBuildInputs = [ 24 - ed25519 25 - ]; 26 - 27 - checkInputs = [ 28 - nats-server 29 - pytestCheckHook 30 - uvloop 31 - ]; 32 - 33 - postPatch = '' 34 - substituteInPlace setup.cfg \ 35 - --replace "--cov=nats --cov-report html" "" 36 - ''; 37 - 38 - disabledTests = [ 39 - # RuntimeError: Event loop is closed 40 - "test_subscribe_no_echo" 41 - "test_reconnect_to_new_server_with_auth" 42 - "test_drain_connection" 43 - "test_discover_servers_on_first_connect" 44 - ]; 45 - 46 - pythonImportsCheck = [ "nats.aio" ]; 47 - 48 - meta = with lib; { 49 - description = "Python client for NATS.io"; 50 - homepage = "https://github.com/nats-io/nats.py"; 51 - license = with licenses; [ asl20 ]; 52 - maintainers = with maintainers; [ fab ]; 53 - }; 54 - }
···
+18 -4
pkgs/development/python-modules/atlassian-python-api/default.nix
··· 7 , requests_oauthlib 8 , six 9 , pytestCheckHook 10 }: 11 12 buildPythonPackage rec { 13 pname = "atlassian-python-api"; 14 - version = "3.18.1"; 15 16 src = fetchFromGitHub { 17 owner = "atlassian-api"; 18 repo = pname; 19 rev = version; 20 - sha256 = "09xvkbdfhkrdkn8axb6bhi7p12lm2z1z84rx1wksfw9mffqk90v9"; 21 }; 22 23 checkInputs = [ 24 pytestCheckHook 25 ]; 26 27 - propagatedBuildInputs = [ deprecated oauthlib requests requests_oauthlib six ]; 28 29 meta = with lib; { 30 description = "Python Atlassian REST API Wrapper"; 31 homepage = "https://github.com/atlassian-api/atlassian-python-api"; 32 license = licenses.asl20; 33 - maintainers = [ maintainers.arnoldfarkas ]; 34 }; 35 }
··· 7 , requests_oauthlib 8 , six 9 , pytestCheckHook 10 + , pythonOlder 11 }: 12 13 buildPythonPackage rec { 14 pname = "atlassian-python-api"; 15 + version = "3.19.0"; 16 + format = "setuptools"; 17 + 18 + disabled = pythonOlder "3.7"; 19 20 src = fetchFromGitHub { 21 owner = "atlassian-api"; 22 repo = pname; 23 rev = version; 24 + sha256 = "sha256-SJsqk8TM+5UztN1ZDyYrOjNIWDLhm5XtLxPflIGPxKQ="; 25 }; 26 27 + propagatedBuildInputs = [ 28 + deprecated 29 + oauthlib 30 + requests 31 + requests_oauthlib 32 + six 33 + ]; 34 + 35 checkInputs = [ 36 pytestCheckHook 37 ]; 38 39 + pythonImportsCheck = [ 40 + "atlassian" 41 + ]; 42 43 meta = with lib; { 44 description = "Python Atlassian REST API Wrapper"; 45 homepage = "https://github.com/atlassian-api/atlassian-python-api"; 46 license = licenses.asl20; 47 + maintainers = with maintainers; [ arnoldfarkas ]; 48 }; 49 }
+2 -2
pkgs/development/python-modules/azure-mgmt-iothubprovisioningservices/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "azure-mgmt-iothubprovisioningservices"; 13 - version = "1.0.0"; 14 15 src = fetchPypi { 16 inherit pname version; 17 extension = "zip"; 18 - sha256 = "e5871b03488b5ae6dfc441cdbda40cb39c000635ee57c513053792b3c15826a9"; 19 }; 20 21 propagatedBuildInputs = [
··· 10 11 buildPythonPackage rec { 12 pname = "azure-mgmt-iothubprovisioningservices"; 13 + version = "1.1.0"; 14 15 src = fetchPypi { 16 inherit pname version; 17 extension = "zip"; 18 + sha256 = "sha256-04OoJuff93L62G6IozpmHpEaUbHHHD6nKlkMHVoJvJ4="; 19 }; 20 21 propagatedBuildInputs = [
+4 -2
pkgs/development/python-modules/boost-histogram/default.nix
··· 1 - { lib, fetchPypi, buildPythonPackage, isPy3k, boost, numpy, pytestCheckHook, pytest-benchmark }: 2 3 buildPythonPackage rec { 4 pname = "boost-histogram"; ··· 11 sha256 = "a27842b2f1cfecc509382da2b25b03056354696482b38ec3c0220af0fc9b7579"; 12 }; 13 14 buildInputs = [ boost ]; 15 propagatedBuildInputs = [ numpy ]; 16 17 checkInputs = [ pytestCheckHook pytest-benchmark ]; ··· 20 description = "Python bindings for the C++14 Boost::Histogram library"; 21 homepage = "https://github.com/scikit-hep/boost-histogram"; 22 license = licenses.bsd3; 23 - platforms = platforms.unix; 24 maintainers = with maintainers; [ veprbl ]; 25 }; 26 }
··· 1 + { lib, fetchPypi, buildPythonPackage, isPy3k, boost, numpy, pytestCheckHook, pytest-benchmark, setuptools-scm }: 2 3 buildPythonPackage rec { 4 pname = "boost-histogram"; ··· 11 sha256 = "a27842b2f1cfecc509382da2b25b03056354696482b38ec3c0220af0fc9b7579"; 12 }; 13 14 + nativeBuildInputs = [ setuptools-scm ]; 15 + 16 buildInputs = [ boost ]; 17 + 18 propagatedBuildInputs = [ numpy ]; 19 20 checkInputs = [ pytestCheckHook pytest-benchmark ]; ··· 23 description = "Python bindings for the C++14 Boost::Histogram library"; 24 homepage = "https://github.com/scikit-hep/boost-histogram"; 25 license = licenses.bsd3; 26 maintainers = with maintainers; [ veprbl ]; 27 }; 28 }
+8 -7
pkgs/development/python-modules/cartopy/default.nix
··· 1 { buildPythonPackage, lib, fetchPypi 2 , pytestCheckHook, filelock, mock, pep8 3 - , cython 4 , six, pyshp, shapely, geos, numpy 5 , gdal, pillow, matplotlib, pyepsg, pykdtree, scipy, owslib, fiona 6 , proj, flufl_lock ··· 23 --replace "test_epsg(" "dont_test_epsg(" 24 ''; 25 26 buildInputs = [ 27 geos proj 28 ]; ··· 46 "test_nightshade_image" 47 "background_img" 48 "test_gridliner_labels_bbox_style" 49 - ]; 50 - 51 - nativeBuildInputs = [ 52 - cython 53 - geos # for geos-config 54 - proj 55 ]; 56 57 meta = with lib; {
··· 1 { buildPythonPackage, lib, fetchPypi 2 , pytestCheckHook, filelock, mock, pep8 3 + , cython, setuptools-scm 4 , six, pyshp, shapely, geos, numpy 5 , gdal, pillow, matplotlib, pyepsg, pykdtree, scipy, owslib, fiona 6 , proj, flufl_lock ··· 23 --replace "test_epsg(" "dont_test_epsg(" 24 ''; 25 26 + nativeBuildInputs = [ 27 + cython 28 + geos # for geos-config 29 + proj 30 + setuptools-scm 31 + ]; 32 + 33 buildInputs = [ 34 geos proj 35 ]; ··· 53 "test_nightshade_image" 54 "background_img" 55 "test_gridliner_labels_bbox_style" 56 ]; 57 58 meta = with lib; {
+4 -1
pkgs/development/python-modules/casa-formats-io/default.nix
··· 4 , astropy 5 , dask 6 , numpy 7 }: 8 9 buildPythonPackage rec { ··· 15 inherit pname version; 16 sha256 = "16rypj65wdfxxrilxfhbk563lxv86if4vvs9zfq3f8bkzdr8xl9s"; 17 }; 18 19 propagatedBuildInputs = [ astropy dask numpy ]; 20 ··· 25 26 meta = { 27 description = "Dask-based reader for CASA data"; 28 - homepage = "http://radio-astro-tools.github.io"; 29 license = lib.licenses.lgpl2Only; 30 maintainers = with lib.maintainers; [ smaret ]; 31 };
··· 4 , astropy 5 , dask 6 , numpy 7 + , setuptools-scm 8 }: 9 10 buildPythonPackage rec { ··· 16 inherit pname version; 17 sha256 = "16rypj65wdfxxrilxfhbk563lxv86if4vvs9zfq3f8bkzdr8xl9s"; 18 }; 19 + 20 + nativeBuildInputs = [ setuptools-scm ]; 21 22 propagatedBuildInputs = [ astropy dask numpy ]; 23 ··· 28 29 meta = { 30 description = "Dask-based reader for CASA data"; 31 + homepage = "https://casa-formats-io.readthedocs.io/"; 32 license = lib.licenses.lgpl2Only; 33 maintainers = with lib.maintainers; [ smaret ]; 34 };
+2 -2
pkgs/development/python-modules/cdcs/default.nix
··· 9 }: 10 11 buildPythonPackage rec { 12 - version = "0.1.5"; 13 pname = "cdcs"; 14 format = "setuptools"; 15 ··· 19 owner = "usnistgov"; 20 repo = "pycdcs"; 21 rev = "v${version}"; 22 - sha256 = "0sd0s0mka2bvpxxiz98cjc2h5ncsb7d03af1q3w9w8pmvfsgj7pc"; 23 }; 24 25 propagatedBuildInputs = [
··· 9 }: 10 11 buildPythonPackage rec { 12 + version = "0.1.6"; 13 pname = "cdcs"; 14 format = "setuptools"; 15 ··· 19 owner = "usnistgov"; 20 repo = "pycdcs"; 21 rev = "v${version}"; 22 + sha256 = "sha256-w9CBNOK9oXTIUa+SsnepRN0wAz7WPZGfUNDSbtVn1L8="; 23 }; 24 25 propagatedBuildInputs = [
+14 -1
pkgs/development/python-modules/click-configfile/default.nix
··· 4 , click 5 , six 6 , pytestCheckHook 7 }: 8 9 buildPythonPackage rec { 10 pname = "click-configfile"; 11 version = "0.2.3"; 12 13 src = fetchPypi { 14 inherit pname version; 15 - sha256 = "lb7sE77pUOmPQ8gdzavvT2RAkVWepmKY+drfWTUdkNE="; 16 }; 17 18 propagatedBuildInputs = [ ··· 22 23 checkInputs = [ 24 pytestCheckHook 25 ]; 26 27 disabledTests = [
··· 4 , click 5 , six 6 , pytestCheckHook 7 + , pythonOlder 8 }: 9 10 buildPythonPackage rec { 11 pname = "click-configfile"; 12 version = "0.2.3"; 13 + format = "setuptools"; 14 + 15 + disabled = pythonOlder "3.7"; 16 17 src = fetchPypi { 18 inherit pname version; 19 + hash = "sha256-lb7sE77pUOmPQ8gdzavvT2RAkVWepmKY+drfWTUdkNE="; 20 }; 21 22 propagatedBuildInputs = [ ··· 26 27 checkInputs = [ 28 pytestCheckHook 29 + ]; 30 + 31 + postPatch = '' 32 + substituteInPlace setup.py \ 33 + --replace "install_requires=install_requires," 'install_requires=["click >= 6.6", "six >= 1.10"],' 34 + ''; 35 + 36 + pythonImportsCheck = [ 37 + "click_configfile" 38 ]; 39 40 disabledTests = [
+2 -2
pkgs/development/python-modules/cocotb/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "cocotb"; 15 - version = "1.6.1"; 16 17 # - we need to use the tarball from PyPi 18 # or the full git checkout (with .git) ··· 20 # because it does not include required metadata 21 src = fetchPypi { 22 inherit pname version; 23 - sha256 = "b644a15ea1e62c55041176468976541cba30a8a5e99a5e9a2c07ee595c2b4e95"; 24 }; 25 26 nativeBuildInputs = [ setuptools-scm ];
··· 12 13 buildPythonPackage rec { 14 pname = "cocotb"; 15 + version = "1.6.2"; 16 17 # - we need to use the tarball from PyPi 18 # or the full git checkout (with .git) ··· 20 # because it does not include required metadata 21 src = fetchPypi { 22 inherit pname version; 23 + sha256 = "sha256-SY+1727DbWMg6CnmHw8k/VP0dwBRYszn+YyyvZXgvUs="; 24 }; 25 26 nativeBuildInputs = [ setuptools-scm ];
+17 -6
pkgs/development/python-modules/csvw/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 , pythonOlder 5 , attrs 6 , isodate 7 , python-dateutil 8 , rfc3986 9 , uritemplate 10 - , mock 11 , pytestCheckHook 12 , pytest-mock 13 }: ··· 15 buildPythonPackage rec { 16 pname = "csvw"; 17 version = "1.11.0"; 18 disabled = pythonOlder "3.6"; 19 20 src = fetchFromGitHub { ··· 24 sha256 = "1393xwqawaxsflbq62vks92vv4zch8p6dd1mdvdi7j4vvf0zljkg"; 25 }; 26 27 - patchPhase = '' 28 - substituteInPlace setup.cfg --replace "--cov" "" 29 - ''; 30 - 31 propagatedBuildInputs = [ 32 attrs 33 isodate ··· 37 ]; 38 39 checkInputs = [ 40 - mock 41 pytestCheckHook 42 pytest-mock 43 ]; 44 45 disabledTests = [ 46 # this test is flaky on darwin because it depends on the resolution of filesystem mtimes 47 # https://github.com/cldf/csvw/blob/45584ad63ff3002a9b3a8073607c1847c5cbac58/tests/test_db.py#L257 48 "test_write_file_exists" 49 ]; 50 51 meta = with lib; {
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 + , pythonAtLeast 5 , pythonOlder 6 , attrs 7 , isodate 8 , python-dateutil 9 , rfc3986 10 , uritemplate 11 , pytestCheckHook 12 , pytest-mock 13 }: ··· 15 buildPythonPackage rec { 16 pname = "csvw"; 17 version = "1.11.0"; 18 + format = "setuptools"; 19 + 20 disabled = pythonOlder "3.6"; 21 22 src = fetchFromGitHub { ··· 26 sha256 = "1393xwqawaxsflbq62vks92vv4zch8p6dd1mdvdi7j4vvf0zljkg"; 27 }; 28 29 propagatedBuildInputs = [ 30 attrs 31 isodate ··· 35 ]; 36 37 checkInputs = [ 38 pytestCheckHook 39 pytest-mock 40 ]; 41 42 + patchPhase = '' 43 + substituteInPlace setup.cfg \ 44 + --replace "--cov" "" 45 + ''; 46 + 47 disabledTests = [ 48 # this test is flaky on darwin because it depends on the resolution of filesystem mtimes 49 # https://github.com/cldf/csvw/blob/45584ad63ff3002a9b3a8073607c1847c5cbac58/tests/test_db.py#L257 50 "test_write_file_exists" 51 + ] ++ lib.optionals (pythonAtLeast "3.10") [ 52 + # https://github.com/cldf/csvw/issues/58 53 + "test_roundtrip_escapechar" 54 + "test_escapequote_escapecharquotechar_final" 55 + "test_doubleQuote" 56 + ]; 57 + 58 + pythonImportsCheck = [ 59 + "csvw" 60 ]; 61 62 meta = with lib; {
+2 -2
pkgs/development/python-modules/deep-translator/default.nix
··· 2 3 buildPythonPackage rec { 4 pname = "deep-translator"; 5 - version = "1.6.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 - sha256 = "2611c54209b234730f3e5e6481cb875e120e49d9ec1a27a1fa89850150485975"; 10 }; 11 12 propagatedBuildInputs = [
··· 2 3 buildPythonPackage rec { 4 pname = "deep-translator"; 5 + version = "1.7.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 + sha256 = "sha256-k4RhUZN/aC9D1NKkmCGZGZNU9In577RobBnDagMYHbo="; 10 }; 11 12 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/deezer-python/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "deezer-python"; 16 - version = "5.1.0"; 17 format = "pyproject"; 18 19 disabled = pythonOlder "3.6"; ··· 22 owner = "browniebroke"; 23 repo = pname; 24 rev = "v${version}"; 25 - sha256 = "sha256-hBZBbREPxfAkGf2KRZtO3BpscFGlYiecQjM5l1/Edo0="; 26 }; 27 28 nativeBuildInputs = [
··· 13 14 buildPythonPackage rec { 15 pname = "deezer-python"; 16 + version = "5.1.1"; 17 format = "pyproject"; 18 19 disabled = pythonOlder "3.6"; ··· 22 owner = "browniebroke"; 23 repo = pname; 24 rev = "v${version}"; 25 + sha256 = "sha256-gzavZ6/8k/JfcOlwWuMV+4AQxbkfWWgbBrHNcnuU51E="; 26 }; 27 28 nativeBuildInputs = [
+7 -7
pkgs/development/python-modules/devolo-home-control-api/default.nix
··· 5 , pytestCheckHook 6 , pythonOlder 7 , requests 8 , websocket-client 9 , zeroconf 10 }: ··· 20 rev = "v${version}"; 21 sha256 = "sha256-N/48Q2IEL194vCzrPPuy+mRNejXfkoXy2t2oe0Y6ug4="; 22 }; 23 24 propagatedBuildInputs = [ 25 requests ··· 31 pytestCheckHook 32 pytest-mock 33 ]; 34 - 35 - postPatch = '' 36 - # setup.py is not able to detect the version with setuptools_scm 37 - substituteInPlace setup.py \ 38 - --replace "setuptools_scm" "" \ 39 - --replace 'use_scm_version=True' 'use_scm_version="${version}"' 40 - ''; 41 42 # Disable test that requires network access 43 disabledTests = [
··· 5 , pytestCheckHook 6 , pythonOlder 7 , requests 8 + , setuptools-scm 9 , websocket-client 10 , zeroconf 11 }: ··· 21 rev = "v${version}"; 22 sha256 = "sha256-N/48Q2IEL194vCzrPPuy+mRNejXfkoXy2t2oe0Y6ug4="; 23 }; 24 + 25 + SETUPTOOLS_SCM_PRETEND_VERSION = version; 26 + 27 + nativeBuildInputs = [ 28 + setuptools-scm 29 + ]; 30 31 propagatedBuildInputs = [ 32 requests ··· 38 pytestCheckHook 39 pytest-mock 40 ]; 41 42 # Disable test that requires network access 43 disabledTests = [
+8 -2
pkgs/development/python-modules/django-auth-ldap/default.nix
··· 1 { lib 2 , buildPythonPackage 3 - , fetchPypi, isPy27 4 - , ldap , django 5 , mock 6 }: 7 8 buildPythonPackage rec { ··· 14 sha256 = "276f79e624ce083ce13f161387f65ff1c0efe83ef8a42f2b9830d43317b15239"; 15 }; 16 17 propagatedBuildInputs = [ ldap django ]; 18 checkInputs = [ mock ]; 19 20 # django.core.exceptions.ImproperlyConfigured: Requested setting INSTALLED_APPS, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before accessing settings
··· 1 { lib 2 , buildPythonPackage 3 + , fetchPypi 4 + , isPy27 5 + , ldap 6 + , django 7 , mock 8 + , setuptools-scm 9 }: 10 11 buildPythonPackage rec { ··· 17 sha256 = "276f79e624ce083ce13f161387f65ff1c0efe83ef8a42f2b9830d43317b15239"; 18 }; 19 20 + nativeBuildInputs = [ setuptools-scm ]; 21 + 22 propagatedBuildInputs = [ ldap django ]; 23 + 24 checkInputs = [ mock ]; 25 26 # django.core.exceptions.ImproperlyConfigured: Requested setting INSTALLED_APPS, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before accessing settings
+107
pkgs/development/python-modules/django/4.nix
···
··· 1 + { lib 2 + , stdenv 3 + , buildPythonPackage 4 + , fetchPypi 5 + , pythonOlder 6 + , substituteAll 7 + 8 + # patched in 9 + , geos 10 + , gdal 11 + , withGdal ? false 12 + 13 + # propagated 14 + , asgiref 15 + , backports-zoneinfo 16 + , sqlparse 17 + 18 + # tests 19 + , aiosmtpd 20 + , argon2_cffi 21 + , bcrypt 22 + , docutils 23 + , geoip2 24 + , jinja2 25 + , memcached 26 + , numpy 27 + , pillow 28 + , pylibmc 29 + , pymemcache 30 + , python 31 + , pytz 32 + , pywatchman 33 + , pyyaml 34 + , redis 35 + , selenium 36 + , tblib 37 + , tzdata 38 + }: 39 + 40 + buildPythonPackage rec { 41 + pname = "Django"; 42 + version = "4.0.2"; 43 + format = "pyproject"; 44 + 45 + disabled = pythonOlder "3.8"; 46 + 47 + src = fetchPypi { 48 + inherit pname version; 49 + hash = "sha256-EQ+1j7Euylngcq1Z/ELXcc1kLdei8kFlgqqdp6jvlUo="; 50 + }; 51 + 52 + patches = lib.optional withGdal 53 + (substituteAll { 54 + src = ./django_4_set_geos_gdal_lib.patch; 55 + geos = geos; 56 + gdal = gdal; 57 + extension = stdenv.hostPlatform.extensions.sharedLibrary; 58 + }); 59 + 60 + propagatedBuildInputs = [ 61 + asgiref 62 + sqlparse 63 + ] ++ lib.optionals (pythonOlder "3.9") [ 64 + backports-zoneinfo 65 + ]; 66 + 67 + # Fails to import asgiref in ~200 tests 68 + # ModuleNotFoundError: No module named 'asgiref' 69 + doCheck = false; 70 + 71 + checkInputs = [ 72 + aiosmtpd 73 + argon2_cffi 74 + asgiref 75 + bcrypt 76 + docutils 77 + geoip2 78 + jinja2 79 + memcached 80 + numpy 81 + pillow 82 + pylibmc 83 + pymemcache 84 + pytz 85 + pywatchman 86 + pyyaml 87 + redis 88 + selenium 89 + tblib 90 + tzdata 91 + ]; 92 + 93 + checkPhase = '' 94 + runHook preCheck 95 + 96 + ${python.interpreter} tests/runtests.py 97 + 98 + runHook postCheck 99 + ''; 100 + 101 + meta = with lib; { 102 + description = "A high-level Python Web framework that encourages rapid development and clean, pragmatic design."; 103 + homepage = "https://www.djangoproject.com"; 104 + license = licenses.bsd3; 105 + maintainers = with maintainers; [ hexa ]; 106 + }; 107 + }
+26
pkgs/development/python-modules/django/django_4_set_geos_gdal_lib.patch
···
··· 1 + diff --git a/django/contrib/gis/gdal/libgdal.py b/django/contrib/gis/gdal/libgdal.py 2 + index 05b5732..91fafee 100644 3 + --- a/django/contrib/gis/gdal/libgdal.py 4 + +++ b/django/contrib/gis/gdal/libgdal.py 5 + @@ -14,7 +14,7 @@ try: 6 + from django.conf import settings 7 + lib_path = settings.GDAL_LIBRARY_PATH 8 + except (AttributeError, ImportError, ImproperlyConfigured, OSError): 9 + - lib_path = None 10 + + lib_path = ""@gdal@/lib/libgdal@extension@" 11 + 12 + if lib_path: 13 + lib_names = None 14 + diff --git a/django/contrib/gis/geos/libgeos.py b/django/contrib/gis/geos/libgeos.py 15 + index 2cdb5d3..fac2d04 100644 16 + --- a/django/contrib/gis/geos/libgeos.py 17 + +++ b/django/contrib/gis/geos/libgeos.py 18 + @@ -24,7 +24,7 @@ def load_geos(): 19 + from django.conf import settings 20 + lib_path = settings.GEOS_LIBRARY_PATH 21 + except (AttributeError, ImportError, ImproperlyConfigured, OSError): 22 + - lib_path = None 23 + + lib_path = "@geos@/lib/libgeos_c@extension@" 24 + 25 + # Setting the appropriate names for the GEOS-C library. 26 + if lib_path:
+5
pkgs/development/python-modules/doc8/default.nix
··· 8 , pytestCheckHook 9 , pythonOlder 10 , restructuredtext_lint 11 , stevedore 12 }: 13 ··· 22 inherit pname version; 23 sha256 = "376e50f4e70a1ae935416ddfcf93db35dd5d4cc0e557f2ec72f0667d0ace4548"; 24 }; 25 26 buildInputs = [ 27 pbr
··· 8 , pytestCheckHook 9 , pythonOlder 10 , restructuredtext_lint 11 + , setuptools-scm 12 , stevedore 13 }: 14 ··· 23 inherit pname version; 24 sha256 = "376e50f4e70a1ae935416ddfcf93db35dd5d4cc0e557f2ec72f0667d0ace4548"; 25 }; 26 + 27 + nativeBuildInputs = [ 28 + setuptools-scm 29 + ]; 30 31 buildInputs = [ 32 pbr
+5
pkgs/development/python-modules/drms/default.nix
··· 8 , pytestCheckHook 9 , pytest-doctestplus 10 , pythonOlder 11 }: 12 13 buildPythonPackage rec { ··· 20 inherit pname version; 21 sha256 = "sha256-Id8rPK8qq71gHn5DKnEi7Lp081GFbcFtGU+v89Vlt9o="; 22 }; 23 24 propagatedBuildInputs = [ 25 numpy
··· 8 , pytestCheckHook 9 , pytest-doctestplus 10 , pythonOlder 11 + , setuptools-scm 12 }: 13 14 buildPythonPackage rec { ··· 21 inherit pname version; 22 sha256 = "sha256-Id8rPK8qq71gHn5DKnEi7Lp081GFbcFtGU+v89Vlt9o="; 23 }; 24 + 25 + nativeBuildInputs = [ 26 + setuptools-scm 27 + ]; 28 29 propagatedBuildInputs = [ 30 numpy
+5
pkgs/development/python-modules/fastnumbers/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fastnumbers 4 , fetchFromGitHub ··· 25 propagatedBuildInputs = [ 26 typing-extensions 27 ]; 28 29 checkInputs = [ 30 hypothesis
··· 1 { lib 2 + , stdenv 3 , buildPythonPackage 4 , fastnumbers 5 , fetchFromGitHub ··· 26 propagatedBuildInputs = [ 27 typing-extensions 28 ]; 29 + 30 + # Tests fail due to numeric precision differences on ARM 31 + # See https://github.com/SethMMorton/fastnumbers/issues/28 32 + doCheck = !(stdenv.isAarch64 || stdenv.isAarch32); 33 34 checkInputs = [ 35 hypothesis
+2 -2
pkgs/development/python-modules/fiona/default.nix
··· 6 7 buildPythonPackage rec { 8 pname = "fiona"; 9 - version = "1.8.20"; 10 11 src = fetchPypi { 12 pname = "Fiona"; 13 inherit version; 14 - sha256 = "a70502d2857b82f749c09cb0dea3726787747933a2a1599b5ab787d74e3c143b"; 15 }; 16 17 CXXFLAGS = lib.optionalString stdenv.cc.isClang "-std=c++11";
··· 6 7 buildPythonPackage rec { 8 pname = "fiona"; 9 + version = "1.8.21"; 10 11 src = fetchPypi { 12 pname = "Fiona"; 13 inherit version; 14 + sha256 = "sha256-Og7coqegcNtAXXEYchSkPSMzpXtAl1RKP8woIGali/w="; 15 }; 16 17 CXXFLAGS = lib.optionalString stdenv.cc.isClang "-std=c++11";
+33 -17
pkgs/development/python-modules/flowlogs_reader/default.nix
··· 1 { lib 2 , buildPythonPackage 3 - , fetchPypi 4 - , isPy27 5 - , botocore 6 - , boto3 7 - , docutils 8 - , unittest2 9 - , mock 10 }: 11 12 buildPythonPackage rec { 13 - pname = "flowlogs_reader"; 14 - version = "3.1.0"; 15 - disabled = isPy27; 16 17 - src = fetchPypi { 18 - inherit pname version; 19 - sha256 = "d99636423abc83bb4042d63edd56852ede9e2949cadcc3339eda8f3367826dd4"; 20 }; 21 22 - propagatedBuildInputs = [ botocore boto3 docutils ]; 23 - buildInputs = [ unittest2 mock ]; 24 25 meta = with lib; { 26 description = "Python library to make retrieving Amazon VPC Flow Logs from CloudWatch Logs a bit easier"; 27 homepage = "https://github.com/obsrvbl/flowlogs-reader"; 28 - maintainers = with maintainers; [ cransom ]; 29 license = licenses.asl20; 30 }; 31 - 32 }
··· 1 { lib 2 + , boto3 3 + , botocore 4 , buildPythonPackage 5 + , fetchFromGitHub 6 + , parquet 7 + , pytestCheckHook 8 + , python-dateutil 9 + , pythonOlder 10 }: 11 12 buildPythonPackage rec { 13 + pname = "flowlogs-reader"; 14 + version = "3.2.0"; 15 + format = "setuptools"; 16 17 + disabled = pythonOlder "3.6"; 18 + 19 + src = fetchFromGitHub { 20 + owner = "obsrvbl"; 21 + repo = pname; 22 + # https://github.com/obsrvbl/flowlogs-reader/issues/57 23 + rev = "fac4c6c63348ff67fd0a8f51d391ba7c9f59e5ed"; 24 + hash = "sha256-bGb2CLp33aIr0R/lBPWAF3CbtVTWpqmcvYgZ6bcARTc="; 25 }; 26 27 + propagatedBuildInputs = [ 28 + botocore 29 + boto3 30 + parquet 31 + python-dateutil 32 + ]; 33 + 34 + checkInputs = [ 35 + pytestCheckHook 36 + ]; 37 + 38 + pythonImportsCheck = [ 39 + "flowlogs_reader" 40 + ]; 41 42 meta = with lib; { 43 description = "Python library to make retrieving Amazon VPC Flow Logs from CloudWatch Logs a bit easier"; 44 homepage = "https://github.com/obsrvbl/flowlogs-reader"; 45 license = licenses.asl20; 46 + maintainers = with maintainers; [ cransom ]; 47 }; 48 }
+2 -2
pkgs/development/python-modules/flux-led/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "flux-led"; 11 - version = "0.28.21"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.7"; ··· 17 owner = "Danielhiversen"; 18 repo = "flux_led"; 19 rev = version; 20 - sha256 = "sha256-Vt+vlJlOznGShPUUQUt4zL9ht52TvNWbRRO9v9C0cqg="; 21 }; 22 23 propagatedBuildInputs = [
··· 8 9 buildPythonPackage rec { 10 pname = "flux-led"; 11 + version = "0.28.22"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.7"; ··· 17 owner = "Danielhiversen"; 18 repo = "flux_led"; 19 rev = version; 20 + sha256 = "sha256-GNuc8WAiC0S4WFFUYgayU6c0treWCPfPhbyteZ68eWs="; 21 }; 22 23 propagatedBuildInputs = [
+2
pkgs/development/python-modules/forecast-solar/default.nix
··· 18 sha256 = "sha256-UrLy+j8YDWuS9pciEDKb/+UoCcw54XWiIUAEYC72/W0="; 19 }; 20 21 propagatedBuildInputs = [ 22 aiodns 23 aiohttp
··· 18 sha256 = "sha256-UrLy+j8YDWuS9pciEDKb/+UoCcw54XWiIUAEYC72/W0="; 19 }; 20 21 + PACKAGE_VERSION = version; 22 + 23 propagatedBuildInputs = [ 24 aiodns 25 aiohttp
+6 -1
pkgs/development/python-modules/garages-amsterdam/default.nix
··· 19 sha256 = "16f2742r9p3mrg2nz8lnkgsxabbjga2qnp9vzq59026q6mmfwkm9"; 20 }; 21 22 nativeBuildInputs = [ 23 poetry-core 24 ]; ··· 34 35 meta = with lib; { 36 description = "Python client for getting garage occupancy in Amsterdam"; 37 - homepage = "https://github.com/klaasnicolaas/garages_amsterdam"; 38 license = licenses.mit; 39 maintainers = with maintainers; [ fab ]; 40 };
··· 19 sha256 = "16f2742r9p3mrg2nz8lnkgsxabbjga2qnp9vzq59026q6mmfwkm9"; 20 }; 21 22 + postPatch = '' 23 + substituteInPlace pyproject.toml \ 24 + --replace '"0.0.0"' '"${version}"' 25 + ''; 26 + 27 nativeBuildInputs = [ 28 poetry-core 29 ]; ··· 39 40 meta = with lib; { 41 description = "Python client for getting garage occupancy in Amsterdam"; 42 + homepage = "https://github.com/klaasnicolaas/python-garages-amsterdam"; 43 license = licenses.mit; 44 maintainers = with maintainers; [ fab ]; 45 };
+2 -2
pkgs/development/python-modules/google-cloud-bigtable/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "google-cloud-bigtable"; 15 - version = "2.4.0"; 16 17 src = fetchPypi { 18 inherit pname version; 19 - sha256 = "b8472c91b05159f20121fcca6ebdc2a3b5648d68158ec747860914279b6b983b"; 20 }; 21 22 propagatedBuildInputs = [
··· 12 13 buildPythonPackage rec { 14 pname = "google-cloud-bigtable"; 15 + version = "2.5.0"; 16 17 src = fetchPypi { 18 inherit pname version; 19 + sha256 = "sha256-R7HGbURhqOxPXUlKN3+mk5+qP6Em5HmxBAa7LHsjJJk="; 20 }; 21 22 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-cloud-spanner/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "google-cloud-spanner"; 17 - version = "3.12.1"; 18 19 src = fetchPypi { 20 inherit pname version; 21 - sha256 = "98e53298a7c79f0af351c80e6fc0b57bc735afdec764424e459179ef04f5a40f"; 22 }; 23 24 propagatedBuildInputs = [
··· 14 15 buildPythonPackage rec { 16 pname = "google-cloud-spanner"; 17 + version = "3.13.0"; 18 19 src = fetchPypi { 20 inherit pname version; 21 + sha256 = "sha256-Y+MA7Nlx3+8eaBptI6eZgSPGc4MvxSrA9YA+K+VSblw="; 22 }; 23 24 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/google-resumable-media/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "google-resumable-media"; 15 - version = "2.1.0"; 16 17 src = fetchPypi { 18 inherit pname version; 19 - sha256 = "725b989e0dd387ef2703d1cc8e86217474217f4549593c477fd94f4024a0f911"; 20 }; 21 22 propagatedBuildInputs = [ google-auth google-crc32c requests ];
··· 12 13 buildPythonPackage rec { 14 pname = "google-resumable-media"; 15 + version = "2.2.0"; 16 17 src = fetchPypi { 18 inherit pname version; 19 + sha256 = "sha256-nzDOf80TuO8Vmyy5WD1Km7mef3uFgWsRIFmwMvLwhKA="; 20 }; 21 22 propagatedBuildInputs = [ google-auth google-crc32c requests ];
+16 -4
pkgs/development/python-modules/graphene/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 - , aniso8601 5 , graphql-core 6 , graphql-relay 7 , promise 8 - , pytestCheckHook 9 , pytest-asyncio 10 , pytest-benchmark 11 , pytest-mock 12 , pytz 13 , snapshottest 14 }: ··· 16 buildPythonPackage rec { 17 pname = "graphene"; 18 version = "3.0.0"; 19 20 src = fetchFromGitHub { 21 owner = "graphql-python"; ··· 40 snapshottest 41 ]; 42 43 - pytestFlagsArray = [ "--benchmark-disable" ]; 44 45 disabledTests = [ 46 # Expects different Exeception classes, but receives none of them 47 # https://github.com/graphql-python/graphene/issues/1346 48 "test_unexpected_error" 49 ]; 50 51 - pythonImportsCheck = [ "graphene" ]; 52 53 meta = with lib; { 54 description = "GraphQL Framework for Python";
··· 1 { lib 2 + , aniso8601 3 , buildPythonPackage 4 , fetchFromGitHub 5 , graphql-core 6 , graphql-relay 7 , promise 8 , pytest-asyncio 9 , pytest-benchmark 10 , pytest-mock 11 + , pytestCheckHook 12 + , pythonAtLeast 13 + , pythonOlder 14 , pytz 15 , snapshottest 16 }: ··· 18 buildPythonPackage rec { 19 pname = "graphene"; 20 version = "3.0.0"; 21 + format = "setuptools"; 22 + 23 + disabled = pythonOlder "3.7"; 24 25 src = fetchFromGitHub { 26 owner = "graphql-python"; ··· 45 snapshottest 46 ]; 47 48 + pytestFlagsArray = [ 49 + "--benchmark-disable" 50 + ]; 51 52 disabledTests = [ 53 # Expects different Exeception classes, but receives none of them 54 # https://github.com/graphql-python/graphene/issues/1346 55 "test_unexpected_error" 56 + ] ++ lib.optionals (pythonAtLeast "3.10") [ 57 + "test_objecttype_as_container_extra_args" 58 + "test_objecttype_as_container_invalid_kwargs" 59 ]; 60 61 + pythonImportsCheck = [ 62 + "graphene" 63 + ]; 64 65 meta = with lib; { 66 description = "GraphQL Framework for Python";
+6
pkgs/development/python-modules/greeclimate/default.nix
··· 22 hash = "sha256-Y8IgqrU8zzV020qwyyb57Tp2j7laQ3JsCOCYBuf8vsQ="; 23 }; 24 25 propagatedBuildInputs = [ 26 netifaces 27 pycryptodome
··· 22 hash = "sha256-Y8IgqrU8zzV020qwyyb57Tp2j7laQ3JsCOCYBuf8vsQ="; 23 }; 24 25 + postPatch = '' 26 + # upstream issue for proper solution https://github.com/cmroche/greeclimate/issues/46 27 + substituteInPlace setup.py \ 28 + --replace 'name="greeclimate",' 'name="greeclimate",version="${version}",' 29 + ''; 30 + 31 propagatedBuildInputs = [ 32 netifaces 33 pycryptodome
+2 -2
pkgs/development/python-modules/heatzypy/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "heatzypy"; 12 - version = "2.0.1"; 13 format = "setuptools"; 14 15 disabled = pythonOlder "3.8"; ··· 18 owner = "Cyr-ius"; 19 repo = pname; 20 rev = version; 21 - sha256 = "sha256-PnDsgTfr2F/fgbONP2qvuPhbw3X50AqriEmsFFjll2Y="; 22 }; 23 24 propagatedBuildInputs = [
··· 9 10 buildPythonPackage rec { 11 pname = "heatzypy"; 12 + version = "2.0.2"; 13 format = "setuptools"; 14 15 disabled = pythonOlder "3.8"; ··· 18 owner = "Cyr-ius"; 19 repo = pname; 20 rev = version; 21 + sha256 = "sha256-VdvgrTZLFTtOu34lWxoPkHAI6Z2Me1/3xauQxzIBJNs="; 22 }; 23 24 propagatedBuildInputs = [
+2 -1
pkgs/development/python-modules/hwi/default.nix
··· 39 postPatch = '' 40 substituteInPlace setup.py \ 41 --replace 'libusb1>=1.7,<2.0' 'libusb1>=1.7' \ 42 - --replace "'python_requires': '>=3.6,<3.10'," "'python_requires': '>=3.6,<4'," 43 ''; 44 45 # tests require to clone quite a few firmwares
··· 39 postPatch = '' 40 substituteInPlace setup.py \ 41 --replace 'libusb1>=1.7,<2.0' 'libusb1>=1.7' \ 42 + --replace "'python_requires': '>=3.6,<3.10'," "'python_requires': '>=3.6,<4'," \ 43 + --replace 'typing-extensions>=3.7,<4.0' 'typing-extensions>=3.7' 44 ''; 45 46 # tests require to clone quite a few firmwares
+2 -2
pkgs/development/python-modules/ipyvuetify/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "ipyvuetify"; 10 - version = "1.8.1"; 11 12 # GitHub version tries to run npm (Node JS) 13 src = fetchPypi { 14 inherit pname version; 15 - sha256 = "2d17367ce7da45a2622107d55c8b4c5475aace99ed5d95e5d7d3f93aa4c0c566"; 16 }; 17 18 propagatedBuildInputs = [ ipyvue ];
··· 7 8 buildPythonPackage rec { 9 pname = "ipyvuetify"; 10 + version = "1.8.2"; 11 12 # GitHub version tries to run npm (Node JS) 13 src = fetchPypi { 14 inherit pname version; 15 + sha256 = "sha256-uFjS7lv8kDRultRqqu2++1eieLs67dLolVurTXWls8A="; 16 }; 17 18 propagatedBuildInputs = [ ipyvue ];
+2 -2
pkgs/development/python-modules/librosa/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "librosa"; 17 - version = "0.8.1"; 18 19 src = fetchPypi { 20 inherit pname version; 21 - sha256 = "c53d05e768ae4a3e553ae21c2e5015293e5efbfd5c12d497f1104cb519cca6b3"; 22 }; 23 24 propagatedBuildInputs = [ joblib matplotlib six scikit-learn decorator audioread resampy soundfile pooch ];
··· 14 15 buildPythonPackage rec { 16 pname = "librosa"; 17 + version = "0.9.0"; 18 19 src = fetchPypi { 20 inherit pname version; 21 + sha256 = "sha256-zSFnXTuYWPjRs7FDKzYONoFFvtN4B+HxOwcRqozTkP0="; 22 }; 23 24 propagatedBuildInputs = [ joblib matplotlib six scikit-learn decorator audioread resampy soundfile pooch ];
+6 -1
pkgs/development/python-modules/mat2/default.nix
··· 47 ./executable-name.patch 48 # hardcode path to mat2 executable 49 ./tests.patch 50 ]; 51 52 postPatch = '' ··· 76 install -Dm 444 data/mat2.svg -t "$out/share/icons/hicolor/scalable/apps" 77 install -Dm 444 doc/mat2.1 -t "$out/share/man/man1" 78 install -Dm 444 nautilus/mat2.py -t "$out/share/nautilus-python/extensions" 79 - buildPythonPath "$out $pythonPath" 80 patchPythonScript "$out/share/nautilus-python/extensions/mat2.py" 81 '' + lib.optionalString dolphinIntegration '' 82 install -Dm 444 dolphin/mat2.desktop -t "$out/share/kservices5/ServiceMenus"
··· 47 ./executable-name.patch 48 # hardcode path to mat2 executable 49 ./tests.patch 50 + # fix gobject-introspection typelib path for Nautilus extension 51 + (substituteAll { 52 + src = ./fix_poppler.patch; 53 + poppler_path = "${poppler_gi}/lib/girepository-1.0"; 54 + }) 55 ]; 56 57 postPatch = '' ··· 81 install -Dm 444 data/mat2.svg -t "$out/share/icons/hicolor/scalable/apps" 82 install -Dm 444 doc/mat2.1 -t "$out/share/man/man1" 83 install -Dm 444 nautilus/mat2.py -t "$out/share/nautilus-python/extensions" 84 + buildPythonPath "$out $pythonPath $propagatedBuildInputs" 85 patchPythonScript "$out/share/nautilus-python/extensions/mat2.py" 86 '' + lib.optionalString dolphinIntegration '' 87 install -Dm 444 dolphin/mat2.desktop -t "$out/share/kservices5/ServiceMenus"
+14
pkgs/development/python-modules/mat2/fix_poppler.patch
···
··· 1 + diff --git a/nautilus/mat2.py b/nautilus/mat2.py 2 + index 11e6986..5a0e68f 100644 3 + --- a/nautilus/mat2.py 4 + +++ b/nautilus/mat2.py 5 + @@ -22,6 +22,9 @@ import gi 6 + gi.require_version('Nautilus', '3.0') 7 + gi.require_version('Gtk', '3.0') 8 + gi.require_version('GdkPixbuf', '2.0') 9 + +gi.require_version('GIRepository', '2.0') 10 + +from gi.repository import GIRepository 11 + +GIRepository.Repository.prepend_search_path('@poppler_path@') 12 + from gi.repository import Nautilus, GObject, Gtk, Gio, GLib, GdkPixbuf 13 + 14 + from libmat2 import parser_factory
+6
pkgs/development/python-modules/moonraker-api/default.nix
··· 21 sha256 = "1hhm3jnl9qm44y4k927fzw1n32c3551kgsk7i57qw25nca9x3k61"; 22 }; 23 24 propagatedBuildInputs = [ 25 aiohttp 26 ];
··· 21 sha256 = "1hhm3jnl9qm44y4k927fzw1n32c3551kgsk7i57qw25nca9x3k61"; 22 }; 23 24 + postPatch = '' 25 + # see comment on https://github.com/cmroche/moonraker-api/commit/e5ca8ab60d2839e150a81182fbe65255d84b4e4e 26 + substituteInPlace setup.py \ 27 + --replace 'name="moonraker-api",' 'name="moonraker-api",version="${version}",' 28 + ''; 29 + 30 propagatedBuildInputs = [ 31 aiohttp 32 ];
+2 -2
pkgs/development/python-modules/motionblinds/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "motionblinds"; 10 - version = "0.5.10"; 11 format = "setuptools"; 12 13 disabled = pythonOlder "3.7"; ··· 16 owner = "starkillerOG"; 17 repo = "motion-blinds"; 18 rev = version; 19 - sha256 = "0zz5ardnik370pdfpl77m0hln8rj7ikkvrkyc6fm0vd0w12sihmm"; 20 }; 21 22 propagatedBuildInputs = [
··· 7 8 buildPythonPackage rec { 9 pname = "motionblinds"; 10 + version = "0.5.11"; 11 format = "setuptools"; 12 13 disabled = pythonOlder "3.7"; ··· 16 owner = "starkillerOG"; 17 repo = "motion-blinds"; 18 rev = version; 19 + sha256 = "sha256-XvxEYOIYjr1NcviyQ6N8xHPCnUO+IgMKFsiRa5YnLDM="; 20 }; 21 22 propagatedBuildInputs = [
+27 -13
pkgs/development/python-modules/nagiosplugin/default.nix
··· 1 { lib 2 , buildPythonPackage 3 - , twine 4 , numpy 5 - , pytest 6 - , fetchPypi 7 }: 8 9 buildPythonPackage rec { 10 pname = "nagiosplugin"; 11 - version = "1.3.2"; 12 13 src = fetchPypi { 14 inherit pname version; 15 - sha256 = "1vr3zy0zfvbrqc4nf81zxv4gs2q82sv5sjamdm4573ld529mk2nv"; 16 }; 17 18 - nativeBuildInputs = [ twine ]; 19 - checkInputs = [ pytest numpy ]; 20 21 - checkPhase = '' 22 - # this test relies on who, which does not work in the sandbox 23 - pytest -k "not test_check_users" tests/ 24 - ''; 25 26 meta = with lib; { 27 - description = "A Python class library which helps with writing Nagios (Icinga) compatible plugins"; 28 - homepage = "https://github.com/mpounsett/nagiosplugin"; 29 license = licenses.zpl21; 30 maintainers = with maintainers; [ symphorien ]; 31 };
··· 1 { lib 2 , buildPythonPackage 3 + , fetchPypi 4 , numpy 5 + , pytestCheckHook 6 + , pythonOlder 7 + , twine 8 }: 9 10 buildPythonPackage rec { 11 pname = "nagiosplugin"; 12 + version = "1.3.3"; 13 + format = "setuptools"; 14 + 15 + disabled = pythonOlder "3.7"; 16 17 src = fetchPypi { 18 inherit pname version; 19 + hash = "sha256-vOr67DWfAyOT3dVgrizI0WNhODPsY8k85xifhZBOU9Y="; 20 }; 21 22 + nativeBuildInputs = [ 23 + twine 24 + ]; 25 26 + checkInputs = [ 27 + numpy 28 + pytestCheckHook 29 + ]; 30 + 31 + disabledTests = [ 32 + # Test relies on who, which does not work in the sandbox 33 + "test_check_users" 34 + ]; 35 + 36 + pythonImportsCheck = [ 37 + "nagiosplugin" 38 + ]; 39 40 meta = with lib; { 41 + description = "Python class library which helps with writing Nagios (Icinga) compatible plugins"; 42 + homepage = "https://github.com/mpounsett/nagiosplugin"; 43 license = licenses.zpl21; 44 maintainers = with maintainers; [ symphorien ]; 45 };
+68
pkgs/development/python-modules/nats-py/default.nix
···
··· 1 + { lib 2 + , buildPythonPackage 3 + , ed25519 4 + , fetchFromGitHub 5 + , nats-server 6 + , pytestCheckHook 7 + , pythonOlder 8 + , uvloop 9 + }: 10 + 11 + buildPythonPackage rec { 12 + pname = "nats-py"; 13 + version = "2.0.0"; 14 + format = "setuptools"; 15 + 16 + disabled = pythonOlder "3.7"; 17 + 18 + src = fetchFromGitHub { 19 + owner = "nats-io"; 20 + repo = "nats.py"; 21 + rev = "v${version}"; 22 + hash = "sha256-BraT30J7OIcW2NXAwjcg9PYu+kgf8f1iDjKiN9J6l7Y="; 23 + }; 24 + 25 + propagatedBuildInputs = [ 26 + ed25519 27 + ]; 28 + 29 + checkInputs = [ 30 + nats-server 31 + pytestCheckHook 32 + uvloop 33 + ]; 34 + 35 + postPatch = '' 36 + substituteInPlace setup.cfg \ 37 + --replace "--cov=nats --cov-report html" "" 38 + ''; 39 + 40 + disabledTests = [ 41 + # RuntimeError: Event loop is closed 42 + "test_subscribe_no_echo" 43 + "test_publish" 44 + "test_publish_verbose" 45 + "test_fetch_max_waiting_fetch_one" 46 + "test_fetch_n" 47 + "test_consumer_management" 48 + "test_ephemeral_subscribe" 49 + "test_queue_subscribe_deliver_group" 50 + "test_subscribe_push_bound" 51 + "test_double_acking_subscribe" 52 + "test_flow_control" 53 + "test_ordered_consumer" 54 + "test_ordered_consumer_single_loss" 55 + "test_kv_simple" 56 + ]; 57 + 58 + pythonImportsCheck = [ 59 + "nats" 60 + ]; 61 + 62 + meta = with lib; { 63 + description = "Python client for NATS.io"; 64 + homepage = "https://github.com/nats-io/nats.py"; 65 + license = with licenses; [ asl20 ]; 66 + maintainers = with maintainers; [ fab ]; 67 + }; 68 + }
+2 -2
pkgs/development/python-modules/od/default.nix
··· 2 3 buildPythonPackage rec { 4 pname = "od"; 5 - version = "2.0.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 - sha256 = "180fb0d13c3af1384047b8296c95683816b5d0c68a60c22d07c703be8bd755cb"; 10 }; 11 12 # repeated_test no longer exists in nixpkgs
··· 2 3 buildPythonPackage rec { 4 pname = "od"; 5 + version = "2.0.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 + sha256 = "sha256-uGkj2Z8mLg51IV+FOqwZl1hT7zVyjmD1CcY/VbH4tKk="; 10 }; 11 12 # repeated_test no longer exists in nixpkgs
+8 -7
pkgs/development/python-modules/opensimplex/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 - , nose 5 }: 6 7 buildPythonPackage rec { 8 pname = "opensimplex"; 9 - version = "0.4"; 10 11 src = fetchFromGitHub { 12 owner = "lmas"; 13 repo = pname; 14 rev = "v${version}"; 15 - sha256 = "0djc50v3hcay04a3i2g9qpviniyx98rkxsc6gmmrz2fyxsa5z5ya"; 16 }; 17 18 - checkInputs = [ nose ]; 19 - checkPhase = '' 20 - nosetests tests/ 21 - ''; 22 pythonImportsCheck = [ "opensimplex" ]; 23 24 meta = with lib; {
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 + , numpy 5 + , pytestCheckHook 6 }: 7 8 buildPythonPackage rec { 9 pname = "opensimplex"; 10 + version = "0.4.2"; 11 12 src = fetchFromGitHub { 13 owner = "lmas"; 14 repo = pname; 15 rev = "v${version}"; 16 + sha256 = "zljS0yu3cHF2Vz3rFkwLXiHnKjo970MDIrC/56FoHa4="; 17 }; 18 19 + propagatedBuildInputs = [ numpy ]; 20 + 21 + checkInputs = [ pytestCheckHook ]; 22 + pytestFlagsArray = [ "tests/test_opensimplex.py" ]; 23 pythonImportsCheck = [ "opensimplex" ]; 24 25 meta = with lib; {
+2 -2
pkgs/development/python-modules/packageurl-python/default.nix
··· 2 3 buildPythonPackage rec { 4 pname = "packageurl-python"; 5 - version = "0.9.6"; 6 7 src = fetchPypi { 8 inherit pname version; 9 - sha256 = "c01fbaf62ad2eb791e97158d1f30349e830bee2dd3e9503a87f6c3ffae8d1cf0"; 10 }; 11 12 checkInputs = [ pytestCheckHook ];
··· 2 3 buildPythonPackage rec { 4 pname = "packageurl-python"; 5 + version = "0.9.7"; 6 7 src = fetchPypi { 8 inherit pname version; 9 + sha256 = "sha256-1D22r2o1AJnjLp4F5zcBPQQJKHt2H6WcWKA+VdvDZIo="; 10 }; 11 12 checkInputs = [ pytestCheckHook ];
+9 -5
pkgs/development/python-modules/pijuice/default.nix
··· 14 src = fetchFromGitHub { 15 owner = "PiSupply"; 16 repo = "PiJuice"; 17 - # rev hash retrieved from the latest modification on file Software/Source/VERSION, as this project 18 - # does not use Github tags facility 19 - rev = "3ba6719ab614a3dc7495d5d9c900dd4ea977c7e3"; 20 - sha256 = "GoNN07YgVaktpeY5iYDbfpy5fxkU1x0V3Sb1hgGAQt4="; 21 }; 22 23 patches = [ ··· 28 ]; 29 30 PIJUICE_BUILD_BASE = 1; 31 32 preBuild = '' 33 cd Software/Source ··· 50 rm $out/bin/pijuice_sys.py 51 rm $out/bin/pijuiceboot 52 mv $out/bin/pijuice_cli.py $out/bin/pijuice_cli 53 - ''; 54 55 meta = with lib; { 56 description = "Library and resources for PiJuice HAT for Raspberry Pi";
··· 14 src = fetchFromGitHub { 15 owner = "PiSupply"; 16 repo = "PiJuice"; 17 + # Latest commit that fixes using the library against python 3.9 by renaming 18 + # isAlive() to is_alive(). The former function was removed in python 3.9. 19 + rev = "e2dca1f8dcfa12e009952a882c0674a545d193d6"; 20 + sha256 = "07Jr7RSjqI8j0tT0MNAjrN1sjF1+mI+V0vtKInvtxj8="; 21 }; 22 23 patches = [ ··· 28 ]; 29 30 PIJUICE_BUILD_BASE = 1; 31 + PIJUICE_VERSION = version; 32 33 preBuild = '' 34 cd Software/Source ··· 51 rm $out/bin/pijuice_sys.py 52 rm $out/bin/pijuiceboot 53 mv $out/bin/pijuice_cli.py $out/bin/pijuice_cli 54 + ''; 55 + 56 + # no tests 57 + doCheck = false; 58 59 meta = with lib; { 60 description = "Library and resources for PiJuice HAT for Raspberry Pi";
+2 -2
pkgs/development/python-modules/plexapi/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "plexapi"; 12 - version = "4.9.1"; 13 format = "setuptools"; 14 15 disabled = pythonOlder "3.6"; ··· 18 owner = "pkkid"; 19 repo = "python-plexapi"; 20 rev = version; 21 - sha256 = "0c0zhbq6ggn5ck4cgbr92440xhfk3iz5a8fm25909idlx8vw0s3q"; 22 }; 23 24 propagatedBuildInputs = [
··· 9 10 buildPythonPackage rec { 11 pname = "plexapi"; 12 + version = "4.9.2"; 13 format = "setuptools"; 14 15 disabled = pythonOlder "3.6"; ··· 18 owner = "pkkid"; 19 repo = "python-plexapi"; 20 rev = version; 21 + sha256 = "sha256-93qMSOnCl18dRZQB8v2Cxv21vsdFzHefQ7zttQAuPKk="; 22 }; 23 24 propagatedBuildInputs = [
+51 -9
pkgs/development/python-modules/plumbum/default.nix
··· 1 - { buildPythonPackage 2 - , fetchPypi 3 - , pytest 4 }: 5 6 buildPythonPackage rec { 7 pname = "plumbum"; 8 version = "1.7.2"; 9 10 - checkInputs = [ pytest ]; 11 12 - # No tests in archive 13 - doCheck = false; 14 15 - src = fetchPypi { 16 - inherit pname version; 17 - sha256 = "0d1bf908076bbd0484d16412479cb97d6843069ee19f99e267e11dd980040523"; 18 }; 19 }
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , openssh 5 + , ps 6 + , psutil 7 + , pytest-mock 8 + , pytest-timeout 9 + , pytestCheckHook 10 + , setuptools-scm 11 }: 12 13 buildPythonPackage rec { 14 pname = "plumbum"; 15 version = "1.7.2"; 16 17 + src = fetchFromGitHub { 18 + owner = "tomerfiliba"; 19 + repo = "plumbum"; 20 + rev = "v${version}"; 21 + sha256 = "sha256-bCCcNFz+ZsbKSF7aCfy47lBHb873tDYN0qFuSCxJp1w="; 22 + }; 23 24 + postPatch = '' 25 + substituteInPlace setup.cfg \ 26 + --replace "--cov-config=setup.cfg" "" 27 + ''; 28 29 + SETUPTOOLS_SCM_PRETEND_VERSION = version; 30 + 31 + nativeBuildInputs = [ 32 + setuptools-scm 33 + ]; 34 + 35 + checkInputs = [ 36 + openssh 37 + ps 38 + psutil 39 + pytest-mock 40 + pytest-timeout 41 + pytestCheckHook 42 + ]; 43 + 44 + preCheck = '' 45 + export HOME=$TMP 46 + ''; 47 + 48 + disabledTests = [ 49 + # broken in nix env 50 + "test_change_env" 51 + "test_dictlike" 52 + "test_local" 53 + ]; 54 + 55 + meta = with lib; { 56 + description = " Plumbum: Shell Combinators "; 57 + homepage = " https://github.com/tomerfiliba/plumbum "; 58 + license = licenses.mit; 59 + maintainers = with maintainers; [ ]; 60 }; 61 }
+8 -1
pkgs/development/python-modules/prance/default.nix
··· 4 , chardet 5 , requests 6 , ruamel-yaml 7 , six 8 , semver 9 , pytestCheckHook ··· 21 fetchSubmodules = true; 22 sha256 = "sha256-kGANMHfWwhW3ZBw2ZVCJZR/bV2EPhcydMKhDeDTVwcQ="; 23 }; 24 25 propagatedBuildInputs = [ 26 chardet ··· 51 52 meta = with lib; { 53 description = "Resolving Swagger/OpenAPI 2.0 and 3.0.0 Parser"; 54 - homepage = "https://github.com/jfinkhaeuser/prance"; 55 license = licenses.mit; 56 maintainers = [ maintainers.costrouc ]; 57 };
··· 4 , chardet 5 , requests 6 , ruamel-yaml 7 + , setuptools-scm 8 , six 9 , semver 10 , pytestCheckHook ··· 22 fetchSubmodules = true; 23 sha256 = "sha256-kGANMHfWwhW3ZBw2ZVCJZR/bV2EPhcydMKhDeDTVwcQ="; 24 }; 25 + 26 + SETUPTOOLS_SCM_PRETEND_VERSION = version; 27 + 28 + nativeBuildInputs = [ 29 + setuptools-scm 30 + ]; 31 32 propagatedBuildInputs = [ 33 chardet ··· 58 59 meta = with lib; { 60 description = "Resolving Swagger/OpenAPI 2.0 and 3.0.0 Parser"; 61 + homepage = "https://github.com/RonnyPfannschmidt/prance"; 62 license = licenses.mit; 63 maintainers = [ maintainers.costrouc ]; 64 };
+10 -4
pkgs/development/python-modules/pygame-gui/default.nix
··· 3 , buildPythonPackage 4 , fetchFromGitHub 5 , pygame 6 , pytestCheckHook 7 }: 8 9 buildPythonPackage rec { 10 pname = "pygame-gui"; 11 - version = "060"; 12 13 src = fetchFromGitHub { 14 owner = "MyreMylar"; 15 repo = "pygame_gui"; 16 - rev = "v_${version}"; 17 - sha256 = "1bw1nxfkjyn3h3xizz5s9lz6rgi9fav3y4cf5dq2hv9f5sads02g"; 18 }; 19 20 - propagatedBuildInputs = [ pygame ]; 21 22 postPatch = '' 23 substituteInPlace pygame_gui/core/utility.py \ ··· 42 "test_process_event_text_ctrl_v_select_range" 43 "test_process_event_text_ctrl_a" 44 "test_process_event_text_ctrl_x" 45 ]; 46 47 meta = with lib; {
··· 3 , buildPythonPackage 4 , fetchFromGitHub 5 , pygame 6 + , python-i18n 7 , pytestCheckHook 8 }: 9 10 buildPythonPackage rec { 11 pname = "pygame-gui"; 12 + version = "0.6.4"; 13 + # nixpkgs-update: no auto update 14 15 src = fetchFromGitHub { 16 owner = "MyreMylar"; 17 repo = "pygame_gui"; 18 + rev = "v_${lib.replaceStrings ["."] [""] version}"; 19 + sha256 = "13+fK1hYxiMh0T+xbbmHViZjyBoQfRyIDc05fIJ/46U="; 20 }; 21 22 + propagatedBuildInputs = [ pygame python-i18n ]; 23 24 postPatch = '' 25 substituteInPlace pygame_gui/core/utility.py \ ··· 44 "test_process_event_text_ctrl_v_select_range" 45 "test_process_event_text_ctrl_a" 46 "test_process_event_text_ctrl_x" 47 + ]; 48 + 49 + disabledTestPaths = [ 50 + "tests/test_performance/test_text_performance.py" 51 ]; 52 53 meta = with lib; {
+47
pkgs/development/python-modules/pyhumps/default.nix
···
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , poetry-core 5 + , pytestCheckHook 6 + , pythonOlder 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "pyhumps"; 11 + version = "3.5.0"; 12 + format = "pyproject"; 13 + 14 + disabled = pythonOlder "3.7"; 15 + 16 + src = fetchFromGitHub { 17 + owner = "nficano"; 18 + repo = "humps"; 19 + rev = "v${version}"; 20 + hash = "sha256-dnNtx0VTD2e89yXMz0+acDhOaLBSkAA7n2io6qypN5E="; 21 + }; 22 + 23 + nativeBuildInputs = [ 24 + poetry-core 25 + ]; 26 + 27 + checkInputs = [ 28 + pytestCheckHook 29 + ]; 30 + 31 + postPatch = '' 32 + # https://github.com/nficano/humps/pull/240 33 + substituteInPlace pyproject.toml \ 34 + --replace 'version = "3.0.2"' 'version = "${version}"' 35 + ''; 36 + 37 + pythonImportsCheck = [ 38 + "humps" 39 + ]; 40 + 41 + meta = with lib; { 42 + description = "Module to convert strings (and dictionary keys) between snake case, camel case and pascal case"; 43 + homepage = "https://github.com/nficano/humps"; 44 + license = with licenses; [ unlicense ]; 45 + maintainers = with maintainers; [ fab ]; 46 + }; 47 + }
+2 -2
pkgs/development/python-modules/pymavlink/default.nix
··· 2 3 buildPythonPackage rec { 4 pname = "pymavlink"; 5 - version = "2.4.19"; 6 7 src = fetchPypi { 8 inherit pname version; 9 - sha256 = "8518f71c221c263770322355d0745da2fffc48238d04eb48bcf3ef6c35e5f722"; 10 }; 11 12 propagatedBuildInputs = [ future lxml ];
··· 2 3 buildPythonPackage rec { 4 pname = "pymavlink"; 5 + version = "2.4.20"; 6 7 src = fetchPypi { 8 inherit pname version; 9 + sha256 = "sha256-QdYlmlDZzVH8tErGdgAz6FjT/L7jexduvrffKVEqMfY="; 10 }; 11 12 propagatedBuildInputs = [ future lxml ];
+5 -2
pkgs/development/python-modules/pysiaalarm/default.nix
··· 4 , fetchPypi 5 , dataclasses-json 6 , pycryptodome 7 - , setuptools 8 , pytest-asyncio 9 , pytest-cases 10 , pytestCheckHook ··· 28 --replace "--cov pysiaalarm --cov-report term-missing" "" 29 ''; 30 31 propagatedBuildInputs = [ 32 dataclasses-json 33 pycryptodome 34 - setuptools 35 ]; 36 37 checkInputs = [
··· 4 , fetchPypi 5 , dataclasses-json 6 , pycryptodome 7 + , setuptools-scm 8 , pytest-asyncio 9 , pytest-cases 10 , pytestCheckHook ··· 28 --replace "--cov pysiaalarm --cov-report term-missing" "" 29 ''; 30 31 + nativeBuildInputs = [ 32 + setuptools-scm 33 + ]; 34 + 35 propagatedBuildInputs = [ 36 dataclasses-json 37 pycryptodome 38 ]; 39 40 checkInputs = [
+2 -2
pkgs/development/python-modules/pytest-cases/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "pytest-cases"; 13 - version = "3.6.8"; 14 format = "setuptools"; 15 16 disabled = pythonOlder "3.6"; 17 18 src = fetchPypi { 19 inherit pname version; 20 - sha256 = "d423e87b30e1080cc162d86c72bfa35861cccfe3539125e81c68ba142ab974bc"; 21 }; 22 23 nativeBuildInputs = [
··· 10 11 buildPythonPackage rec { 12 pname = "pytest-cases"; 13 + version = "3.6.9"; 14 format = "setuptools"; 15 16 disabled = pythonOlder "3.6"; 17 18 src = fetchPypi { 19 inherit pname version; 20 + sha256 = "sha256-Bf9favhlHcGj8nf1JxTkMjpo8hMyfBHgMCilOcIL2Sk="; 21 }; 22 23 nativeBuildInputs = [
+24
pkgs/development/python-modules/python-i18n/default.nix
···
··· 1 + { lib, buildPythonPackage, fetchFromGitHub, pytestCheckHook, pyyaml }: 2 + 3 + buildPythonPackage rec { 4 + pname = "python-i18n"; 5 + version = "0.3.9"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "danhper"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "6FahoHZqaOWYGaT9RqLARCm2kLfUIlYuauB6+0eX7jA="; 12 + }; 13 + 14 + checkInputs = [ pytestCheckHook pyyaml ]; 15 + 16 + pytestFlagsArray = [ "i18n/tests/run_tests.py" ]; 17 + 18 + meta = with lib; { 19 + description = "Easy to use i18n library"; 20 + homepage = "https://github.com/danhper/python-i18n"; 21 + license = with licenses; [ mit ]; 22 + maintainers = with maintainers; [ angustrau ]; 23 + }; 24 + }
+2 -2
pkgs/development/python-modules/python-ipmi/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "python-ipmi"; 13 - version = "0.5.1"; 14 disabled = pythonOlder "3.6"; 15 16 src = fetchFromGitHub { 17 owner = "kontron"; 18 repo = pname; 19 rev = version; 20 - sha256 = "0rcix3q845zsmfj5857kq1r5b8m7m3sad34i23k65m0p58clwdqm"; 21 }; 22 23 propagatedBuildInputs = [
··· 10 11 buildPythonPackage rec { 12 pname = "python-ipmi"; 13 + version = "0.5.2"; 14 disabled = pythonOlder "3.6"; 15 16 src = fetchFromGitHub { 17 owner = "kontron"; 18 repo = pname; 19 rev = version; 20 + sha256 = "sha256-VXWSoVRfgJWf9rOT4SE1mTJdeNmzR3TRc2pc6Pp1M5U="; 21 }; 22 23 propagatedBuildInputs = [
+27 -9
pkgs/development/python-modules/python-nest/default.nix
··· 1 - { buildPythonPackage, fetchPypi, lib, python-dateutil, requests 2 - , six, sseclient-py }: 3 4 buildPythonPackage rec { 5 pname = "python-nest"; 6 - version = "4.1.0"; 7 8 src = fetchPypi { 9 inherit pname version; 10 - sha256 = "12iyypbl92ybh8w1bf4z0c2g0sb9id2c07c89vzvnlxgjylw3wbi"; 11 }; 12 13 - propagatedBuildInputs = [ python-dateutil requests six sseclient-py ]; 14 - # has no tests 15 doCheck = false; 16 - pythonImportsCheck = [ "nest" ]; 17 18 meta = with lib; { 19 - description = 20 - "Python API and command line tool for talking to the Nest™ Thermostat"; 21 homepage = "https://github.com/jkoelker/python-nest"; 22 license = licenses.cc-by-nc-sa-40; 23 maintainers = with maintainers; [ jamiemagee ];
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , python-dateutil 5 + , requests 6 + , six 7 + , sseclient-py 8 + , pythonOlder 9 + }: 10 11 buildPythonPackage rec { 12 pname = "python-nest"; 13 + version = "4.2.0"; 14 + format = "setuptools"; 15 + 16 + disabled = pythonOlder "3.7"; 17 18 src = fetchPypi { 19 inherit pname version; 20 + hash = "sha256-01hoZbDssbJ10NA72gOtlzjZMGjsUBUoVDVM35uAOLU="; 21 }; 22 23 + propagatedBuildInputs = [ 24 + python-dateutil 25 + requests 26 + six 27 + sseclient-py 28 + ]; 29 + 30 + # Module has no tests 31 doCheck = false; 32 + 33 + pythonImportsCheck = [ 34 + "nest" 35 + ]; 36 37 meta = with lib; { 38 + description = "Python API and command line tool for talking to the Nest™ Thermostat"; 39 homepage = "https://github.com/jkoelker/python-nest"; 40 license = licenses.cc-by-nc-sa-40; 41 maintainers = with maintainers; [ jamiemagee ];
+2 -2
pkgs/development/python-modules/pywizlight/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "pywizlight"; 13 - version = "0.5"; 14 format = "setuptools"; 15 16 disabled = pythonOlder "3.7"; ··· 19 owner = "sbidy"; 20 repo = pname; 21 rev = "v${version}"; 22 - sha256 = "sha256-hw8fNguIqQslea44hiLgh6FntfKHFG1UeVYIvmu5nTw="; 23 }; 24 25 propagatedBuildInputs = [
··· 10 11 buildPythonPackage rec { 12 pname = "pywizlight"; 13 + version = "0.5.2"; 14 format = "setuptools"; 15 16 disabled = pythonOlder "3.7"; ··· 19 owner = "sbidy"; 20 repo = pname; 21 rev = "v${version}"; 22 + sha256 = "sha256-/euT77CAcfM9gMBV4SQsJWn6+JWcmqGNN8NGGX93xSg="; 23 }; 24 25 propagatedBuildInputs = [
+7
pkgs/development/python-modules/rxv/default.nix
··· 10 , pythonOlder 11 , requests 12 , requests-mock 13 }: 14 15 buildPythonPackage rec { ··· 25 rev = "v${version}"; 26 sha256 = "0jldnlzbfg5jm1nbgv91mlvcqkswd9f2n3qj9aqlbmj1cxq19yz8"; 27 }; 28 29 propagatedBuildInputs = [ 30 defusedxml
··· 10 , pythonOlder 11 , requests 12 , requests-mock 13 + , setuptools-scm 14 }: 15 16 buildPythonPackage rec { ··· 26 rev = "v${version}"; 27 sha256 = "0jldnlzbfg5jm1nbgv91mlvcqkswd9f2n3qj9aqlbmj1cxq19yz8"; 28 }; 29 + 30 + SETUPTOOLS_SCM_PRETEND_VERSION = version; 31 + 32 + nativeBuildInputs = [ 33 + setuptools-scm 34 + ]; 35 36 propagatedBuildInputs = [ 37 defusedxml
+2
pkgs/development/python-modules/scikit-survival/default.nix
··· 8 , numpy 9 , osqp 10 , pandas 11 , scikit-learn 12 , scipy 13 , pytestCheckHook ··· 24 25 nativeBuildInputs = [ 26 cython 27 ]; 28 29 propagatedBuildInputs = [
··· 8 , numpy 9 , osqp 10 , pandas 11 + , setuptools-scm 12 , scikit-learn 13 , scipy 14 , pytestCheckHook ··· 25 26 nativeBuildInputs = [ 27 cython 28 + setuptools-scm 29 ]; 30 31 propagatedBuildInputs = [
+2 -1
pkgs/development/python-modules/secp256k1/default.nix
··· 36 ''; 37 38 postPatch = '' 39 - sed -i '38,45d' setup.py 40 substituteInPlace setup.py --replace ", 'pytest-runner==2.6.2'" "" 41 ''; 42
··· 36 ''; 37 38 postPatch = '' 39 + # don't do hacky tarball download + setuptools check 40 + sed -i '38,54d' setup.py 41 substituteInPlace setup.py --replace ", 'pytest-runner==2.6.2'" "" 42 ''; 43
+12 -1
pkgs/development/python-modules/setupmeta/default.nix
··· 23 sha256 = "21hABRiY8CTKkpFjePgBAtjs4/G5eFS3aPNMCBC41CY="; 24 }; 25 26 checkInputs = [ 27 git 28 mock 29 pep440 30 pytestCheckHook 31 - setuptools-scm 32 ]; 33 34 disabledTests = [ 35 # Tests want to scan site-packages
··· 23 sha256 = "21hABRiY8CTKkpFjePgBAtjs4/G5eFS3aPNMCBC41CY="; 24 }; 25 26 + preBuild = '' 27 + export PYGRADLE_PROJECT_VERSION=${version}; 28 + ''; 29 + 30 + nativeBuildInputs = [ 31 + setuptools-scm 32 + ]; 33 + 34 checkInputs = [ 35 git 36 mock 37 pep440 38 pytestCheckHook 39 ]; 40 + 41 + preCheck = '' 42 + unset PYGRADLE_PROJECT_VERSION 43 + ''; 44 45 disabledTests = [ 46 # Tests want to scan site-packages
+2 -2
pkgs/development/python-modules/skodaconnect/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "skodaconnect"; 15 - version = "1.1.17"; 16 format = "setuptools"; 17 18 disabled = pythonOlder "3.8"; ··· 21 owner = "lendy007"; 22 repo = pname; 23 rev = version; 24 - hash = "sha256-aMyowz5+4Iu7bb8FSnHzx6QGp1WzzMXQZI23OZcr/kM="; 25 }; 26 27 SETUPTOOLS_SCM_PRETEND_VERSION = version;
··· 12 13 buildPythonPackage rec { 14 pname = "skodaconnect"; 15 + version = "1.1.18"; 16 format = "setuptools"; 17 18 disabled = pythonOlder "3.8"; ··· 21 owner = "lendy007"; 22 repo = pname; 23 rev = version; 24 + hash = "sha256-etcNdiuCgOe08HkOL+kXACoBAouDGUBqpaKUercud84="; 25 }; 26 27 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+13 -5
pkgs/development/python-modules/thinc/default.nix
··· 1 { lib 2 , stdenv 3 , buildPythonPackage 4 , fetchPypi 5 , pytestCheckHook 6 , blis ··· 39 sha256 = "sha256-R2YqOuM9RFp3tup7dyREgFx7uomR8SLjUNr3Le3IFxo="; 40 }; 41 42 buildInputs = [ 43 cython 44 ] ++ lib.optionals stdenv.isDarwin [ ··· 73 pytestCheckHook 74 ]; 75 76 - # Cannot find cython modules. 77 - doCheck = false; 78 79 - pytestFlagsArray = [ 80 - "thinc/tests" 81 - ]; 82 83 pythonImportsCheck = [ 84 "thinc"
··· 1 { lib 2 , stdenv 3 , buildPythonPackage 4 + , python 5 , fetchPypi 6 , pytestCheckHook 7 , blis ··· 40 sha256 = "sha256-R2YqOuM9RFp3tup7dyREgFx7uomR8SLjUNr3Le3IFxo="; 41 }; 42 43 + postPatch = '' 44 + substituteInPlace setup.cfg \ 45 + --replace "pydantic>=1.7.4,!=1.8,!=1.8.1,<1.9.0" "pydantic" 46 + ''; 47 + 48 buildInputs = [ 49 cython 50 ] ++ lib.optionals stdenv.isDarwin [ ··· 79 pytestCheckHook 80 ]; 81 82 + # Add native extensions. 83 + preCheck = '' 84 + export PYTHONPATH=$out/${python.sitePackages}:$PYTHONPATH 85 86 + # avoid local paths, relative imports wont resolve correctly 87 + mv thinc/tests tests 88 + rm -r thinc 89 + ''; 90 91 pythonImportsCheck = [ 92 "thinc"
+7
pkgs/development/python-modules/tomli/default.nix
··· 3 , callPackage 4 , fetchFromGitHub 5 , flit-core 6 }: 7 8 buildPythonPackage rec { ··· 41 42 passthru.tests = { 43 pytest = callPackage ./tests.nix { }; 44 }; 45 46 meta = with lib; {
··· 3 , callPackage 4 , fetchFromGitHub 5 , flit-core 6 + 7 + # important downstream dependencies 8 + , flit 9 + , black 10 + , mypy 11 + , setuptools-scm 12 }: 13 14 buildPythonPackage rec { ··· 47 48 passthru.tests = { 49 pytest = callPackage ./tests.nix { }; 50 + inherit flit black mypy setuptools-scm; 51 }; 52 53 meta = with lib; {
+2 -2
pkgs/development/python-modules/types-setuptools/default.nix
··· 5 6 buildPythonPackage rec { 7 pname = "types-setuptools"; 8 - version = "57.4.8"; 9 format = "setuptools"; 10 11 src = fetchPypi { 12 inherit pname version; 13 - sha256 = "sha256-1VRfKrPa0k9cscAbp0way3QHqzGyYY1CMVj8hAhRYPE="; 14 }; 15 16 # Module doesn't have tests
··· 5 6 buildPythonPackage rec { 7 pname = "types-setuptools"; 8 + version = "57.4.9"; 9 format = "setuptools"; 10 11 src = fetchPypi { 12 inherit pname version; 13 + sha256 = "sha256-U273R0T44eS+T8cZiH+IbnTkzzx5K0oGmEMgvk30ULU="; 14 }; 15 16 # Module doesn't have tests
+2 -2
pkgs/development/python-modules/velbus-aio/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "velbus-aio"; 13 - version = "2022.02.1"; 14 format = "setuptools"; 15 16 disabled = pythonOlder "3.7"; ··· 19 owner = "Cereal2nd"; 20 repo = pname; 21 rev = version; 22 - sha256 = "sha256-YVihR7XSI2Ve1Tur4mnNfFKzs8PN1DWO8JYUrYTL4xo="; 23 fetchSubmodules = true; 24 }; 25
··· 10 11 buildPythonPackage rec { 12 pname = "velbus-aio"; 13 + version = "2022.2.3"; 14 format = "setuptools"; 15 16 disabled = pythonOlder "3.7"; ··· 19 owner = "Cereal2nd"; 20 repo = pname; 21 rev = version; 22 + sha256 = "sha256-EgykuIz/IGFy4GTZZYpY3D5QvsCmY4H9d9Wxbof3DyQ="; 23 fetchSubmodules = true; 24 }; 25
+49
pkgs/development/python-modules/warrant-lite/default.nix
···
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , pythonOlder 5 + , boto3 6 + , envs 7 + , python-jose 8 + , requests 9 + }: 10 + 11 + buildPythonPackage rec { 12 + pname = "warrant-lite"; 13 + version = "1.0.4"; 14 + format = "setuptools"; 15 + 16 + disabled = pythonOlder "3.7"; 17 + 18 + src = fetchPypi { 19 + inherit pname version; 20 + hash = "sha256-FunWoslZn3o0WHet2+LtggO3bbbe2ULMXW93q07GxJ4="; 21 + }; 22 + 23 + propagatedBuildInputs = [ 24 + boto3 25 + envs 26 + python-jose 27 + requests 28 + ]; 29 + 30 + postPatch = '' 31 + # requirements.txt is not part of the source 32 + substituteInPlace setup.py \ 33 + --replace "parse_requirements('requirements.txt')," "[]," 34 + ''; 35 + 36 + # Tests require credentials 37 + doCheck = false; 38 + 39 + pythonImportsCheck = [ 40 + "warrant_lite" 41 + ]; 42 + 43 + meta = with lib; { 44 + description = "Module for process SRP requests for AWS Cognito"; 45 + homepage = "https://github.com/capless/warrant-lite"; 46 + license = with licenses; [ asl20 ]; 47 + maintainers = with maintainers; [ fab ]; 48 + }; 49 + }
+62
pkgs/development/python-modules/werkzeug/1.nix
···
··· 1 + { lib, stdenv, buildPythonPackage, fetchPypi 2 + , itsdangerous, hypothesis 3 + , pytestCheckHook, requests 4 + , pytest-timeout 5 + , isPy3k 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "Werkzeug"; 10 + version = "1.0.1"; 11 + 12 + src = fetchPypi { 13 + inherit pname version; 14 + sha256 = "6c80b1e5ad3665290ea39320b91e1be1e0d5f60652b964a3070216de83d2e47c"; 15 + }; 16 + 17 + propagatedBuildInputs = [ itsdangerous ]; 18 + checkInputs = [ pytestCheckHook requests hypothesis pytest-timeout ]; 19 + 20 + postPatch = '' 21 + # ResourceWarning causes tests to fail 22 + rm tests/test_routing.py 23 + ''; 24 + 25 + disabledTests = [ 26 + "test_save_to_pathlib_dst" 27 + "test_cookie_maxsize" 28 + "test_cookie_samesite_attribute" 29 + "test_cookie_samesite_invalid" 30 + "test_range_parsing" 31 + "test_content_range_parsing" 32 + "test_http_date_lt_1000" 33 + "test_best_match_works" 34 + "test_date_to_unix" 35 + "test_easteregg" 36 + 37 + # Seems to be a problematic test-case: 38 + # 39 + # > warnings.warn(pytest.PytestUnraisableExceptionWarning(msg)) 40 + # E pytest.PytestUnraisableExceptionWarning: Exception ignored in: <_io.FileIO [closed]> 41 + # E 42 + # E Traceback (most recent call last): 43 + # E File "/nix/store/cwv8aj4vsqvimzljw5dxsxy663vjgibj-python3.9-Werkzeug-1.0.1/lib/python3.9/site-packages/werkzeug/formparser.py", line 318, in parse_multipart_headers 44 + # E return Headers(result) 45 + # E ResourceWarning: unclosed file <_io.FileIO name=11 mode='rb+' closefd=True> 46 + "test_basic_routing" 47 + "test_merge_slashes_match" 48 + "test_merge_slashes_build" 49 + "TestMultiPart" 50 + "TestHTTPUtility" 51 + ] ++ lib.optionals stdenv.isDarwin [ 52 + "test_get_machine_id" 53 + ]; 54 + 55 + meta = with lib; { 56 + homepage = "https://palletsprojects.com/p/werkzeug/"; 57 + description = "A WSGI utility library for Python"; 58 + license = licenses.bsd3; 59 + maintainers = [ ]; 60 + }; 61 + } 62 +
+2 -2
pkgs/development/python-modules/whodap/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "whodap"; 13 - version = "0.1.3"; 14 15 disabled = pythonOlder "3.6"; 16 ··· 18 owner = "pogzyb"; 19 repo = pname; 20 rev = "v${version}"; 21 - sha256 = "1pcn2jwqfvp67wz19lcpwnw0dkbc61bnbkzxlmac1yf2pz9ndn6l"; 22 }; 23 24 propagatedBuildInputs = [
··· 10 11 buildPythonPackage rec { 12 pname = "whodap"; 13 + version = "0.1.4"; 14 15 disabled = pythonOlder "3.6"; 16 ··· 18 owner = "pogzyb"; 19 repo = pname; 20 rev = "v${version}"; 21 + sha256 = "sha256-L8fSf9AhmWbRvLKvf0aowKoal+5dG1SJXcA7Ssrhj6o="; 22 }; 23 24 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/zigpy-zigate/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "zigpy-zigate"; 15 - version = "0.7.4"; 16 # https://github.com/Martiusweb/asynctest/issues/152 17 # broken by upstream python bug with asynctest and 18 # is used exclusively by home-assistant with python 3.8 ··· 22 owner = "zigpy"; 23 repo = "zigpy-zigate"; 24 rev = version; 25 - sha256 = "0xl8qgljvmypi602f52m89iv9pcrzsdal3jw619vrcavp40rc04d"; 26 }; 27 28 propagatedBuildInputs = [
··· 12 13 buildPythonPackage rec { 14 pname = "zigpy-zigate"; 15 + version = "0.8.0"; 16 # https://github.com/Martiusweb/asynctest/issues/152 17 # broken by upstream python bug with asynctest and 18 # is used exclusively by home-assistant with python 3.8 ··· 22 owner = "zigpy"; 23 repo = "zigpy-zigate"; 24 rev = version; 25 + sha256 = "sha256-rFmcgfn87XS1fvbSdJG6pItXRMkeogp4faKMe7pCxkM="; 26 }; 27 28 propagatedBuildInputs = [
+5 -5
pkgs/development/r-modules/default.nix
··· 321 Biostrings = [ pkgs.zlib ]; 322 bnpmr = [ pkgs.gsl ]; 323 cairoDevice = [ pkgs.gtk2.dev ]; 324 - Cairo = with pkgs; [ libtiff libjpeg cairo.dev x11 fontconfig.lib ]; 325 Cardinal = [ pkgs.which ]; 326 chebpol = [ pkgs.fftw ]; 327 ChemmineOB = with pkgs; [ openbabel pkg-config ]; 328 curl = [ pkgs.curl.dev ]; 329 data_table = [ pkgs.zlib.dev ] ++ lib.optional stdenv.isDarwin pkgs.llvmPackages.openmp; 330 - devEMF = with pkgs; [ xorg.libXft.dev x11 ]; 331 diversitree = with pkgs; [ gsl fftw ]; 332 exactextractr = [ pkgs.geos ]; 333 EMCluster = [ pkgs.lapack ]; ··· 346 haven = with pkgs; [ libiconv zlib.dev ]; 347 h5vc = [ pkgs.zlib.dev ]; 348 HiCseg = [ pkgs.gsl ]; 349 - imager = [ pkgs.x11 ]; 350 iBMQ = [ pkgs.gsl ]; 351 igraph = with pkgs; [ gmp libxml2.dev ]; 352 JavaGD = [ pkgs.jdk ]; ··· 644 PING = [ pkgs.gsl ]; 645 RcppAlgos = [ pkgs.gmp.dev ]; 646 RcppBigIntAlgos = [ pkgs.gmp.dev ]; 647 - HilbertVisGUI = [ pkgs.gnome2.gtkmm.dev ]; 648 textshaping = with pkgs; [ harfbuzz.dev freetype.dev fribidi libpng ]; 649 DropletUtils = [ pkgs.zlib.dev ]; 650 RMariaDB = [ pkgs.libmysqlclient.dev ]; ··· 1114 patchShebangs configure 1115 ''; 1116 1117 - R_MAKEVARS_SITE = lib.optionalString (pkgs.system == "aarch64-linux") 1118 (pkgs.writeText "Makevars" '' 1119 CXX14PICFLAGS = -fPIC 1120 '');
··· 321 Biostrings = [ pkgs.zlib ]; 322 bnpmr = [ pkgs.gsl ]; 323 cairoDevice = [ pkgs.gtk2.dev ]; 324 + Cairo = with pkgs; [ libtiff libjpeg cairo.dev xlibsWrapper fontconfig.lib ]; 325 Cardinal = [ pkgs.which ]; 326 chebpol = [ pkgs.fftw ]; 327 ChemmineOB = with pkgs; [ openbabel pkg-config ]; 328 curl = [ pkgs.curl.dev ]; 329 data_table = [ pkgs.zlib.dev ] ++ lib.optional stdenv.isDarwin pkgs.llvmPackages.openmp; 330 + devEMF = with pkgs; [ xorg.libXft.dev xlibsWrapper ]; 331 diversitree = with pkgs; [ gsl fftw ]; 332 exactextractr = [ pkgs.geos ]; 333 EMCluster = [ pkgs.lapack ]; ··· 346 haven = with pkgs; [ libiconv zlib.dev ]; 347 h5vc = [ pkgs.zlib.dev ]; 348 HiCseg = [ pkgs.gsl ]; 349 + imager = [ pkgs.xlibsWrapper ]; 350 iBMQ = [ pkgs.gsl ]; 351 igraph = with pkgs; [ gmp libxml2.dev ]; 352 JavaGD = [ pkgs.jdk ]; ··· 644 PING = [ pkgs.gsl ]; 645 RcppAlgos = [ pkgs.gmp.dev ]; 646 RcppBigIntAlgos = [ pkgs.gmp.dev ]; 647 + HilbertVisGUI = [ pkgs.gtkmm2.dev ]; 648 textshaping = with pkgs; [ harfbuzz.dev freetype.dev fribidi libpng ]; 649 DropletUtils = [ pkgs.zlib.dev ]; 650 RMariaDB = [ pkgs.libmysqlclient.dev ]; ··· 1114 patchShebangs configure 1115 ''; 1116 1117 + R_MAKEVARS_SITE = lib.optionalString (pkgs.stdenv.system == "aarch64-linux") 1118 (pkgs.writeText "Makevars" '' 1119 CXX14PICFLAGS = -fPIC 1120 '');
+2 -2
pkgs/development/tools/analysis/checkov/default.nix
··· 22 23 buildPythonApplication rec { 24 pname = "checkov"; 25 - version = "2.0.795"; 26 27 src = fetchFromGitHub { 28 owner = "bridgecrewio"; 29 repo = pname; 30 rev = version; 31 - hash = "sha256-Mlyjw9ngLlzhhgtNARWaA1KCuZkKUEcElPIH8tjmlBQ="; 32 }; 33 34 nativeBuildInputs = with py.pkgs; [
··· 22 23 buildPythonApplication rec { 24 pname = "checkov"; 25 + version = "2.0.805"; 26 27 src = fetchFromGitHub { 28 owner = "bridgecrewio"; 29 repo = pname; 30 rev = version; 31 + hash = "sha256-vQ5BJUwjik9Wfh4eFGuefpMuTcEV83hYEJKa5/n+kRc="; 32 }; 33 34 nativeBuildInputs = with py.pkgs; [
+2 -2
pkgs/development/tools/analysis/tfsec/default.nix
··· 5 6 buildGoPackage rec { 7 pname = "tfsec"; 8 - version = "1.0.11"; 9 10 src = fetchFromGitHub { 11 owner = "aquasecurity"; 12 repo = pname; 13 rev = "v${version}"; 14 - sha256 = "sha256-YdoEPU0qXBJ6kD9mWNFxdeQE9e4vkrtVdEOcuFVDpOk="; 15 }; 16 17 goPackagePath = "github.com/aquasecurity/tfsec";
··· 5 6 buildGoPackage rec { 7 pname = "tfsec"; 8 + version = "1.1.2"; 9 10 src = fetchFromGitHub { 11 owner = "aquasecurity"; 12 repo = pname; 13 rev = "v${version}"; 14 + sha256 = "sha256-RoXk/wzizlND+WuFy5ZFfryKC9vS31b6SgZH7dPt3Ds="; 15 }; 16 17 goPackagePath = "github.com/aquasecurity/tfsec";
+12 -1
pkgs/development/tools/electron/default.nix
··· 15 , libxkbcommon 16 , libappindicator-gtk3 17 , libxshmfence 18 }@args: 19 20 let ··· 22 in 23 rec { 24 25 - electron = electron_16; 26 27 electron_7 = mkElectron "7.3.3" { 28 x86_64-linux = "a947228a859149bec5bd937f9f3c03eb0aa4d78cfe4dfa9aead60d3646a357f9"; ··· 118 x86_64-darwin = "a3c5e5368165304fc9392e3a5b59480965cf0f91f7d889257e6a622f48051cbf"; 119 aarch64-darwin = "dc8414d7b9a967bda530c83a81720519931aebf541cfaed142ee2042c16e683a"; 120 headers = "042gz036dzwbvvxvgbgkdb5nq7p8a7vcan6c35l7imgv1hd4g5v4"; 121 }; 122 }
··· 15 , libxkbcommon 16 , libappindicator-gtk3 17 , libxshmfence 18 + , libglvnd 19 }@args: 20 21 let ··· 23 in 24 rec { 25 26 + electron = electron_17; 27 28 electron_7 = mkElectron "7.3.3" { 29 x86_64-linux = "a947228a859149bec5bd937f9f3c03eb0aa4d78cfe4dfa9aead60d3646a357f9"; ··· 119 x86_64-darwin = "a3c5e5368165304fc9392e3a5b59480965cf0f91f7d889257e6a622f48051cbf"; 120 aarch64-darwin = "dc8414d7b9a967bda530c83a81720519931aebf541cfaed142ee2042c16e683a"; 121 headers = "042gz036dzwbvvxvgbgkdb5nq7p8a7vcan6c35l7imgv1hd4g5v4"; 122 + }; 123 + 124 + electron_17 = mkElectron "17.0.0" { 125 + armv7l-linux = "29b31c5e77d4d6d9e1a4340fdf08c28ae6698ea9e20d636cec8a59dc758815ef"; 126 + aarch64-linux = "e7bf2ec09b8a7018ba417fc670a15594fb8f3e930626485f2423e9a89e2dcbd0"; 127 + x86_64-linux = "dc74e28719a79f05dd741cda8c22c2bb164dec178c6d560af085910b37cf000b"; 128 + i686-linux = "6f6fe5fa0452e871abe82dbd25d7cf92ab7011995b3b2b15d04d8691ddc9e9de"; 129 + x86_64-darwin = "c35d81af3a3f156059a53436d7874a46770cbf6e4e5087f7caee269e66abb636"; 130 + aarch64-darwin = "7dc5eabc7e582a031d5bd079eeadc9582f5605446085b4cbd1dc7e7c9e978c45"; 131 + headers = "1i3sx1xy62i4f68zbsz1a7jgqw7shx0653w9fyvcdly2nraxldil"; 132 }; 133 }
+3 -1
pkgs/development/tools/electron/generic.nix
··· 15 , libxkbcommon 16 , libappindicator-gtk3 17 , libxshmfence 18 }: 19 20 version: hashes: ··· 28 maintainers = with maintainers; [ travisbhartwell manveru prusnak ]; 29 platforms = [ "x86_64-darwin" "x86_64-linux" "i686-linux" "armv7l-linux" "aarch64-linux" ] 30 ++ optionals (versionAtLeast version "11.0.0") [ "aarch64-darwin" ]; 31 - knownVulnerabilities = optional (versionOlder version "13.0.0") "Electron version ${version} is EOL"; 32 }; 33 34 fetcher = vers: tag: hash: fetchurl { ··· 64 ++ optionals (! versionOlder version "9.0.0") [ libdrm mesa ] 65 ++ optionals (! versionOlder version "11.0.0") [ libxkbcommon ] 66 ++ optionals (! versionOlder version "12.0.0") [ libxshmfence ] 67 ); 68 69 linux = {
··· 15 , libxkbcommon 16 , libappindicator-gtk3 17 , libxshmfence 18 + , libglvnd 19 }: 20 21 version: hashes: ··· 29 maintainers = with maintainers; [ travisbhartwell manveru prusnak ]; 30 platforms = [ "x86_64-darwin" "x86_64-linux" "i686-linux" "armv7l-linux" "aarch64-linux" ] 31 ++ optionals (versionAtLeast version "11.0.0") [ "aarch64-darwin" ]; 32 + knownVulnerabilities = optional (versionOlder version "14.0.0") "Electron version ${version} is EOL"; 33 }; 34 35 fetcher = vers: tag: hash: fetchurl { ··· 65 ++ optionals (! versionOlder version "9.0.0") [ libdrm mesa ] 66 ++ optionals (! versionOlder version "11.0.0") [ libxkbcommon ] 67 ++ optionals (! versionOlder version "12.0.0") [ libxshmfence ] 68 + ++ optionals (! versionOlder version "17.0.0") [ libglvnd ] 69 ); 70 71 linux = {
+21 -6
pkgs/development/tools/ginkgo/default.nix
··· 2 3 buildGoModule rec { 4 pname = "ginkgo"; 5 - version = "2.1.0"; 6 7 src = fetchFromGitHub { 8 owner = "onsi"; 9 repo = "ginkgo"; 10 rev = "v${version}"; 11 - sha256 = "sha256-GF96AOyQcVI01dP6yqMwyPmXMDRVxrScu1UL76jF2qA="; 12 }; 13 vendorSha256 = "sha256-kMQ60HdsorZU27qoOY52DpwFwP+Br2bp8mRx+ZwnQlI="; 14 - doCheck = false; 15 16 meta = with lib; { 17 - description = "BDD Testing Framework for Go"; 18 - homepage = "https://github.com/onsi/ginkgo"; 19 license = licenses.mit; 20 - maintainers = with maintainers; [ saschagrunert ]; 21 }; 22 }
··· 2 3 buildGoModule rec { 4 pname = "ginkgo"; 5 + version = "2.1.1"; 6 7 src = fetchFromGitHub { 8 owner = "onsi"; 9 repo = "ginkgo"; 10 rev = "v${version}"; 11 + sha256 = "sha256-iAXqPbNBNNR6PGhIjrDqTYUu0XYgvS5aM8n68qQNurQ="; 12 }; 13 vendorSha256 = "sha256-kMQ60HdsorZU27qoOY52DpwFwP+Br2bp8mRx+ZwnQlI="; 14 + 15 + # integration tests expect more file changes 16 + # types tests are missing CodeLocation 17 + excludedPackages = "\\(integration\\|types\\)"; 18 19 meta = with lib; { 20 + homepage = "https://onsi.github.io/ginkgo/"; 21 + changelog = "https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md"; 22 + description = "A Modern Testing Framework for Go"; 23 + longDescription = '' 24 + Ginkgo is a testing framework for Go designed to help you write expressive 25 + tests. It is best paired with the Gomega matcher library. When combined, 26 + Ginkgo and Gomega provide a rich and expressive DSL 27 + (Domain-specific Language) for writing tests. 28 + 29 + Ginkgo is sometimes described as a "Behavior Driven Development" (BDD) 30 + framework. In reality, Ginkgo is a general purpose testing framework in 31 + active use across a wide variety of testing contexts: unit tests, 32 + integration tests, acceptance test, performance tests, etc. 33 + ''; 34 license = licenses.mit; 35 + maintainers = with maintainers; [ saschagrunert jk ]; 36 }; 37 }
+13 -13
pkgs/development/tools/gotests/default.nix
··· 1 - { lib, buildGoPackage, fetchFromGitHub }: 2 3 - buildGoPackage rec { 4 pname = "gotests"; 5 - version = "1.5.3"; 6 - rev = "v${version}"; 7 - 8 - goPackagePath = "github.com/cweill/gotests"; 9 - excludedPackages = "testdata"; 10 - goDeps = ./deps.nix; 11 12 src = fetchFromGitHub { 13 - inherit rev; 14 owner = "cweill"; 15 repo = "gotests"; 16 - sha256 = "1c0hly31ax0wk01zdx0l0yl40xybaizjfb3gjxia2z0mgx330dq9"; 17 }; 18 19 - meta = { 20 description = "Generate Go tests from your source code"; 21 homepage = "https://github.com/cweill/gotests"; 22 - maintainers = with lib.maintainers; [ vdemeester ]; 23 - license = lib.licenses.asl20; 24 }; 25 }
··· 1 + { lib, buildGoModule, fetchFromGitHub }: 2 3 + buildGoModule rec { 4 pname = "gotests"; 5 + version = "1.6.0"; 6 7 src = fetchFromGitHub { 8 owner = "cweill"; 9 repo = "gotests"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-6IzUpAsFUgF2FwiC17OfDn1M+8WYFQPpRyXbkpHIztw="; 12 }; 13 14 + vendorSha256 = "sha256-WMeHZN3s+8pIYEVaSLjI3Bz+rPTWHr1AkZ8lydjBwCw="; 15 + 16 + # tests are broken in nix environment 17 + doCheck = false; 18 + 19 + meta = with lib; { 20 description = "Generate Go tests from your source code"; 21 homepage = "https://github.com/cweill/gotests"; 22 + maintainers = with maintainers; [ vdemeester ]; 23 + license = licenses.asl20; 24 }; 25 }
-12
pkgs/development/tools/gotests/deps.nix
··· 1 - # This file was generated by https://github.com/kamilchm/go2nix v1.3.0 2 - [ 3 - { 4 - goPackagePath = "golang.org/x/tools"; 5 - fetch = { 6 - type = "git"; 7 - url = "https://go.googlesource.com/tools"; 8 - rev = "23463209683dad3f2b9cc7f7c2663e1847c59017"; 9 - sha256 = "1shzfl4zixhj78v4f6y04bcmfl705yr5q8hp72ndbbma0mh09g8f"; 10 - }; 11 - } 12 - ]
···
+2 -2
pkgs/development/tools/omnisharp-roslyn/create-deps.sh
··· 1 #!/usr/bin/env nix-shell 2 - #!nix-shell -I nixpkgs=../../../../.. -i bash -p msbuild dotnet-sdk_3 jq xmlstarlet curl 3 set -euo pipefail 4 5 cat << EOL ··· 18 done 19 ) 20 21 - msbuild -t:restore -p:Configuration=Release -p:RestorePackagesPath="$tmpdir" \ 22 -p:RestoreNoCache=true -p:RestoreForce=true \ 23 src/OmniSharp.Stdio.Driver/OmniSharp.Stdio.Driver.csproj >&2 24
··· 1 #!/usr/bin/env nix-shell 2 + #!nix-shell -I nixpkgs=../../../../.. -i bash -p dotnet-sdk_6 jq xmlstarlet curl 3 set -euo pipefail 4 5 cat << EOL ··· 18 done 19 ) 20 21 + dotnet msbuild -t:restore -p:Configuration=Release -p:RestorePackagesPath="$tmpdir" \ 22 -p:RestoreNoCache=true -p:RestoreForce=true \ 23 src/OmniSharp.Stdio.Driver/OmniSharp.Stdio.Driver.csproj >&2 24
+9 -19
pkgs/development/tools/omnisharp-roslyn/default.nix
··· 1 { lib, stdenv 2 , fetchFromGitHub 3 , fetchurl 4 - , mono6 5 - , msbuild 6 , dotnetCorePackages 7 , makeWrapper 8 , unzip ··· 11 12 let 13 14 - dotnet-sdk = dotnetCorePackages.sdk_5_0; 15 16 deps = map (package: stdenv.mkDerivation (with package; { 17 inherit pname version src; ··· 67 in stdenv.mkDerivation rec { 68 69 pname = "omnisharp-roslyn"; 70 - version = "1.37.15"; 71 72 src = fetchFromGitHub { 73 owner = "OmniSharp"; 74 repo = pname; 75 rev = "v${version}"; 76 - sha256 = "070wqs667si3f78fy6w4rrfm8qncnabg0yckjhll0yv1pzbj9q42"; 77 }; 78 79 - nativeBuildInputs = [ makeWrapper msbuild ]; 80 81 buildPhase = '' 82 runHook preBuild 83 84 - HOME=$(pwd)/fake-home msbuild -r \ 85 -p:Configuration=Release \ 86 -p:RestoreConfigFile=${nuget-config} \ 87 src/OmniSharp.Stdio.Driver/OmniSharp.Stdio.Driver.csproj ··· 91 92 installPhase = '' 93 mkdir -p $out/bin 94 - cp -r bin/Release/OmniSharp.Stdio.Driver/net472 $out/src 95 - cp bin/Release/OmniSharp.Host/net472/SQLitePCLRaw* $out/src 96 - mkdir $out/src/.msbuild 97 - ln -s ${msbuild}/lib/mono/xbuild/* $out/src/.msbuild/ 98 - rm $out/src/.msbuild/Current 99 - mkdir $out/src/.msbuild/Current 100 - ln -s ${msbuild}/lib/mono/xbuild/Current/* $out/src/.msbuild/Current/ 101 - ln -s ${msbuild}/lib/mono/msbuild/Current/bin $out/src/.msbuild/Current/Bin 102 - 103 - makeWrapper ${mono6}/bin/mono $out/bin/omnisharp \ 104 - --suffix PATH : ${dotnet-sdk}/bin \ 105 - --add-flags "$out/src/OmniSharp.exe" 106 ''; 107 108 meta = with lib; {
··· 1 { lib, stdenv 2 , fetchFromGitHub 3 , fetchurl 4 , dotnetCorePackages 5 , makeWrapper 6 , unzip ··· 9 10 let 11 12 + dotnet-sdk = dotnetCorePackages.sdk_6_0; 13 14 deps = map (package: stdenv.mkDerivation (with package; { 15 inherit pname version src; ··· 65 in stdenv.mkDerivation rec { 66 67 pname = "omnisharp-roslyn"; 68 + version = "1.38.0"; 69 70 src = fetchFromGitHub { 71 owner = "OmniSharp"; 72 repo = pname; 73 rev = "v${version}"; 74 + sha256 = "00V+7Z1IoCSuSM0RClM81IslzCzC/FNYxHIKtnI9QDg="; 75 }; 76 77 + nativeBuildInputs = [ makeWrapper dotnet-sdk ]; 78 79 buildPhase = '' 80 runHook preBuild 81 82 + HOME=$(pwd)/fake-home dotnet msbuild -r \ 83 -p:Configuration=Release \ 84 -p:RestoreConfigFile=${nuget-config} \ 85 src/OmniSharp.Stdio.Driver/OmniSharp.Stdio.Driver.csproj ··· 89 90 installPhase = '' 91 mkdir -p $out/bin 92 + cp -r bin/Release/OmniSharp.Stdio.Driver/net6.0 $out/src 93 + makeWrapper $out/src/OmniSharp $out/bin/omnisharp \ 94 + --prefix DOTNET_ROOT : ${dotnet-sdk} \ 95 + --suffix PATH : ${dotnet-sdk}/bin 96 ''; 97 98 meta = with lib; {
+739 -259
pkgs/development/tools/omnisharp-roslyn/deps.nix
··· 1 { fetchurl }: [ 2 { 3 pname = "cake.scripting.abstractions"; 4 - version = "0.6.4"; 5 src = fetchurl { 6 - url = "https://api.nuget.org/v3-flatcontainer/cake.scripting.abstractions/0.6.4/cake.scripting.abstractions.0.6.4.nupkg"; 7 - sha256 = "14fcixlj2xazf6cb46gw8jgbsz89c6s8fnhvppxs8q12pygmkx0l"; 8 }; 9 } 10 { 11 pname = "cake.scripting.transport"; 12 - version = "0.6.4"; 13 src = fetchurl { 14 - url = "https://api.nuget.org/v3-flatcontainer/cake.scripting.transport/0.6.4/cake.scripting.transport.0.6.4.nupkg"; 15 - sha256 = "08cwj572mvmlagj5jry11j2l2fqc6yl4sw0szvql4ard9cx7j51n"; 16 }; 17 } 18 { ··· 64 }; 65 } 66 { 67 - pname = "messagepack"; 68 - version = "2.1.152"; 69 src = fetchurl { 70 - url = "https://api.nuget.org/v3-flatcontainer/messagepack/2.1.152/messagepack.2.1.152.nupkg"; 71 - sha256 = "1ks1w6pn96zm8nhz3ff6qdrmf0abppglwaa6vw83kj3d2qw74sw1"; 72 }; 73 } 74 { 75 - pname = "messagepackanalyzer"; 76 - version = "2.1.152"; 77 src = fetchurl { 78 - url = "https://api.nuget.org/v3-flatcontainer/messagepackanalyzer/2.1.152/messagepackanalyzer.2.1.152.nupkg"; 79 - sha256 = "18iacmw5v3dp8lma9c0rh5jh8g1hkxnkq78kx7n00wkwxa58badx"; 80 }; 81 } 82 { 83 - pname = "messagepack.annotations"; 84 - version = "2.1.152"; 85 src = fetchurl { 86 - url = "https://api.nuget.org/v3-flatcontainer/messagepack.annotations/2.1.152/messagepack.annotations.2.1.152.nupkg"; 87 - sha256 = "196swfxaz7l26hiyfv1mix0y80amhlq48krc4g5p9894wx1az3c3"; 88 - }; 89 - } 90 - { 91 - pname = "microsoft.aspnetcore.app.ref"; 92 - version = "3.1.10"; 93 - src = fetchurl { 94 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.app.ref/3.1.10/microsoft.aspnetcore.app.ref.3.1.10.nupkg"; 95 - sha256 = "0xn4zh7shvijqlr03fqsmps6gz856isd9bg9rk4z2c4599ggal77"; 96 - }; 97 - } 98 - { 99 - pname = "microsoft.bcl.asyncinterfaces"; 100 - version = "1.1.0"; 101 - src = fetchurl { 102 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.bcl.asyncinterfaces/1.1.0/microsoft.bcl.asyncinterfaces.1.1.0.nupkg"; 103 - sha256 = "1dq5yw7cy6s42193yl4iqscfw5vzkjkgv0zyy32scr4jza6ni1a1"; 104 }; 105 } 106 { ··· 120 }; 121 } 122 { 123 pname = "microsoft.build"; 124 - version = "16.10.0"; 125 src = fetchurl { 126 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.build/16.10.0/microsoft.build.16.10.0.nupkg"; 127 - sha256 = "1ran3fp016wvj8d2ahv0cmwhm6hjjh64w82s7cy52s7qffrgjk46"; 128 }; 129 } 130 { 131 pname = "microsoft.build.framework"; 132 - version = "16.10.0"; 133 src = fetchurl { 134 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.build.framework/16.10.0/microsoft.build.framework.16.10.0.nupkg"; 135 - sha256 = "17a8qxgq0jzxpjannhxkcg0941b64yb7z0yq75gz6hsq9ln3agja"; 136 }; 137 } 138 { ··· 145 } 146 { 147 pname = "microsoft.build.tasks.core"; 148 - version = "16.10.0"; 149 src = fetchurl { 150 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.build.tasks.core/16.10.0/microsoft.build.tasks.core.16.10.0.nupkg"; 151 - sha256 = "0yc3p4bksxmbq1n8wfqgn6b6x9ccyzq229f0mn08z4jfima3cnxg"; 152 }; 153 } 154 { ··· 161 } 162 { 163 pname = "microsoft.build.utilities.core"; 164 - version = "16.10.0"; 165 src = fetchurl { 166 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.build.utilities.core/16.10.0/microsoft.build.utilities.core.16.10.0.nupkg"; 167 - sha256 = "1rh3gzrz8mmzilvs33cxngv0a805nb47s615rvj4xk5igm384w14"; 168 }; 169 } 170 { ··· 185 } 186 { 187 pname = "microsoft.codeanalysis.common"; 188 - version = "4.0.0-4.21427.11"; 189 src = fetchurl { 190 - url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.common/4.0.0-4.21427.11/microsoft.codeanalysis.common.4.0.0-4.21427.11.nupkg"; 191 - sha256 = "15q6a2z3ms2vyrfk4y7biniygy0brr3ddb8mn700zg4sl84vphcz"; 192 }; 193 } 194 { 195 pname = "microsoft.codeanalysis.csharp"; 196 - version = "4.0.0-4.21427.11"; 197 src = fetchurl { 198 - url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.csharp/4.0.0-4.21427.11/microsoft.codeanalysis.csharp.4.0.0-4.21427.11.nupkg"; 199 - sha256 = "0x3l774higkpbbk4f1naf57c039g8qvvdvb3963m7g54qn4zhvdh"; 200 }; 201 } 202 { 203 pname = "microsoft.codeanalysis.csharp.features"; 204 - version = "4.0.0-4.21427.11"; 205 src = fetchurl { 206 - url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.csharp.features/4.0.0-4.21427.11/microsoft.codeanalysis.csharp.features.4.0.0-4.21427.11.nupkg"; 207 - sha256 = "0w0wrssv0ix4z9609a34k6a5kc4p85gy76p676fdg6hyf6pzd78m"; 208 }; 209 } 210 { 211 pname = "microsoft.codeanalysis.csharp.scripting"; 212 - version = "4.0.0-4.21427.11"; 213 src = fetchurl { 214 - url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.csharp.scripting/4.0.0-4.21427.11/microsoft.codeanalysis.csharp.scripting.4.0.0-4.21427.11.nupkg"; 215 - sha256 = "0lmfbkxqp8p52wg2lsyxpavabk318s6ci02cxzgmxydc2pd9r70v"; 216 }; 217 } 218 { 219 pname = "microsoft.codeanalysis.csharp.workspaces"; 220 - version = "4.0.0-4.21427.11"; 221 src = fetchurl { 222 - url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.csharp.workspaces/4.0.0-4.21427.11/microsoft.codeanalysis.csharp.workspaces.4.0.0-4.21427.11.nupkg"; 223 - sha256 = "0j5c9v4nfahvnasz895czk1cp46b2d98px1gdar2ik9c5630vxwi"; 224 }; 225 } 226 { 227 pname = "microsoft.codeanalysis.externalaccess.omnisharp"; 228 - version = "4.0.0-4.21427.11"; 229 src = fetchurl { 230 - url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.externalaccess.omnisharp/4.0.0-4.21427.11/microsoft.codeanalysis.externalaccess.omnisharp.4.0.0-4.21427.11.nupkg"; 231 - sha256 = "0qy8xiv1j8awmbbgy16b2y9rhymxhx8kcmfylhxi1ryqql4mrpg2"; 232 }; 233 } 234 { 235 pname = "microsoft.codeanalysis.externalaccess.omnisharp.csharp"; 236 - version = "4.0.0-4.21427.11"; 237 src = fetchurl { 238 - url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.externalaccess.omnisharp.csharp/4.0.0-4.21427.11/microsoft.codeanalysis.externalaccess.omnisharp.csharp.4.0.0-4.21427.11.nupkg"; 239 - sha256 = "0mp1gkfdrdjcryqdj76ilpmjh0w8z4h313djjplcawwk76369mnc"; 240 }; 241 } 242 { 243 pname = "microsoft.codeanalysis.features"; 244 - version = "4.0.0-4.21427.11"; 245 src = fetchurl { 246 - url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.features/4.0.0-4.21427.11/microsoft.codeanalysis.features.4.0.0-4.21427.11.nupkg"; 247 - sha256 = "03vclmmxch3jrjamr9lg899s9wsfxw9yf53p9yfwvcr8wml4cwpz"; 248 }; 249 } 250 { 251 pname = "microsoft.codeanalysis.scripting.common"; 252 - version = "4.0.0-4.21427.11"; 253 src = fetchurl { 254 - url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.scripting.common/4.0.0-4.21427.11/microsoft.codeanalysis.scripting.common.4.0.0-4.21427.11.nupkg"; 255 - sha256 = "15fkbw651v9lliqdmg1k61dqzasrssahyhrhwg24m111rgh86fbn"; 256 }; 257 } 258 { 259 pname = "microsoft.codeanalysis.workspaces.common"; 260 - version = "4.0.0-4.21427.11"; 261 src = fetchurl { 262 - url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.workspaces.common/4.0.0-4.21427.11/microsoft.codeanalysis.workspaces.common.4.0.0-4.21427.11.nupkg"; 263 - sha256 = "0k4qjkkg4mllizialzm463ssm3faqcqjnw19kbcnrzm5cd72i7cy"; 264 }; 265 } 266 { ··· 289 } 290 { 291 pname = "microsoft.extensions.caching.abstractions"; 292 - version = "5.0.0"; 293 src = fetchurl { 294 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.caching.abstractions/5.0.0/microsoft.extensions.caching.abstractions.5.0.0.nupkg"; 295 - sha256 = "0j83zapqhgqb4v5f6kn891km095pfhvsqha357a86ccclmv2czvb"; 296 }; 297 } 298 { 299 pname = "microsoft.extensions.caching.memory"; 300 - version = "5.0.0"; 301 src = fetchurl { 302 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.caching.memory/5.0.0/microsoft.extensions.caching.memory.5.0.0.nupkg"; 303 - sha256 = "0l8spndl3kvccjlay202msm31iy5iig0i9ddbsdy92wbcjr97lca"; 304 }; 305 } 306 { ··· 313 } 314 { 315 pname = "microsoft.extensions.configuration"; 316 - version = "5.0.0"; 317 src = fetchurl { 318 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration/5.0.0/microsoft.extensions.configuration.5.0.0.nupkg"; 319 - sha256 = "01m9vzlq0vg0lhckj2dimwq42niwny8g3lm13c9a401hlyg90z1p"; 320 }; 321 } 322 { ··· 329 } 330 { 331 pname = "microsoft.extensions.configuration.abstractions"; 332 - version = "5.0.0"; 333 src = fetchurl { 334 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.abstractions/5.0.0/microsoft.extensions.configuration.abstractions.5.0.0.nupkg"; 335 - sha256 = "0fqxkc9pjxkqylsdf26s9q21ciyk56h1w33pz3v1v4wcv8yv1v6k"; 336 }; 337 } 338 { ··· 345 } 346 { 347 pname = "microsoft.extensions.configuration.binder"; 348 - version = "5.0.0"; 349 src = fetchurl { 350 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.binder/5.0.0/microsoft.extensions.configuration.binder.5.0.0.nupkg"; 351 - sha256 = "0sld0bh2k5kss32i3nf8mwqkjagmw0d1cdfmxm87ckiicwm413a0"; 352 }; 353 } 354 { 355 pname = "microsoft.extensions.configuration.commandline"; 356 - version = "5.0.0"; 357 src = fetchurl { 358 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.commandline/5.0.0/microsoft.extensions.configuration.commandline.5.0.0.nupkg"; 359 - sha256 = "084hnz5l0vr15ay23rksqipslqnz3pp30w9hsirpx1iqdm5688mc"; 360 }; 361 } 362 { 363 pname = "microsoft.extensions.configuration.environmentvariables"; 364 - version = "5.0.0"; 365 src = fetchurl { 366 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.environmentvariables/5.0.0/microsoft.extensions.configuration.environmentvariables.5.0.0.nupkg"; 367 - sha256 = "03gvckj10ljk1mir9g8cf3cajsnihhvmh8z8341gkr9h5653qkv0"; 368 }; 369 } 370 { 371 pname = "microsoft.extensions.configuration.fileextensions"; 372 - version = "5.0.0"; 373 src = fetchurl { 374 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.fileextensions/5.0.0/microsoft.extensions.configuration.fileextensions.5.0.0.nupkg"; 375 - sha256 = "1wq229r3xcmm9wh9sqdpvmfv4qpbp2zms9x6xk7g7sbb8h32hnz3"; 376 }; 377 } 378 { 379 pname = "microsoft.extensions.configuration.json"; 380 - version = "5.0.0"; 381 src = fetchurl { 382 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.json/5.0.0/microsoft.extensions.configuration.json.5.0.0.nupkg"; 383 - sha256 = "0hq5i483bjbvprp1la9l3si82x1ydxbvkpfc7r3s7zgxg957fyp9"; 384 }; 385 } 386 { ··· 393 } 394 { 395 pname = "microsoft.extensions.dependencyinjection"; 396 - version = "5.0.0"; 397 src = fetchurl { 398 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencyinjection/5.0.0/microsoft.extensions.dependencyinjection.5.0.0.nupkg"; 399 - sha256 = "15sdwcyzz0qlybwbdq854bn3jk6kx7awx28gs864c4shhbqkppj4"; 400 }; 401 } 402 { ··· 409 } 410 { 411 pname = "microsoft.extensions.dependencyinjection.abstractions"; 412 - version = "5.0.0"; 413 src = fetchurl { 414 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencyinjection.abstractions/5.0.0/microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg"; 415 - sha256 = "17cz6s80va0ch0a6nqa1wbbbp3p8sqxb96lj4qcw67ivkp2yxiyj"; 416 }; 417 } 418 { 419 pname = "microsoft.extensions.dependencymodel"; 420 - version = "5.0.0"; 421 src = fetchurl { 422 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencymodel/5.0.0/microsoft.extensions.dependencymodel.5.0.0.nupkg"; 423 - sha256 = "1mma1zxi0b40972cwfvkj9y0w9r7vjbi74784jzcb22pric00k5x"; 424 }; 425 } 426 { 427 pname = "microsoft.extensions.fileproviders.abstractions"; 428 - version = "5.0.0"; 429 src = fetchurl { 430 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.fileproviders.abstractions/5.0.0/microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg"; 431 - sha256 = "01ahgd0b2z2zycrr2lcsq2cl59fn04bh51hdwdp9dcsdkpvnasj1"; 432 }; 433 } 434 { 435 pname = "microsoft.extensions.fileproviders.physical"; 436 - version = "5.0.0"; 437 src = fetchurl { 438 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.fileproviders.physical/5.0.0/microsoft.extensions.fileproviders.physical.5.0.0.nupkg"; 439 - sha256 = "00vii8148a6pk12l9jl0rhjp7apil5q5qcy7v1smnv17lj4p8szd"; 440 }; 441 } 442 { 443 pname = "microsoft.extensions.filesystemglobbing"; 444 - version = "5.0.0"; 445 src = fetchurl { 446 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.filesystemglobbing/5.0.0/microsoft.extensions.filesystemglobbing.5.0.0.nupkg"; 447 - sha256 = "0lm6n9vbyjh0l17qcc2y9qwn1cns3dyjmkvbxjp0g9sll32kjpmb"; 448 }; 449 } 450 { ··· 457 } 458 { 459 pname = "microsoft.extensions.logging"; 460 - version = "5.0.0"; 461 src = fetchurl { 462 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging/5.0.0/microsoft.extensions.logging.5.0.0.nupkg"; 463 - sha256 = "1qa1l18q2jh9azya8gv1p8anzcdirjzd9dxxisb4911i9m1648i3"; 464 }; 465 } 466 { ··· 481 } 482 { 483 pname = "microsoft.extensions.logging.abstractions"; 484 - version = "5.0.0"; 485 src = fetchurl { 486 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.abstractions/5.0.0/microsoft.extensions.logging.abstractions.5.0.0.nupkg"; 487 - sha256 = "1yza38675dbv1qqnnhqm23alv2bbaqxp0pb7zinjmw8j2mr5r6wc"; 488 }; 489 } 490 { 491 pname = "microsoft.extensions.logging.configuration"; 492 - version = "5.0.0"; 493 src = fetchurl { 494 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.configuration/5.0.0/microsoft.extensions.logging.configuration.5.0.0.nupkg"; 495 - sha256 = "1kmjax24w0ph362jr64rr6f8pyn6ayq39k502q9yrgr7zgrv65pa"; 496 }; 497 } 498 { 499 pname = "microsoft.extensions.logging.console"; 500 - version = "5.0.0"; 501 src = fetchurl { 502 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.console/5.0.0/microsoft.extensions.logging.console.5.0.0.nupkg"; 503 - sha256 = "162akclrhk5r62fza8yr30p5824inwmrpq2s510c3a64v76v9cqz"; 504 }; 505 } 506 { ··· 513 } 514 { 515 pname = "microsoft.extensions.options"; 516 - version = "5.0.0"; 517 src = fetchurl { 518 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.options/5.0.0/microsoft.extensions.options.5.0.0.nupkg"; 519 - sha256 = "1rdmgpg770x8qwaaa6ryc27zh93p697fcyvn5vkxp0wimlhqkbay"; 520 }; 521 } 522 { ··· 529 } 530 { 531 pname = "microsoft.extensions.options.configurationextensions"; 532 - version = "5.0.0"; 533 src = fetchurl { 534 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.options.configurationextensions/5.0.0/microsoft.extensions.options.configurationextensions.5.0.0.nupkg"; 535 - sha256 = "1085yrfgc70am43v8i5rxh14kal3bhdd5q85vgny5qp7y1rw0xyw"; 536 }; 537 } 538 { ··· 545 } 546 { 547 pname = "microsoft.extensions.primitives"; 548 - version = "5.0.0"; 549 src = fetchurl { 550 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.primitives/5.0.0/microsoft.extensions.primitives.5.0.0.nupkg"; 551 - sha256 = "0swqcknyh87ns82w539z1mvy804pfwhgzs97cr3nwqk6g5s42gd6"; 552 }; 553 } 554 { 555 - pname = "microsoft.netcore.app.ref"; 556 - version = "3.1.0"; 557 src = fetchurl { 558 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.app.ref/3.1.0/microsoft.netcore.app.ref.3.1.0.nupkg"; 559 - sha256 = "08svsiilx9spvjamcnjswv0dlpdrgryhr3asdz7cvnl914gjzq4y"; 560 }; 561 } 562 { ··· 589 src = fetchurl { 590 url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.platforms/2.1.2/microsoft.netcore.platforms.2.1.2.nupkg"; 591 sha256 = "1507hnpr9my3z4w1r6xk5n0s1j3y6a2c2cnynj76za7cphxi1141"; 592 }; 593 } 594 { ··· 657 } 658 { 659 pname = "microsoft.testplatform.objectmodel"; 660 - version = "16.9.4"; 661 src = fetchurl { 662 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.testplatform.objectmodel/16.9.4/microsoft.testplatform.objectmodel.16.9.4.nupkg"; 663 - sha256 = "1jizkbrnm4pv60zch29ki7gj8m7j5whk141x9cwx4kwsd6cfzwi6"; 664 }; 665 } 666 { 667 pname = "microsoft.testplatform.translationlayer"; 668 - version = "16.9.4"; 669 - src = fetchurl { 670 - url = "https://api.nuget.org/v3-flatcontainer/microsoft.testplatform.translationlayer/16.9.4/microsoft.testplatform.translationlayer.16.9.4.nupkg"; 671 - sha256 = "0y5w2zflvq06jim2i6d49qi45ix0b8vlyf024w29n5g1lb570qf0"; 672 - }; 673 - } 674 - { 675 - pname = "microsoft.visualstudio.debugger.contracts"; 676 - version = "17.2.0-beta.21417.1"; 677 src = fetchurl { 678 - url = "https://pkgs.dev.azure.com/azure-public/3ccf6661-f8ce-4e8a-bb2e-eff943ddd3c7/_packaging/78665e4c-b767-412b-9804-2b1ef7a48b8a/nuget/v3/flat2/microsoft.visualstudio.debugger.contracts/17.2.0-beta.21417.1/microsoft.visualstudio.debugger.contracts.17.2.0-beta.21417.1.nupkg"; 679 - sha256 = "14v8d0hp6p1jn4i6b12r6vx4cvxycpb37a0zh0amz0qkg4afr12d"; 680 }; 681 } 682 { ··· 777 } 778 { 779 pname = "netstandard.library"; 780 version = "2.0.3"; 781 src = fetchurl { 782 url = "https://api.nuget.org/v3-flatcontainer/netstandard.library/2.0.3/netstandard.library.2.0.3.nupkg"; ··· 793 } 794 { 795 pname = "newtonsoft.json"; 796 - version = "12.0.3"; 797 src = fetchurl { 798 - url = "https://api.nuget.org/v3-flatcontainer/newtonsoft.json/12.0.3/newtonsoft.json.12.0.3.nupkg"; 799 - sha256 = "17dzl305d835mzign8r15vkmav2hq8l6g7942dfjpnzr17wwl89x"; 800 }; 801 } 802 { ··· 809 } 810 { 811 pname = "nuget.common"; 812 - version = "5.10.0"; 813 - src = fetchurl { 814 - url = "https://api.nuget.org/v3-flatcontainer/nuget.common/5.10.0/nuget.common.5.10.0.nupkg"; 815 - sha256 = "0qy6blgppgvxpfcricmvva3qzddk18dza5vy851jrbqshvf9g7kx"; 816 - }; 817 - } 818 - { 819 - pname = "nuget.common"; 820 version = "5.2.0"; 821 src = fetchurl { 822 url = "https://api.nuget.org/v3-flatcontainer/nuget.common/5.2.0/nuget.common.5.2.0.nupkg"; ··· 824 }; 825 } 826 { 827 - pname = "nuget.configuration"; 828 - version = "5.10.0"; 829 src = fetchurl { 830 - url = "https://api.nuget.org/v3-flatcontainer/nuget.configuration/5.10.0/nuget.configuration.5.10.0.nupkg"; 831 - sha256 = "0xb1n94lrwa6k83i9xcsq68202086p2gj74gzlbhlvb8c2pw6lbb"; 832 }; 833 } 834 { ··· 840 }; 841 } 842 { 843 - pname = "nuget.dependencyresolver.core"; 844 - version = "5.10.0"; 845 src = fetchurl { 846 - url = "https://api.nuget.org/v3-flatcontainer/nuget.dependencyresolver.core/5.10.0/nuget.dependencyresolver.core.5.10.0.nupkg"; 847 - sha256 = "0dhhclm281ihpfsjzxw34l6zlw49nwzyjiynkmsbcj9icfkp3y4r"; 848 }; 849 } 850 { ··· 856 }; 857 } 858 { 859 - pname = "nuget.frameworks"; 860 - version = "5.0.0"; 861 src = fetchurl { 862 - url = "https://api.nuget.org/v3-flatcontainer/nuget.frameworks/5.0.0/nuget.frameworks.5.0.0.nupkg"; 863 - sha256 = "18ijvmj13cwjdrrm52c8fpq021531zaz4mj4b4zapxaqzzxf2qjr"; 864 }; 865 } 866 { 867 pname = "nuget.frameworks"; 868 - version = "5.10.0"; 869 src = fetchurl { 870 - url = "https://api.nuget.org/v3-flatcontainer/nuget.frameworks/5.10.0/nuget.frameworks.5.10.0.nupkg"; 871 - sha256 = "0gb6n8rg2jpjp52icgpb3wjdfs3qllh5vbcz8hbcix3l7dncy3v2"; 872 }; 873 } 874 { ··· 880 }; 881 } 882 { 883 - pname = "nuget.librarymodel"; 884 - version = "5.10.0"; 885 src = fetchurl { 886 - url = "https://api.nuget.org/v3-flatcontainer/nuget.librarymodel/5.10.0/nuget.librarymodel.5.10.0.nupkg"; 887 - sha256 = "0b6mmq2mqfr06ypc772dmcd8bz55gkyfrgn0j3nrgkcdww4fzf9q"; 888 }; 889 } 890 { ··· 896 }; 897 } 898 { 899 - pname = "nuget.packaging"; 900 - version = "5.10.0"; 901 src = fetchurl { 902 - url = "https://api.nuget.org/v3-flatcontainer/nuget.packaging/5.10.0/nuget.packaging.5.10.0.nupkg"; 903 - sha256 = "11g0v061axhp0nisclq5cm2mc92d69z92giz9l40ih478c5nishw"; 904 }; 905 } 906 { ··· 912 }; 913 } 914 { 915 - pname = "nuget.packaging.core"; 916 - version = "5.10.0"; 917 src = fetchurl { 918 - url = "https://api.nuget.org/v3-flatcontainer/nuget.packaging.core/5.10.0/nuget.packaging.core.5.10.0.nupkg"; 919 - sha256 = "1frxwwl583qwsj84rjgvd7il6icgxzxxps6yng75qx8ppf99dsr6"; 920 }; 921 } 922 { 923 - pname = "nuget.projectmodel"; 924 - version = "5.10.0"; 925 src = fetchurl { 926 - url = "https://api.nuget.org/v3-flatcontainer/nuget.projectmodel/5.10.0/nuget.projectmodel.5.10.0.nupkg"; 927 - sha256 = "1cqg319n986wciskrqsfawfhqp1d7a7i2qjd0qplpckyw8msng2i"; 928 }; 929 } 930 { ··· 936 }; 937 } 938 { 939 - pname = "nuget.protocol"; 940 - version = "5.10.0"; 941 src = fetchurl { 942 - url = "https://api.nuget.org/v3-flatcontainer/nuget.protocol/5.10.0/nuget.protocol.5.10.0.nupkg"; 943 - sha256 = "0cs9qp169zx6g2w5bzrlhxv0q1i8mb8dxlb2nkiq7pkvah86rxkc"; 944 }; 945 } 946 { ··· 952 }; 953 } 954 { 955 - pname = "nuget.versioning"; 956 - version = "5.10.0"; 957 src = fetchurl { 958 - url = "https://api.nuget.org/v3-flatcontainer/nuget.versioning/5.10.0/nuget.versioning.5.10.0.nupkg"; 959 - sha256 = "10vvw6vjpx0c26rlxh7dnpyp4prahn25717ccd8bzkjmyzhm90cs"; 960 }; 961 } 962 { ··· 965 src = fetchurl { 966 url = "https://api.nuget.org/v3-flatcontainer/nuget.versioning/5.2.0/nuget.versioning.5.2.0.nupkg"; 967 sha256 = "08ay8bhddj9yiq6h9lk814l65fpx5gh1iprkl7pcp78g57a6k45k"; 968 }; 969 } 970 { ··· 1008 }; 1009 } 1010 { 1011 pname = "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl"; 1012 version = "4.3.0"; 1013 src = fetchurl { ··· 1136 }; 1137 } 1138 { 1139 pname = "sqlitepclraw.bundle_green"; 1140 version = "2.0.4"; 1141 src = fetchurl { ··· 1201 } 1202 { 1203 pname = "system.buffers"; 1204 - version = "4.5.0"; 1205 - src = fetchurl { 1206 - url = "https://api.nuget.org/v3-flatcontainer/system.buffers/4.5.0/system.buffers.4.5.0.nupkg"; 1207 - sha256 = "1ywfqn4md6g3iilpxjn5dsr0f5lx6z0yvhqp4pgjcamygg73cz2c"; 1208 - }; 1209 - } 1210 - { 1211 - pname = "system.buffers"; 1212 version = "4.5.1"; 1213 src = fetchurl { 1214 url = "https://api.nuget.org/v3-flatcontainer/system.buffers/4.5.1/system.buffers.4.5.1.nupkg"; ··· 1272 }; 1273 } 1274 { 1275 pname = "system.componentmodel.composition"; 1276 version = "4.5.0"; 1277 src = fetchurl { ··· 1345 } 1346 { 1347 pname = "system.diagnostics.debug"; 1348 version = "4.3.0"; 1349 src = fetchurl { 1350 url = "https://api.nuget.org/v3-flatcontainer/system.diagnostics.debug/4.3.0/system.diagnostics.debug.4.3.0.nupkg"; ··· 1361 } 1362 { 1363 pname = "system.diagnostics.diagnosticsource"; 1364 - version = "5.0.0"; 1365 src = fetchurl { 1366 - url = "https://api.nuget.org/v3-flatcontainer/system.diagnostics.diagnosticsource/5.0.0/system.diagnostics.diagnosticsource.5.0.0.nupkg"; 1367 - sha256 = "0phd2qizshjvglhzws1jd0cq4m54gscz4ychzr3x6wbgl4vvfrga"; 1368 }; 1369 } 1370 { ··· 1389 src = fetchurl { 1390 url = "https://api.nuget.org/v3-flatcontainer/system.drawing.common/4.7.0/system.drawing.common.4.7.0.nupkg"; 1391 sha256 = "0yfw7cpl54mgfcylvlpvrl0c8r1b0zca6p7r3rcwkvqy23xqcyhg"; 1392 }; 1393 } 1394 { ··· 1465 } 1466 { 1467 pname = "system.io.filesystem"; 1468 version = "4.3.0"; 1469 src = fetchurl { 1470 url = "https://api.nuget.org/v3-flatcontainer/system.io.filesystem/4.3.0/system.io.filesystem.4.3.0.nupkg"; 1471 sha256 = "0z2dfrbra9i6y16mm9v1v6k47f0fm617vlb7s5iybjjsz6g1ilmw"; 1472 }; 1473 } 1474 { ··· 1497 } 1498 { 1499 pname = "system.linq"; 1500 version = "4.3.0"; 1501 src = fetchurl { 1502 url = "https://api.nuget.org/v3-flatcontainer/system.linq/4.3.0/system.linq.4.3.0.nupkg"; 1503 sha256 = "1w0gmba695rbr80l1k2h4mrwzbzsyfl2z4klmpbsvsg5pm4a56s7"; 1504 }; 1505 } 1506 { ··· 1536 }; 1537 } 1538 { 1539 pname = "system.net.primitives"; 1540 version = "4.3.0"; 1541 src = fetchurl { ··· 1577 } 1578 { 1579 pname = "system.objectmodel"; 1580 version = "4.3.0"; 1581 src = fetchurl { 1582 url = "https://api.nuget.org/v3-flatcontainer/system.objectmodel/4.3.0/system.objectmodel.4.3.0.nupkg"; 1583 sha256 = "191p63zy5rpqx7dnrb3h7prvgixmk168fhvvkkvhlazncf8r3nc2"; 1584 }; 1585 } 1586 { ··· 1617 } 1618 { 1619 pname = "system.reflection.emit"; 1620 version = "4.3.0"; 1621 src = fetchurl { 1622 url = "https://api.nuget.org/v3-flatcontainer/system.reflection.emit/4.3.0/system.reflection.emit.4.3.0.nupkg"; ··· 1624 }; 1625 } 1626 { 1627 - pname = "system.reflection.emit"; 1628 - version = "4.6.0"; 1629 src = fetchurl { 1630 - url = "https://api.nuget.org/v3-flatcontainer/system.reflection.emit/4.6.0/system.reflection.emit.4.6.0.nupkg"; 1631 - sha256 = "18h375q5bn9h7swxnk4krrxym1dxmi9bm26p89xps9ygrj4q6zqw"; 1632 }; 1633 } 1634 { ··· 1640 }; 1641 } 1642 { 1643 - pname = "system.reflection.emit.ilgeneration"; 1644 - version = "4.6.0"; 1645 src = fetchurl { 1646 - url = "https://api.nuget.org/v3-flatcontainer/system.reflection.emit.ilgeneration/4.6.0/system.reflection.emit.ilgeneration.4.6.0.nupkg"; 1647 - sha256 = "0jxc26k5q0rwrldi30bfbrfw4jh3kvribzwc8ryzr24kmhr3vv96"; 1648 }; 1649 } 1650 { ··· 1656 }; 1657 } 1658 { 1659 - pname = "system.reflection.emit.lightweight"; 1660 - version = "4.6.0"; 1661 src = fetchurl { 1662 - url = "https://api.nuget.org/v3-flatcontainer/system.reflection.emit.lightweight/4.6.0/system.reflection.emit.lightweight.4.6.0.nupkg"; 1663 - sha256 = "0hry2k6b7kicg4zxnq0hhn0ys52711pxy7l9v5sp7gvp9cicwpgp"; 1664 }; 1665 } 1666 { ··· 1705 } 1706 { 1707 pname = "system.reflection.typeextensions"; 1708 version = "4.3.0"; 1709 src = fetchurl { 1710 url = "https://api.nuget.org/v3-flatcontainer/system.reflection.typeextensions/4.3.0/system.reflection.typeextensions.4.3.0.nupkg"; ··· 1777 } 1778 { 1779 pname = "system.runtime.compilerservices.unsafe"; 1780 - version = "4.7.0"; 1781 - src = fetchurl { 1782 - url = "https://api.nuget.org/v3-flatcontainer/system.runtime.compilerservices.unsafe/4.7.0/system.runtime.compilerservices.unsafe.4.7.0.nupkg"; 1783 - sha256 = "16r6sn4czfjk8qhnz7bnqlyiaaszr0ihinb7mq9zzr1wba257r54"; 1784 - }; 1785 - } 1786 - { 1787 - pname = "system.runtime.compilerservices.unsafe"; 1788 version = "4.7.1"; 1789 src = fetchurl { 1790 url = "https://api.nuget.org/v3-flatcontainer/system.runtime.compilerservices.unsafe/4.7.1/system.runtime.compilerservices.unsafe.4.7.1.nupkg"; ··· 1800 }; 1801 } 1802 { 1803 pname = "system.runtime.extensions"; 1804 version = "4.1.0"; 1805 src = fetchurl { ··· 1877 src = fetchurl { 1878 url = "https://api.nuget.org/v3-flatcontainer/system.runtime.numerics/4.3.0/system.runtime.numerics.4.3.0.nupkg"; 1879 sha256 = "19rav39sr5dky7afygh309qamqqmi9kcwvz3i0c5700v0c5cg61z"; 1880 }; 1881 } 1882 { ··· 1904 }; 1905 } 1906 { 1907 pname = "system.security.cryptography.algorithms"; 1908 version = "4.3.0"; 1909 src = fetchurl { ··· 1993 } 1994 { 1995 pname = "system.security.cryptography.protecteddata"; 1996 version = "4.4.0"; 1997 src = fetchurl { 1998 url = "https://api.nuget.org/v3-flatcontainer/system.security.cryptography.protecteddata/4.4.0/system.security.cryptography.protecteddata.4.4.0.nupkg"; ··· 2040 }; 2041 } 2042 { 2043 pname = "system.security.principal.windows"; 2044 version = "4.5.0"; 2045 src = fetchurl { ··· 2097 } 2098 { 2099 pname = "system.text.encoding.extensions"; 2100 version = "4.3.0"; 2101 src = fetchurl { 2102 url = "https://api.nuget.org/v3-flatcontainer/system.text.encoding.extensions/4.3.0/system.text.encoding.extensions.4.3.0.nupkg"; ··· 2105 } 2106 { 2107 pname = "system.text.encodings.web"; 2108 - version = "4.7.0"; 2109 src = fetchurl { 2110 - url = "https://api.nuget.org/v3-flatcontainer/system.text.encodings.web/4.7.0/system.text.encodings.web.4.7.0.nupkg"; 2111 - sha256 = "0sd3bihfar5rwm6nib4lhyys306nkm02qvk6p6sgzmnlfmma2wn3"; 2112 }; 2113 } 2114 { 2115 pname = "system.text.encodings.web"; 2116 - version = "5.0.0"; 2117 src = fetchurl { 2118 - url = "https://api.nuget.org/v3-flatcontainer/system.text.encodings.web/5.0.0/system.text.encodings.web.5.0.0.nupkg"; 2119 - sha256 = "144pgy65jc3bkar7d4fg1c0rq6qmkx68gj9k1ldk97558w22v1r1"; 2120 }; 2121 } 2122 { 2123 pname = "system.text.json"; 2124 - version = "4.7.0"; 2125 src = fetchurl { 2126 - url = "https://api.nuget.org/v3-flatcontainer/system.text.json/4.7.0/system.text.json.4.7.0.nupkg"; 2127 - sha256 = "0fp3xrysccm5dkaac4yb51d793vywxks978kkl5x4db9gw29rfdr"; 2128 }; 2129 } 2130 { 2131 pname = "system.text.json"; 2132 - version = "5.0.0"; 2133 src = fetchurl { 2134 - url = "https://api.nuget.org/v3-flatcontainer/system.text.json/5.0.0/system.text.json.5.0.0.nupkg"; 2135 - sha256 = "1gpgl18z6qrgmqrikgh99xkjwzb1didrjp77bch7nrlra21gr4ks"; 2136 }; 2137 } 2138 { ··· 2160 }; 2161 } 2162 { 2163 pname = "system.threading.tasks"; 2164 version = "4.0.11"; 2165 src = fetchurl { ··· 2185 } 2186 { 2187 pname = "system.threading.tasks.extensions"; 2188 - version = "4.3.0"; 2189 src = fetchurl { 2190 - url = "https://api.nuget.org/v3-flatcontainer/system.threading.tasks.extensions/4.3.0/system.threading.tasks.extensions.4.3.0.nupkg"; 2191 - sha256 = "1xxcx2xh8jin360yjwm4x4cf5y3a2bwpn2ygkfkwkicz7zk50s2z"; 2192 }; 2193 } 2194 { 2195 pname = "system.threading.tasks.extensions"; 2196 - version = "4.5.2"; 2197 src = fetchurl { 2198 - url = "https://api.nuget.org/v3-flatcontainer/system.threading.tasks.extensions/4.5.2/system.threading.tasks.extensions.4.5.2.nupkg"; 2199 - sha256 = "1sh63dz0dymqcwmprp0nadm77b83vmm7lyllpv578c397bslb8hj"; 2200 }; 2201 } 2202 { ··· 2216 }; 2217 } 2218 { 2219 pname = "system.threading.timer"; 2220 version = "4.3.0"; 2221 src = fetchurl { ··· 2241 } 2242 { 2243 pname = "system.xml.readerwriter"; 2244 version = "4.3.0"; 2245 src = fetchurl { 2246 url = "https://api.nuget.org/v3-flatcontainer/system.xml.readerwriter/4.3.0/system.xml.readerwriter.4.3.0.nupkg"; 2247 sha256 = "0c47yllxifzmh8gq6rq6l36zzvw4kjvlszkqa9wq3fr59n0hl3s1"; 2248 }; 2249 } 2250 {
··· 1 { fetchurl }: [ 2 { 3 pname = "cake.scripting.abstractions"; 4 + version = "0.8.1"; 5 src = fetchurl { 6 + url = "https://api.nuget.org/v3-flatcontainer/cake.scripting.abstractions/0.8.1/cake.scripting.abstractions.0.8.1.nupkg"; 7 + sha256 = "0hrr7a3z1qddfm21pp21wr94q2f85w5kq1gavn5dylajiaqz505c"; 8 }; 9 } 10 { 11 pname = "cake.scripting.transport"; 12 + version = "0.8.1"; 13 src = fetchurl { 14 + url = "https://api.nuget.org/v3-flatcontainer/cake.scripting.transport/0.8.1/cake.scripting.transport.0.8.1.nupkg"; 15 + sha256 = "0pfpgyr62r74s9h4i3kdxb92d21x14pmvwa1bfk3v2s5qdb3fxj8"; 16 }; 17 } 18 { ··· 64 }; 65 } 66 { 67 + pname = "microsoft.aspnetcore.app.runtime.win-arm64"; 68 + version = "6.0.0"; 69 src = fetchurl { 70 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.app.runtime.win-arm64/6.0.0/microsoft.aspnetcore.app.runtime.win-arm64.6.0.0.nupkg"; 71 + sha256 = "0k2011d3jbfblfm4qspwjyv5pg1xqac408vblshgmf4sz7hlyzb3"; 72 }; 73 } 74 { 75 + pname = "microsoft.aspnetcore.app.runtime.win-x64"; 76 + version = "6.0.0"; 77 src = fetchurl { 78 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.app.runtime.win-x64/6.0.0/microsoft.aspnetcore.app.runtime.win-x64.6.0.0.nupkg"; 79 + sha256 = "1j8cn97swc67ly7ca7m05akczrswbg0gjsk7473vad6770ph79vm"; 80 }; 81 } 82 { 83 + pname = "microsoft.aspnetcore.app.runtime.win-x86"; 84 + version = "6.0.0"; 85 src = fetchurl { 86 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.app.runtime.win-x86/6.0.0/microsoft.aspnetcore.app.runtime.win-x86.6.0.0.nupkg"; 87 + sha256 = "0l64rphcqjwlbsxvfc8albzs494xyhl3bgw6ll68h3imhml193k5"; 88 }; 89 } 90 { ··· 104 }; 105 } 106 { 107 + pname = "microsoft.bcl.asyncinterfaces"; 108 + version = "6.0.0"; 109 + src = fetchurl { 110 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.bcl.asyncinterfaces/6.0.0/microsoft.bcl.asyncinterfaces.6.0.0.nupkg"; 111 + sha256 = "15gqy2m14fdlvy1g59207h5kisznm355kbw010gy19vh47z8gpz3"; 112 + }; 113 + } 114 + { 115 pname = "microsoft.build"; 116 + version = "17.0.0"; 117 src = fetchurl { 118 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.build/17.0.0/microsoft.build.17.0.0.nupkg"; 119 + sha256 = "166brl88y8xn9llc0hmn911k6y74gapmk1mrnfxbv73qj77jxsn1"; 120 }; 121 } 122 { 123 pname = "microsoft.build.framework"; 124 + version = "17.0.0"; 125 src = fetchurl { 126 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.build.framework/17.0.0/microsoft.build.framework.17.0.0.nupkg"; 127 + sha256 = "08c257dmfa6n41lq4fxb34khi8jbwlqfy1168x7h7zsbh3wss7yq"; 128 }; 129 } 130 { ··· 137 } 138 { 139 pname = "microsoft.build.tasks.core"; 140 + version = "17.0.0"; 141 src = fetchurl { 142 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.build.tasks.core/17.0.0/microsoft.build.tasks.core.17.0.0.nupkg"; 143 + sha256 = "087mn3rz5plnj7abjqk2di5is35mmfgmdjf0kcdn7jld8rbhk5hx"; 144 }; 145 } 146 { ··· 153 } 154 { 155 pname = "microsoft.build.utilities.core"; 156 + version = "17.0.0"; 157 src = fetchurl { 158 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.build.utilities.core/17.0.0/microsoft.build.utilities.core.17.0.0.nupkg"; 159 + sha256 = "0b7kylnvdqs81nmxdw7alwij8b19wm00iqicb9gkiklxjfyd8xav"; 160 }; 161 } 162 { ··· 177 } 178 { 179 pname = "microsoft.codeanalysis.common"; 180 + version = "4.0.0-6.21526.21"; 181 src = fetchurl { 182 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.common/4.0.0-6.21526.21/microsoft.codeanalysis.common.4.0.0-6.21526.21.nupkg"; 183 + sha256 = "0sv5hxadf9pbclssc9kq2cnvfkrnb0f2f4gmqhp2cy4xkr9fjn92"; 184 }; 185 } 186 { 187 pname = "microsoft.codeanalysis.csharp"; 188 + version = "4.0.0-6.21526.21"; 189 src = fetchurl { 190 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.csharp/4.0.0-6.21526.21/microsoft.codeanalysis.csharp.4.0.0-6.21526.21.nupkg"; 191 + sha256 = "0cgp6rjw0lj3hr19sg5xvb5g29amrnng6y23rzcv5knw7a6zavs7"; 192 }; 193 } 194 { 195 pname = "microsoft.codeanalysis.csharp.features"; 196 + version = "4.0.0-6.21526.21"; 197 src = fetchurl { 198 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.csharp.features/4.0.0-6.21526.21/microsoft.codeanalysis.csharp.features.4.0.0-6.21526.21.nupkg"; 199 + sha256 = "1a8xhrc4g2xlhmangcj0hv9872fw3zv1bcq52b54vczm6aym39pj"; 200 }; 201 } 202 { 203 pname = "microsoft.codeanalysis.csharp.scripting"; 204 + version = "4.0.0-6.21526.21"; 205 src = fetchurl { 206 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.csharp.scripting/4.0.0-6.21526.21/microsoft.codeanalysis.csharp.scripting.4.0.0-6.21526.21.nupkg"; 207 + sha256 = "1mlf75v2nabfi9hwx9q2d14mcxlz3n8gdkczpyvvyfh3f72pl4x3"; 208 }; 209 } 210 { 211 pname = "microsoft.codeanalysis.csharp.workspaces"; 212 + version = "4.0.0-6.21526.21"; 213 src = fetchurl { 214 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.csharp.workspaces/4.0.0-6.21526.21/microsoft.codeanalysis.csharp.workspaces.4.0.0-6.21526.21.nupkg"; 215 + sha256 = "04r6crnqml1c8mabsfrjzxc6bq6ndc9wwqwy8zsal80gwa54yj3v"; 216 }; 217 } 218 { 219 pname = "microsoft.codeanalysis.externalaccess.omnisharp"; 220 + version = "4.0.0-6.21526.21"; 221 src = fetchurl { 222 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.externalaccess.omnisharp/4.0.0-6.21526.21/microsoft.codeanalysis.externalaccess.omnisharp.4.0.0-6.21526.21.nupkg"; 223 + sha256 = "1f7wp5829wz8nrafqwlr74p3xgw86591cl2d9dnhs8cp9p6y5ah9"; 224 }; 225 } 226 { 227 pname = "microsoft.codeanalysis.externalaccess.omnisharp.csharp"; 228 + version = "4.0.0-6.21526.21"; 229 src = fetchurl { 230 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.externalaccess.omnisharp.csharp/4.0.0-6.21526.21/microsoft.codeanalysis.externalaccess.omnisharp.csharp.4.0.0-6.21526.21.nupkg"; 231 + sha256 = "1mc9h0svsqdrmr8bk1zgvjn1awc06mwhsp34q8grcb6n1w641hsp"; 232 }; 233 } 234 { 235 pname = "microsoft.codeanalysis.features"; 236 + version = "4.0.0-6.21526.21"; 237 src = fetchurl { 238 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.features/4.0.0-6.21526.21/microsoft.codeanalysis.features.4.0.0-6.21526.21.nupkg"; 239 + sha256 = "0bg93pzv89v0s74mn52ng4cz2ys2bk8z96b3ml06r9wa3piz08la"; 240 }; 241 } 242 { 243 pname = "microsoft.codeanalysis.scripting.common"; 244 + version = "4.0.0-6.21526.21"; 245 src = fetchurl { 246 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.scripting.common/4.0.0-6.21526.21/microsoft.codeanalysis.scripting.common.4.0.0-6.21526.21.nupkg"; 247 + sha256 = "0s5h10zj2qyfs0a09agdba06vc09pcq2wamr7pf8dx415vkjswyj"; 248 }; 249 } 250 { 251 pname = "microsoft.codeanalysis.workspaces.common"; 252 + version = "4.0.0-6.21526.21"; 253 src = fetchurl { 254 + url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/d1622942-d16f-48e5-bc83-96f4539e7601/nuget/v3/flat2/microsoft.codeanalysis.workspaces.common/4.0.0-6.21526.21/microsoft.codeanalysis.workspaces.common.4.0.0-6.21526.21.nupkg"; 255 + sha256 = "0kp2l72zpfydfqv5cm8wqvk86wpgh946j8sw9hvhm3xwzflchl7b"; 256 + }; 257 + } 258 + { 259 + pname = "microsoft.csharp"; 260 + version = "4.0.1"; 261 + src = fetchurl { 262 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.csharp/4.0.1/microsoft.csharp.4.0.1.nupkg"; 263 + sha256 = "0zxc0apx1gcx361jlq8smc9pfdgmyjh6hpka8dypc9w23nlsh6yj"; 264 }; 265 } 266 { ··· 289 } 290 { 291 pname = "microsoft.extensions.caching.abstractions"; 292 + version = "6.0.0"; 293 src = fetchurl { 294 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.caching.abstractions/6.0.0/microsoft.extensions.caching.abstractions.6.0.0.nupkg"; 295 + sha256 = "0qn30d3pg4rx1x2k525jj4x5g1fxm2v5m0ksz2dmk1gmqalpask8"; 296 }; 297 } 298 { 299 pname = "microsoft.extensions.caching.memory"; 300 + version = "6.0.0"; 301 src = fetchurl { 302 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.caching.memory/6.0.0/microsoft.extensions.caching.memory.6.0.0.nupkg"; 303 + sha256 = "0dq1x7962zsp926rj76i4akk4hsy7r5ldys8r4xsd78rq5f67rhq"; 304 }; 305 } 306 { ··· 313 } 314 { 315 pname = "microsoft.extensions.configuration"; 316 + version = "6.0.0"; 317 src = fetchurl { 318 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration/6.0.0/microsoft.extensions.configuration.6.0.0.nupkg"; 319 + sha256 = "1zdyai2rzngmsp3706d12qrdk315c1s3ja218fzb3nc3wd1vz0s8"; 320 }; 321 } 322 { ··· 329 } 330 { 331 pname = "microsoft.extensions.configuration.abstractions"; 332 + version = "6.0.0"; 333 src = fetchurl { 334 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.abstractions/6.0.0/microsoft.extensions.configuration.abstractions.6.0.0.nupkg"; 335 + sha256 = "0w6wwxv12nbc3sghvr68847wc9skkdgsicrz3fx4chgng1i3xy0j"; 336 }; 337 } 338 { ··· 345 } 346 { 347 pname = "microsoft.extensions.configuration.binder"; 348 + version = "6.0.0"; 349 src = fetchurl { 350 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.binder/6.0.0/microsoft.extensions.configuration.binder.6.0.0.nupkg"; 351 + sha256 = "15hb2rbzgri1fq8wpj4ll7czm3rxqzszs02phnhjnncp90m5rmpc"; 352 }; 353 } 354 { 355 pname = "microsoft.extensions.configuration.commandline"; 356 + version = "6.0.0"; 357 src = fetchurl { 358 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.commandline/6.0.0/microsoft.extensions.configuration.commandline.6.0.0.nupkg"; 359 + sha256 = "1hb4qrq9xdxzh2px515pv1vkz1jigwaxw1hfg9w8s6pgl8z04l4c"; 360 }; 361 } 362 { 363 pname = "microsoft.extensions.configuration.environmentvariables"; 364 + version = "6.0.0"; 365 src = fetchurl { 366 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.environmentvariables/6.0.0/microsoft.extensions.configuration.environmentvariables.6.0.0.nupkg"; 367 + sha256 = "19w2vxliz1xangbach3hkx72x2pxqhc9n9c3kc3l8mhicl8w6vdl"; 368 }; 369 } 370 { 371 pname = "microsoft.extensions.configuration.fileextensions"; 372 + version = "6.0.0"; 373 src = fetchurl { 374 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.fileextensions/6.0.0/microsoft.extensions.configuration.fileextensions.6.0.0.nupkg"; 375 + sha256 = "02nna984iwnyyz4jjh9vs405nlj0yk1g5vz4v2x30z2c89mx5f9w"; 376 }; 377 } 378 { 379 pname = "microsoft.extensions.configuration.json"; 380 + version = "6.0.0"; 381 src = fetchurl { 382 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.json/6.0.0/microsoft.extensions.configuration.json.6.0.0.nupkg"; 383 + sha256 = "1c6l5szma1pdn61ncq1kaqibg0dz65hbma2xl626a8d1m6awn353"; 384 }; 385 } 386 { ··· 393 } 394 { 395 pname = "microsoft.extensions.dependencyinjection"; 396 + version = "6.0.0"; 397 src = fetchurl { 398 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencyinjection/6.0.0/microsoft.extensions.dependencyinjection.6.0.0.nupkg"; 399 + sha256 = "1wlhb2vygzfdjbdzy7waxblmrx0q3pdcqvpapnpmq9fcx5m8r6w1"; 400 }; 401 } 402 { ··· 409 } 410 { 411 pname = "microsoft.extensions.dependencyinjection.abstractions"; 412 + version = "6.0.0"; 413 src = fetchurl { 414 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencyinjection.abstractions/6.0.0/microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg"; 415 + sha256 = "1vi67fw7q99gj7jd64gnnfr4d2c0ijpva7g9prps48ja6g91x6a9"; 416 }; 417 } 418 { 419 pname = "microsoft.extensions.dependencymodel"; 420 + version = "6.0.0"; 421 src = fetchurl { 422 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.dependencymodel/6.0.0/microsoft.extensions.dependencymodel.6.0.0.nupkg"; 423 + sha256 = "08c4fh1n8vsish1vh7h73mva34g0as4ph29s4lvps7kmjb4z64nl"; 424 }; 425 } 426 { 427 pname = "microsoft.extensions.fileproviders.abstractions"; 428 + version = "6.0.0"; 429 src = fetchurl { 430 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.fileproviders.abstractions/6.0.0/microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg"; 431 + sha256 = "1fbqmfapxdz77drcv1ndyj2ybvd2rv4c9i9pgiykcpl4fa6dc65q"; 432 }; 433 } 434 { 435 pname = "microsoft.extensions.fileproviders.physical"; 436 + version = "6.0.0"; 437 src = fetchurl { 438 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.fileproviders.physical/6.0.0/microsoft.extensions.fileproviders.physical.6.0.0.nupkg"; 439 + sha256 = "1ikc3kf325xig6njbi2aj5kmww4xlaq9lsrpc8v764fsm4x10474"; 440 }; 441 } 442 { 443 pname = "microsoft.extensions.filesystemglobbing"; 444 + version = "6.0.0"; 445 src = fetchurl { 446 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.filesystemglobbing/6.0.0/microsoft.extensions.filesystemglobbing.6.0.0.nupkg"; 447 + sha256 = "09gyyv4fwy9ys84z3aq4lm9y09b7bd1d4l4gfdinmg0z9678f1a4"; 448 }; 449 } 450 { ··· 457 } 458 { 459 pname = "microsoft.extensions.logging"; 460 + version = "6.0.0"; 461 src = fetchurl { 462 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging/6.0.0/microsoft.extensions.logging.6.0.0.nupkg"; 463 + sha256 = "0fd9jii3y3irfcwlsiww1y9npjgabzarh33rn566wpcz24lijszi"; 464 }; 465 } 466 { ··· 481 } 482 { 483 pname = "microsoft.extensions.logging.abstractions"; 484 + version = "6.0.0"; 485 src = fetchurl { 486 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.abstractions/6.0.0/microsoft.extensions.logging.abstractions.6.0.0.nupkg"; 487 + sha256 = "0b75fmins171zi6bfdcq1kcvyrirs8n91mknjnxy4c3ygi1rrnj0"; 488 }; 489 } 490 { 491 pname = "microsoft.extensions.logging.configuration"; 492 + version = "6.0.0"; 493 src = fetchurl { 494 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.configuration/6.0.0/microsoft.extensions.logging.configuration.6.0.0.nupkg"; 495 + sha256 = "0plx785hk61arjxf0m3ywy9hl5nii25raj4523n3ql7mmv6hxqr1"; 496 }; 497 } 498 { 499 pname = "microsoft.extensions.logging.console"; 500 + version = "6.0.0"; 501 src = fetchurl { 502 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.console/6.0.0/microsoft.extensions.logging.console.6.0.0.nupkg"; 503 + sha256 = "1383b0r33dzz0hrch9cqzzxr9vxr21qq0a5vnrpkfq71m2fky31d"; 504 }; 505 } 506 { ··· 513 } 514 { 515 pname = "microsoft.extensions.options"; 516 + version = "6.0.0"; 517 src = fetchurl { 518 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.options/6.0.0/microsoft.extensions.options.6.0.0.nupkg"; 519 + sha256 = "008pnk2p50i594ahz308v81a41mbjz9mwcarqhmrjpl2d20c868g"; 520 }; 521 } 522 { ··· 529 } 530 { 531 pname = "microsoft.extensions.options.configurationextensions"; 532 + version = "6.0.0"; 533 src = fetchurl { 534 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.options.configurationextensions/6.0.0/microsoft.extensions.options.configurationextensions.6.0.0.nupkg"; 535 + sha256 = "1k6q91vrhq1r74l4skibn7wzxzww9l74ibxb2i8gg4q6fzbiivba"; 536 }; 537 } 538 { ··· 545 } 546 { 547 pname = "microsoft.extensions.primitives"; 548 + version = "6.0.0"; 549 + src = fetchurl { 550 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.primitives/6.0.0/microsoft.extensions.primitives.6.0.0.nupkg"; 551 + sha256 = "1kjiw6s4yfz9gm7mx3wkhp06ghnbs95icj9hi505shz9rjrg42q2"; 552 + }; 553 + } 554 + { 555 + pname = "microsoft.netcore.app.host.win-arm64"; 556 + version = "6.0.0"; 557 + src = fetchurl { 558 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.app.host.win-arm64/6.0.0/microsoft.netcore.app.host.win-arm64.6.0.0.nupkg"; 559 + sha256 = "1cbqpyha0ys7f6pm90mxmr0f070imhqfnn9kgvi3hqszbv9fv808"; 560 + }; 561 + } 562 + { 563 + pname = "microsoft.netcore.app.host.win-x64"; 564 + version = "6.0.0"; 565 + src = fetchurl { 566 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.app.host.win-x64/6.0.0/microsoft.netcore.app.host.win-x64.6.0.0.nupkg"; 567 + sha256 = "1016ld3kg4dav2yxxh0i32cy0ixv7s0wl9czydbhkbs2d8669kfx"; 568 + }; 569 + } 570 + { 571 + pname = "microsoft.netcore.app.host.win-x86"; 572 + version = "6.0.0"; 573 + src = fetchurl { 574 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.app.host.win-x86/6.0.0/microsoft.netcore.app.host.win-x86.6.0.0.nupkg"; 575 + sha256 = "19fyd762mhgjw6zr65hms0gi32pg0iinsrzz88i00n75y6cmyg36"; 576 + }; 577 + } 578 + { 579 + pname = "microsoft.netcore.app.runtime.win-arm64"; 580 + version = "6.0.0"; 581 + src = fetchurl { 582 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.app.runtime.win-arm64/6.0.0/microsoft.netcore.app.runtime.win-arm64.6.0.0.nupkg"; 583 + sha256 = "0jd3h6q09v4wfam9dbl6yfkjy6b7y1wn87gqv2gzf088q9hfc1mc"; 584 + }; 585 + } 586 + { 587 + pname = "microsoft.netcore.app.runtime.win-x64"; 588 + version = "6.0.0"; 589 src = fetchurl { 590 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.app.runtime.win-x64/6.0.0/microsoft.netcore.app.runtime.win-x64.6.0.0.nupkg"; 591 + sha256 = "13x1nkigy3nhbr8gxalij7krmzxpciyq4i8k7jdy9278zs1lm5a6"; 592 }; 593 } 594 { 595 + pname = "microsoft.netcore.app.runtime.win-x86"; 596 + version = "6.0.0"; 597 src = fetchurl { 598 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.app.runtime.win-x86/6.0.0/microsoft.netcore.app.runtime.win-x86.6.0.0.nupkg"; 599 + sha256 = "0p0y3njb618l4ihbsh033jhd8yn1sp8gfhwn722my2166saisjg5"; 600 }; 601 } 602 { ··· 629 src = fetchurl { 630 url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.platforms/2.1.2/microsoft.netcore.platforms.2.1.2.nupkg"; 631 sha256 = "1507hnpr9my3z4w1r6xk5n0s1j3y6a2c2cnynj76za7cphxi1141"; 632 + }; 633 + } 634 + { 635 + pname = "microsoft.netcore.platforms"; 636 + version = "3.0.0"; 637 + src = fetchurl { 638 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.netcore.platforms/3.0.0/microsoft.netcore.platforms.3.0.0.nupkg"; 639 + sha256 = "1bk8r4r3ihmi6322jmcag14jmw11mjqys202azqjzglcx59pxh51"; 640 }; 641 } 642 { ··· 705 } 706 { 707 pname = "microsoft.testplatform.objectmodel"; 708 + version = "17.0.0"; 709 src = fetchurl { 710 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.testplatform.objectmodel/17.0.0/microsoft.testplatform.objectmodel.17.0.0.nupkg"; 711 + sha256 = "1bh5scbvl6ndldqv20sl34h4y257irm9ziv2wyfc3hka6912fhn7"; 712 }; 713 } 714 { 715 pname = "microsoft.testplatform.translationlayer"; 716 + version = "17.0.0"; 717 src = fetchurl { 718 + url = "https://api.nuget.org/v3-flatcontainer/microsoft.testplatform.translationlayer/17.0.0/microsoft.testplatform.translationlayer.17.0.0.nupkg"; 719 + sha256 = "08c6d9aiicpj8hsjb77rz7d2vmw7ivkcc0l1vgdgxddzjhjpy0pi"; 720 }; 721 } 722 { ··· 817 } 818 { 819 pname = "netstandard.library"; 820 + version = "2.0.0"; 821 + src = fetchurl { 822 + url = "https://api.nuget.org/v3-flatcontainer/netstandard.library/2.0.0/netstandard.library.2.0.0.nupkg"; 823 + sha256 = "1bc4ba8ahgk15m8k4nd7x406nhi0kwqzbgjk2dmw52ss553xz7iy"; 824 + }; 825 + } 826 + { 827 + pname = "netstandard.library"; 828 version = "2.0.3"; 829 src = fetchurl { 830 url = "https://api.nuget.org/v3-flatcontainer/netstandard.library/2.0.3/netstandard.library.2.0.3.nupkg"; ··· 841 } 842 { 843 pname = "newtonsoft.json"; 844 + version = "13.0.1"; 845 src = fetchurl { 846 + url = "https://api.nuget.org/v3-flatcontainer/newtonsoft.json/13.0.1/newtonsoft.json.13.0.1.nupkg"; 847 + sha256 = "0fijg0w6iwap8gvzyjnndds0q4b8anwxxvik7y8vgq97dram4srb"; 848 }; 849 } 850 { ··· 857 } 858 { 859 pname = "nuget.common"; 860 version = "5.2.0"; 861 src = fetchurl { 862 url = "https://api.nuget.org/v3-flatcontainer/nuget.common/5.2.0/nuget.common.5.2.0.nupkg"; ··· 864 }; 865 } 866 { 867 + pname = "nuget.common"; 868 + version = "6.0.0"; 869 src = fetchurl { 870 + url = "https://api.nuget.org/v3-flatcontainer/nuget.common/6.0.0/nuget.common.6.0.0.nupkg"; 871 + sha256 = "0vbvmx2zzg54fv6617afi3z49cala70qj7jfxqnldjbc1z2c4b7r"; 872 }; 873 } 874 { ··· 880 }; 881 } 882 { 883 + pname = "nuget.configuration"; 884 + version = "6.0.0"; 885 src = fetchurl { 886 + url = "https://api.nuget.org/v3-flatcontainer/nuget.configuration/6.0.0/nuget.configuration.6.0.0.nupkg"; 887 + sha256 = "1qnrahn4rbb55ra4zg9c947kbm9wdiv344f12c3b4c5i7bfmivx3"; 888 }; 889 } 890 { ··· 896 }; 897 } 898 { 899 + pname = "nuget.dependencyresolver.core"; 900 + version = "6.0.0"; 901 src = fetchurl { 902 + url = "https://api.nuget.org/v3-flatcontainer/nuget.dependencyresolver.core/6.0.0/nuget.dependencyresolver.core.6.0.0.nupkg"; 903 + sha256 = "04w7wbfsb647apqrrzx3gj2jjlg09wdzmxj62bx43ngr34i4q83n"; 904 }; 905 } 906 { 907 pname = "nuget.frameworks"; 908 + version = "5.0.0"; 909 src = fetchurl { 910 + url = "https://api.nuget.org/v3-flatcontainer/nuget.frameworks/5.0.0/nuget.frameworks.5.0.0.nupkg"; 911 + sha256 = "18ijvmj13cwjdrrm52c8fpq021531zaz4mj4b4zapxaqzzxf2qjr"; 912 }; 913 } 914 { ··· 920 }; 921 } 922 { 923 + pname = "nuget.frameworks"; 924 + version = "6.0.0"; 925 src = fetchurl { 926 + url = "https://api.nuget.org/v3-flatcontainer/nuget.frameworks/6.0.0/nuget.frameworks.6.0.0.nupkg"; 927 + sha256 = "11p6mhh36s3vmnylfzw125fqivjk1xj75bvcxdav8n4sbk7d3gqs"; 928 }; 929 } 930 { ··· 936 }; 937 } 938 { 939 + pname = "nuget.librarymodel"; 940 + version = "6.0.0"; 941 src = fetchurl { 942 + url = "https://api.nuget.org/v3-flatcontainer/nuget.librarymodel/6.0.0/nuget.librarymodel.6.0.0.nupkg"; 943 + sha256 = "0pg4m6v2j5vvld7s57fvx28ix7wlah6dakhi55qpavmkmnzp6g3f"; 944 }; 945 } 946 { ··· 952 }; 953 } 954 { 955 + pname = "nuget.packaging"; 956 + version = "6.0.0"; 957 src = fetchurl { 958 + url = "https://api.nuget.org/v3-flatcontainer/nuget.packaging/6.0.0/nuget.packaging.6.0.0.nupkg"; 959 + sha256 = "0vlcda74h6gq3q569kbbz4n3d26vihxaldvvi2md3phqf8jpvhjb"; 960 }; 961 } 962 { 963 + pname = "nuget.packaging.core"; 964 + version = "6.0.0"; 965 src = fetchurl { 966 + url = "https://api.nuget.org/v3-flatcontainer/nuget.packaging.core/6.0.0/nuget.packaging.core.6.0.0.nupkg"; 967 + sha256 = "1kk7rf7cavdicxb4bmwcgwykr53nrk38m6r49hvs85jhhvg9jmyf"; 968 }; 969 } 970 { ··· 976 }; 977 } 978 { 979 + pname = "nuget.projectmodel"; 980 + version = "6.0.0"; 981 src = fetchurl { 982 + url = "https://api.nuget.org/v3-flatcontainer/nuget.projectmodel/6.0.0/nuget.projectmodel.6.0.0.nupkg"; 983 + sha256 = "1fldxlw88jqgy0cfgfa7drqpxf909kfchcvk4nxj7vyhza2q715y"; 984 }; 985 } 986 { ··· 992 }; 993 } 994 { 995 + pname = "nuget.protocol"; 996 + version = "6.0.0"; 997 src = fetchurl { 998 + url = "https://api.nuget.org/v3-flatcontainer/nuget.protocol/6.0.0/nuget.protocol.6.0.0.nupkg"; 999 + sha256 = "16rs9hfra4bly8jp0lxsg0gbpi9wvxh7nrxrdkbjm01vb0azw823"; 1000 }; 1001 } 1002 { ··· 1005 src = fetchurl { 1006 url = "https://api.nuget.org/v3-flatcontainer/nuget.versioning/5.2.0/nuget.versioning.5.2.0.nupkg"; 1007 sha256 = "08ay8bhddj9yiq6h9lk814l65fpx5gh1iprkl7pcp78g57a6k45k"; 1008 + }; 1009 + } 1010 + { 1011 + pname = "nuget.versioning"; 1012 + version = "6.0.0"; 1013 + src = fetchurl { 1014 + url = "https://api.nuget.org/v3-flatcontainer/nuget.versioning/6.0.0/nuget.versioning.6.0.0.nupkg"; 1015 + sha256 = "0xxrz0p9vd2ax8hcrdxcp3h6gv8qcy6mngp49dvg1ijjjr1jb85k"; 1016 }; 1017 } 1018 { ··· 1056 }; 1057 } 1058 { 1059 + pname = "runtime.any.system.collections"; 1060 + version = "4.3.0"; 1061 + src = fetchurl { 1062 + url = "https://api.nuget.org/v3-flatcontainer/runtime.any.system.collections/4.3.0/runtime.any.system.collections.4.3.0.nupkg"; 1063 + sha256 = "0bv5qgm6vr47ynxqbnkc7i797fdi8gbjjxii173syrx14nmrkwg0"; 1064 + }; 1065 + } 1066 + { 1067 + pname = "runtime.any.system.diagnostics.tools"; 1068 + version = "4.3.0"; 1069 + src = fetchurl { 1070 + url = "https://api.nuget.org/v3-flatcontainer/runtime.any.system.diagnostics.tools/4.3.0/runtime.any.system.diagnostics.tools.4.3.0.nupkg"; 1071 + sha256 = "1wl76vk12zhdh66vmagni66h5xbhgqq7zkdpgw21jhxhvlbcl8pk"; 1072 + }; 1073 + } 1074 + { 1075 + pname = "runtime.any.system.diagnostics.tracing"; 1076 + version = "4.3.0"; 1077 + src = fetchurl { 1078 + url = "https://api.nuget.org/v3-flatcontainer/runtime.any.system.diagnostics.tracing/4.3.0/runtime.any.system.diagnostics.tracing.4.3.0.nupkg"; 1079 + sha256 = "00j6nv2xgmd3bi347k00m7wr542wjlig53rmj28pmw7ddcn97jbn"; 1080 + }; 1081 + } 1082 + { 1083 + pname = "runtime.any.system.globalization"; 1084 + version = "4.3.0"; 1085 + src = fetchurl { 1086 + url = "https://api.nuget.org/v3-flatcontainer/runtime.any.system.globalization/4.3.0/runtime.any.system.globalization.4.3.0.nupkg"; 1087 + sha256 = "1daqf33hssad94lamzg01y49xwndy2q97i2lrb7mgn28656qia1x"; 1088 + }; 1089 + } 1090 + { 1091 + pname = "runtime.any.system.globalization.calendars"; 1092 + version = "4.3.0"; 1093 + src = fetchurl { 1094 + url = "https://api.nuget.org/v3-flatcontainer/runtime.any.system.globalization.calendars/4.3.0/runtime.any.system.globalization.calendars.4.3.0.nupkg"; 1095 + sha256 = "1ghhhk5psqxcg6w88sxkqrc35bxcz27zbqm2y5p5298pv3v7g201"; 1096 + }; 1097 + } 1098 + { 1099 + pname = "runtime.any.system.io"; 1100 + version = "4.3.0"; 1101 + src = fetchurl { 1102 + url = "https://api.nuget.org/v3-flatcontainer/runtime.any.system.io/4.3.0/runtime.any.system.io.4.3.0.nupkg"; 1103 + sha256 = "0l8xz8zn46w4d10bcn3l4yyn4vhb3lrj2zw8llvz7jk14k4zps5x"; 1104 + }; 1105 + } 1106 + { 1107 + pname = "runtime.any.system.reflection"; 1108 + version = "4.3.0"; 1109 + src = fetchurl { 1110 + url = "https://api.nuget.org/v3-flatcontainer/runtime.any.system.reflection/4.3.0/runtime.any.system.reflection.4.3.0.nupkg"; 1111 + sha256 = "02c9h3y35pylc0zfq3wcsvc5nqci95nrkq0mszifc0sjx7xrzkly"; 1112 + }; 1113 + } 1114 + { 1115 + pname = "runtime.any.system.reflection.extensions"; 1116 + version = "4.3.0"; 1117 + src = fetchurl { 1118 + url = "https://api.nuget.org/v3-flatcontainer/runtime.any.system.reflection.extensions/4.3.0/runtime.any.system.reflection.extensions.4.3.0.nupkg"; 1119 + sha256 = "0zyri97dfc5vyaz9ba65hjj1zbcrzaffhsdlpxc9bh09wy22fq33"; 1120 + }; 1121 + } 1122 + { 1123 + pname = "runtime.any.system.reflection.primitives"; 1124 + version = "4.3.0"; 1125 + src = fetchurl { 1126 + url = "https://api.nuget.org/v3-flatcontainer/runtime.any.system.reflection.primitives/4.3.0/runtime.any.system.reflection.primitives.4.3.0.nupkg"; 1127 + sha256 = "0x1mm8c6iy8rlxm8w9vqw7gb7s1ljadrn049fmf70cyh42vdfhrf"; 1128 + }; 1129 + } 1130 + { 1131 + pname = "runtime.any.system.resources.resourcemanager"; 1132 + version = "4.3.0"; 1133 + src = fetchurl { 1134 + url = "https://api.nuget.org/v3-flatcontainer/runtime.any.system.resources.resourcemanager/4.3.0/runtime.any.system.resources.resourcemanager.4.3.0.nupkg"; 1135 + sha256 = "03kickal0iiby82wa5flar18kyv82s9s6d4xhk5h4bi5kfcyfjzl"; 1136 + }; 1137 + } 1138 + { 1139 + pname = "runtime.any.system.runtime"; 1140 + version = "4.3.0"; 1141 + src = fetchurl { 1142 + url = "https://api.nuget.org/v3-flatcontainer/runtime.any.system.runtime/4.3.0/runtime.any.system.runtime.4.3.0.nupkg"; 1143 + sha256 = "1cqh1sv3h5j7ixyb7axxbdkqx6cxy00p4np4j91kpm492rf4s25b"; 1144 + }; 1145 + } 1146 + { 1147 + pname = "runtime.any.system.runtime.handles"; 1148 + version = "4.3.0"; 1149 + src = fetchurl { 1150 + url = "https://api.nuget.org/v3-flatcontainer/runtime.any.system.runtime.handles/4.3.0/runtime.any.system.runtime.handles.4.3.0.nupkg"; 1151 + sha256 = "0bh5bi25nk9w9xi8z23ws45q5yia6k7dg3i4axhfqlnj145l011x"; 1152 + }; 1153 + } 1154 + { 1155 + pname = "runtime.any.system.runtime.interopservices"; 1156 + version = "4.3.0"; 1157 + src = fetchurl { 1158 + url = "https://api.nuget.org/v3-flatcontainer/runtime.any.system.runtime.interopservices/4.3.0/runtime.any.system.runtime.interopservices.4.3.0.nupkg"; 1159 + sha256 = "0c3g3g3jmhlhw4klrc86ka9fjbl7i59ds1fadsb2l8nqf8z3kb19"; 1160 + }; 1161 + } 1162 + { 1163 + pname = "runtime.any.system.text.encoding"; 1164 + version = "4.3.0"; 1165 + src = fetchurl { 1166 + url = "https://api.nuget.org/v3-flatcontainer/runtime.any.system.text.encoding/4.3.0/runtime.any.system.text.encoding.4.3.0.nupkg"; 1167 + sha256 = "0aqqi1v4wx51h51mk956y783wzags13wa7mgqyclacmsmpv02ps3"; 1168 + }; 1169 + } 1170 + { 1171 + pname = "runtime.any.system.text.encoding.extensions"; 1172 + version = "4.3.0"; 1173 + src = fetchurl { 1174 + url = "https://api.nuget.org/v3-flatcontainer/runtime.any.system.text.encoding.extensions/4.3.0/runtime.any.system.text.encoding.extensions.4.3.0.nupkg"; 1175 + sha256 = "0lqhgqi0i8194ryqq6v2gqx0fb86db2gqknbm0aq31wb378j7ip8"; 1176 + }; 1177 + } 1178 + { 1179 + pname = "runtime.any.system.threading.tasks"; 1180 + version = "4.3.0"; 1181 + src = fetchurl { 1182 + url = "https://api.nuget.org/v3-flatcontainer/runtime.any.system.threading.tasks/4.3.0/runtime.any.system.threading.tasks.4.3.0.nupkg"; 1183 + sha256 = "03mnvkhskbzxddz4hm113zsch1jyzh2cs450dk3rgfjp8crlw1va"; 1184 + }; 1185 + } 1186 + { 1187 + pname = "runtime.any.system.threading.timer"; 1188 + version = "4.3.0"; 1189 + src = fetchurl { 1190 + url = "https://api.nuget.org/v3-flatcontainer/runtime.any.system.threading.timer/4.3.0/runtime.any.system.threading.timer.4.3.0.nupkg"; 1191 + sha256 = "0aw4phrhwqz9m61r79vyfl5la64bjxj8l34qnrcwb28v49fg2086"; 1192 + }; 1193 + } 1194 + { 1195 pname = "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl"; 1196 version = "4.3.0"; 1197 src = fetchurl { ··· 1320 }; 1321 } 1322 { 1323 + pname = "runtime.win10-arm64.runtime.native.system.io.compression"; 1324 + version = "4.3.0"; 1325 + src = fetchurl { 1326 + url = "https://api.nuget.org/v3-flatcontainer/runtime.win10-arm64.runtime.native.system.io.compression/4.3.0/runtime.win10-arm64.runtime.native.system.io.compression.4.3.0.nupkg"; 1327 + sha256 = "1jrmrmqscn8cn2n3piar8n85gfsra7vlai23w9ldzprh0y4dw3v1"; 1328 + }; 1329 + } 1330 + { 1331 + pname = "runtime.win7.system.private.uri"; 1332 + version = "4.3.0"; 1333 + src = fetchurl { 1334 + url = "https://api.nuget.org/v3-flatcontainer/runtime.win7.system.private.uri/4.3.0/runtime.win7.system.private.uri.4.3.0.nupkg"; 1335 + sha256 = "0bxkcmklp556dc43bra8ngc8wymcbbflcydi0xwq0j22gm66xf2m"; 1336 + }; 1337 + } 1338 + { 1339 + pname = "runtime.win7-x64.runtime.native.system.io.compression"; 1340 + version = "4.3.0"; 1341 + src = fetchurl { 1342 + url = "https://api.nuget.org/v3-flatcontainer/runtime.win7-x64.runtime.native.system.io.compression/4.3.0/runtime.win7-x64.runtime.native.system.io.compression.4.3.0.nupkg"; 1343 + sha256 = "1dmbmksnxg12fk2p0k7rzy16448mddr2sfrnqs0rhhrzl0z22zi5"; 1344 + }; 1345 + } 1346 + { 1347 + pname = "runtime.win7-x86.runtime.native.system.io.compression"; 1348 + version = "4.3.0"; 1349 + src = fetchurl { 1350 + url = "https://api.nuget.org/v3-flatcontainer/runtime.win7-x86.runtime.native.system.io.compression/4.3.0/runtime.win7-x86.runtime.native.system.io.compression.4.3.0.nupkg"; 1351 + sha256 = "08ppln62lcq3bz2kyxqyvh98payd5a7w8fzmb53mznkcfv32n55b"; 1352 + }; 1353 + } 1354 + { 1355 + pname = "runtime.win.microsoft.win32.primitives"; 1356 + version = "4.3.0"; 1357 + src = fetchurl { 1358 + url = "https://api.nuget.org/v3-flatcontainer/runtime.win.microsoft.win32.primitives/4.3.0/runtime.win.microsoft.win32.primitives.4.3.0.nupkg"; 1359 + sha256 = "0k1h8nnp1s0p8rjwgjyj1387cc1yycv0k22igxc963lqdzrx2z36"; 1360 + }; 1361 + } 1362 + { 1363 + pname = "runtime.win.system.console"; 1364 + version = "4.3.0"; 1365 + src = fetchurl { 1366 + url = "https://api.nuget.org/v3-flatcontainer/runtime.win.system.console/4.3.0/runtime.win.system.console.4.3.0.nupkg"; 1367 + sha256 = "0x2yajfrbc5zc6g7nmlr44xpjk6p1hxjq47jn3xki5j7i33zw9jc"; 1368 + }; 1369 + } 1370 + { 1371 + pname = "runtime.win.system.diagnostics.debug"; 1372 + version = "4.3.0"; 1373 + src = fetchurl { 1374 + url = "https://api.nuget.org/v3-flatcontainer/runtime.win.system.diagnostics.debug/4.3.0/runtime.win.system.diagnostics.debug.4.3.0.nupkg"; 1375 + sha256 = "16fbn4bcynad1ygdq0yk1wmckvs8jvrrf104xa5dc2hlc8y3x58f"; 1376 + }; 1377 + } 1378 + { 1379 + pname = "runtime.win.system.io.filesystem"; 1380 + version = "4.3.0"; 1381 + src = fetchurl { 1382 + url = "https://api.nuget.org/v3-flatcontainer/runtime.win.system.io.filesystem/4.3.0/runtime.win.system.io.filesystem.4.3.0.nupkg"; 1383 + sha256 = "1c01nklbxywszsbfaxc76hsz7gdxac3jkphrywfkdsi3v4bwd6g8"; 1384 + }; 1385 + } 1386 + { 1387 + pname = "runtime.win.system.net.primitives"; 1388 + version = "4.3.0"; 1389 + src = fetchurl { 1390 + url = "https://api.nuget.org/v3-flatcontainer/runtime.win.system.net.primitives/4.3.0/runtime.win.system.net.primitives.4.3.0.nupkg"; 1391 + sha256 = "1dixh195bi7473n17hspll6i562gghdz9m4jk8d4kzi1mlzjk9cf"; 1392 + }; 1393 + } 1394 + { 1395 + pname = "runtime.win.system.net.sockets"; 1396 + version = "4.3.0"; 1397 + src = fetchurl { 1398 + url = "https://api.nuget.org/v3-flatcontainer/runtime.win.system.net.sockets/4.3.0/runtime.win.system.net.sockets.4.3.0.nupkg"; 1399 + sha256 = "0lr3zki831vs6qhk5wckv2b9qbfk9rcj0ds2926qvj1b9y9m6sck"; 1400 + }; 1401 + } 1402 + { 1403 + pname = "runtime.win.system.runtime.extensions"; 1404 + version = "4.3.0"; 1405 + src = fetchurl { 1406 + url = "https://api.nuget.org/v3-flatcontainer/runtime.win.system.runtime.extensions/4.3.0/runtime.win.system.runtime.extensions.4.3.0.nupkg"; 1407 + sha256 = "1700famsxndccfbcdz9q14qb20p49lax67mqwpgy4gx3vja1yczr"; 1408 + }; 1409 + } 1410 + { 1411 pname = "sqlitepclraw.bundle_green"; 1412 version = "2.0.4"; 1413 src = fetchurl { ··· 1473 } 1474 { 1475 pname = "system.buffers"; 1476 version = "4.5.1"; 1477 src = fetchurl { 1478 url = "https://api.nuget.org/v3-flatcontainer/system.buffers/4.5.1/system.buffers.4.5.1.nupkg"; ··· 1536 }; 1537 } 1538 { 1539 + pname = "system.componentmodel.annotations"; 1540 + version = "5.0.0"; 1541 + src = fetchurl { 1542 + url = "https://api.nuget.org/v3-flatcontainer/system.componentmodel.annotations/5.0.0/system.componentmodel.annotations.5.0.0.nupkg"; 1543 + sha256 = "021h7x98lblq9avm1bgpa4i31c2kgsa7zn4sqhxf39g087ar756j"; 1544 + }; 1545 + } 1546 + { 1547 pname = "system.componentmodel.composition"; 1548 version = "4.5.0"; 1549 src = fetchurl { ··· 1617 } 1618 { 1619 pname = "system.diagnostics.debug"; 1620 + version = "4.0.11"; 1621 + src = fetchurl { 1622 + url = "https://api.nuget.org/v3-flatcontainer/system.diagnostics.debug/4.0.11/system.diagnostics.debug.4.0.11.nupkg"; 1623 + sha256 = "0gmjghrqmlgzxivd2xl50ncbglb7ljzb66rlx8ws6dv8jm0d5siz"; 1624 + }; 1625 + } 1626 + { 1627 + pname = "system.diagnostics.debug"; 1628 version = "4.3.0"; 1629 src = fetchurl { 1630 url = "https://api.nuget.org/v3-flatcontainer/system.diagnostics.debug/4.3.0/system.diagnostics.debug.4.3.0.nupkg"; ··· 1641 } 1642 { 1643 pname = "system.diagnostics.diagnosticsource"; 1644 + version = "6.0.0"; 1645 src = fetchurl { 1646 + url = "https://api.nuget.org/v3-flatcontainer/system.diagnostics.diagnosticsource/6.0.0/system.diagnostics.diagnosticsource.6.0.0.nupkg"; 1647 + sha256 = "0rrihs9lnb1h6x4h0hn6kgfnh58qq7hx8qq99gh6fayx4dcnx3s5"; 1648 + }; 1649 + } 1650 + { 1651 + pname = "system.diagnostics.process"; 1652 + version = "4.3.0"; 1653 + src = fetchurl { 1654 + url = "https://api.nuget.org/v3-flatcontainer/system.diagnostics.process/4.3.0/system.diagnostics.process.4.3.0.nupkg"; 1655 + sha256 = "0g4prsbkygq8m21naqmcp70f24a1ksyix3dihb1r1f71lpi3cfj7"; 1656 + }; 1657 + } 1658 + { 1659 + pname = "system.diagnostics.tools"; 1660 + version = "4.0.1"; 1661 + src = fetchurl { 1662 + url = "https://api.nuget.org/v3-flatcontainer/system.diagnostics.tools/4.0.1/system.diagnostics.tools.4.0.1.nupkg"; 1663 + sha256 = "19cknvg07yhakcvpxg3cxa0bwadplin6kyxd8mpjjpwnp56nl85x"; 1664 }; 1665 } 1666 { ··· 1685 src = fetchurl { 1686 url = "https://api.nuget.org/v3-flatcontainer/system.drawing.common/4.7.0/system.drawing.common.4.7.0.nupkg"; 1687 sha256 = "0yfw7cpl54mgfcylvlpvrl0c8r1b0zca6p7r3rcwkvqy23xqcyhg"; 1688 + }; 1689 + } 1690 + { 1691 + pname = "system.dynamic.runtime"; 1692 + version = "4.3.0"; 1693 + src = fetchurl { 1694 + url = "https://api.nuget.org/v3-flatcontainer/system.dynamic.runtime/4.3.0/system.dynamic.runtime.4.3.0.nupkg"; 1695 + sha256 = "1d951hrvrpndk7insiag80qxjbf2y0y39y8h5hnq9612ws661glk"; 1696 }; 1697 } 1698 { ··· 1769 } 1770 { 1771 pname = "system.io.filesystem"; 1772 + version = "4.0.1"; 1773 + src = fetchurl { 1774 + url = "https://api.nuget.org/v3-flatcontainer/system.io.filesystem/4.0.1/system.io.filesystem.4.0.1.nupkg"; 1775 + sha256 = "0kgfpw6w4djqra3w5crrg8xivbanh1w9dh3qapb28q060wb9flp1"; 1776 + }; 1777 + } 1778 + { 1779 + pname = "system.io.filesystem"; 1780 version = "4.3.0"; 1781 src = fetchurl { 1782 url = "https://api.nuget.org/v3-flatcontainer/system.io.filesystem/4.3.0/system.io.filesystem.4.3.0.nupkg"; 1783 sha256 = "0z2dfrbra9i6y16mm9v1v6k47f0fm617vlb7s5iybjjsz6g1ilmw"; 1784 + }; 1785 + } 1786 + { 1787 + pname = "system.io.filesystem.primitives"; 1788 + version = "4.0.1"; 1789 + src = fetchurl { 1790 + url = "https://api.nuget.org/v3-flatcontainer/system.io.filesystem.primitives/4.0.1/system.io.filesystem.primitives.4.0.1.nupkg"; 1791 + sha256 = "1s0mniajj3lvbyf7vfb5shp4ink5yibsx945k6lvxa96r8la1612"; 1792 }; 1793 } 1794 { ··· 1817 } 1818 { 1819 pname = "system.linq"; 1820 + version = "4.1.0"; 1821 + src = fetchurl { 1822 + url = "https://api.nuget.org/v3-flatcontainer/system.linq/4.1.0/system.linq.4.1.0.nupkg"; 1823 + sha256 = "1ppg83svb39hj4hpp5k7kcryzrf3sfnm08vxd5sm2drrijsla2k5"; 1824 + }; 1825 + } 1826 + { 1827 + pname = "system.linq"; 1828 version = "4.3.0"; 1829 src = fetchurl { 1830 url = "https://api.nuget.org/v3-flatcontainer/system.linq/4.3.0/system.linq.4.3.0.nupkg"; 1831 sha256 = "1w0gmba695rbr80l1k2h4mrwzbzsyfl2z4klmpbsvsg5pm4a56s7"; 1832 + }; 1833 + } 1834 + { 1835 + pname = "system.linq.expressions"; 1836 + version = "4.1.0"; 1837 + src = fetchurl { 1838 + url = "https://api.nuget.org/v3-flatcontainer/system.linq.expressions/4.1.0/system.linq.expressions.4.1.0.nupkg"; 1839 + sha256 = "1gpdxl6ip06cnab7n3zlcg6mqp7kknf73s8wjinzi4p0apw82fpg"; 1840 }; 1841 } 1842 { ··· 1872 }; 1873 } 1874 { 1875 + pname = "system.net.http"; 1876 + version = "4.3.4"; 1877 + src = fetchurl { 1878 + url = "https://api.nuget.org/v3-flatcontainer/system.net.http/4.3.4/system.net.http.4.3.4.nupkg"; 1879 + sha256 = "0kdp31b8819v88l719j6my0yas6myv9d1viql3qz5577mv819jhl"; 1880 + }; 1881 + } 1882 + { 1883 + pname = "system.net.nameresolution"; 1884 + version = "4.3.0"; 1885 + src = fetchurl { 1886 + url = "https://api.nuget.org/v3-flatcontainer/system.net.nameresolution/4.3.0/system.net.nameresolution.4.3.0.nupkg"; 1887 + sha256 = "15r75pwc0rm3vvwsn8rvm2krf929mjfwliv0mpicjnii24470rkq"; 1888 + }; 1889 + } 1890 + { 1891 pname = "system.net.primitives"; 1892 version = "4.3.0"; 1893 src = fetchurl { ··· 1929 } 1930 { 1931 pname = "system.objectmodel"; 1932 + version = "4.0.12"; 1933 + src = fetchurl { 1934 + url = "https://api.nuget.org/v3-flatcontainer/system.objectmodel/4.0.12/system.objectmodel.4.0.12.nupkg"; 1935 + sha256 = "1sybkfi60a4588xn34nd9a58png36i0xr4y4v4kqpg8wlvy5krrj"; 1936 + }; 1937 + } 1938 + { 1939 + pname = "system.objectmodel"; 1940 version = "4.3.0"; 1941 src = fetchurl { 1942 url = "https://api.nuget.org/v3-flatcontainer/system.objectmodel/4.3.0/system.objectmodel.4.3.0.nupkg"; 1943 sha256 = "191p63zy5rpqx7dnrb3h7prvgixmk168fhvvkkvhlazncf8r3nc2"; 1944 + }; 1945 + } 1946 + { 1947 + pname = "system.private.uri"; 1948 + version = "4.3.0"; 1949 + src = fetchurl { 1950 + url = "https://api.nuget.org/v3-flatcontainer/system.private.uri/4.3.0/system.private.uri.4.3.0.nupkg"; 1951 + sha256 = "04r1lkdnsznin0fj4ya1zikxiqr0h6r6a1ww2dsm60gqhdrf0mvx"; 1952 }; 1953 } 1954 { ··· 1985 } 1986 { 1987 pname = "system.reflection.emit"; 1988 + version = "4.0.1"; 1989 + src = fetchurl { 1990 + url = "https://api.nuget.org/v3-flatcontainer/system.reflection.emit/4.0.1/system.reflection.emit.4.0.1.nupkg"; 1991 + sha256 = "0ydqcsvh6smi41gyaakglnv252625hf29f7kywy2c70nhii2ylqp"; 1992 + }; 1993 + } 1994 + { 1995 + pname = "system.reflection.emit"; 1996 version = "4.3.0"; 1997 src = fetchurl { 1998 url = "https://api.nuget.org/v3-flatcontainer/system.reflection.emit/4.3.0/system.reflection.emit.4.3.0.nupkg"; ··· 2000 }; 2001 } 2002 { 2003 + pname = "system.reflection.emit.ilgeneration"; 2004 + version = "4.0.1"; 2005 src = fetchurl { 2006 + url = "https://api.nuget.org/v3-flatcontainer/system.reflection.emit.ilgeneration/4.0.1/system.reflection.emit.ilgeneration.4.0.1.nupkg"; 2007 + sha256 = "1pcd2ig6bg144y10w7yxgc9d22r7c7ww7qn1frdfwgxr24j9wvv0"; 2008 }; 2009 } 2010 { ··· 2016 }; 2017 } 2018 { 2019 + pname = "system.reflection.emit.lightweight"; 2020 + version = "4.0.1"; 2021 src = fetchurl { 2022 + url = "https://api.nuget.org/v3-flatcontainer/system.reflection.emit.lightweight/4.0.1/system.reflection.emit.lightweight.4.0.1.nupkg"; 2023 + sha256 = "1s4b043zdbx9k39lfhvsk68msv1nxbidhkq6nbm27q7sf8xcsnxr"; 2024 }; 2025 } 2026 { ··· 2032 }; 2033 } 2034 { 2035 + pname = "system.reflection.extensions"; 2036 + version = "4.0.1"; 2037 src = fetchurl { 2038 + url = "https://api.nuget.org/v3-flatcontainer/system.reflection.extensions/4.0.1/system.reflection.extensions.4.0.1.nupkg"; 2039 + sha256 = "0m7wqwq0zqq9gbpiqvgk3sr92cbrw7cp3xn53xvw7zj6rz6fdirn"; 2040 }; 2041 } 2042 { ··· 2081 } 2082 { 2083 pname = "system.reflection.typeextensions"; 2084 + version = "4.1.0"; 2085 + src = fetchurl { 2086 + url = "https://api.nuget.org/v3-flatcontainer/system.reflection.typeextensions/4.1.0/system.reflection.typeextensions.4.1.0.nupkg"; 2087 + sha256 = "1bjli8a7sc7jlxqgcagl9nh8axzfl11f4ld3rjqsyxc516iijij7"; 2088 + }; 2089 + } 2090 + { 2091 + pname = "system.reflection.typeextensions"; 2092 version = "4.3.0"; 2093 src = fetchurl { 2094 url = "https://api.nuget.org/v3-flatcontainer/system.reflection.typeextensions/4.3.0/system.reflection.typeextensions.4.3.0.nupkg"; ··· 2161 } 2162 { 2163 pname = "system.runtime.compilerservices.unsafe"; 2164 version = "4.7.1"; 2165 src = fetchurl { 2166 url = "https://api.nuget.org/v3-flatcontainer/system.runtime.compilerservices.unsafe/4.7.1/system.runtime.compilerservices.unsafe.4.7.1.nupkg"; ··· 2176 }; 2177 } 2178 { 2179 + pname = "system.runtime.compilerservices.unsafe"; 2180 + version = "6.0.0"; 2181 + src = fetchurl { 2182 + url = "https://api.nuget.org/v3-flatcontainer/system.runtime.compilerservices.unsafe/6.0.0/system.runtime.compilerservices.unsafe.6.0.0.nupkg"; 2183 + sha256 = "0qm741kh4rh57wky16sq4m0v05fxmkjjr87krycf5vp9f0zbahbc"; 2184 + }; 2185 + } 2186 + { 2187 pname = "system.runtime.extensions"; 2188 version = "4.1.0"; 2189 src = fetchurl { ··· 2261 src = fetchurl { 2262 url = "https://api.nuget.org/v3-flatcontainer/system.runtime.numerics/4.3.0/system.runtime.numerics.4.3.0.nupkg"; 2263 sha256 = "19rav39sr5dky7afygh309qamqqmi9kcwvz3i0c5700v0c5cg61z"; 2264 + }; 2265 + } 2266 + { 2267 + pname = "system.runtime.serialization.primitives"; 2268 + version = "4.1.1"; 2269 + src = fetchurl { 2270 + url = "https://api.nuget.org/v3-flatcontainer/system.runtime.serialization.primitives/4.1.1/system.runtime.serialization.primitives.4.1.1.nupkg"; 2271 + sha256 = "042rfjixknlr6r10vx2pgf56yming8lkjikamg3g4v29ikk78h7k"; 2272 }; 2273 } 2274 { ··· 2296 }; 2297 } 2298 { 2299 + pname = "system.security.claims"; 2300 + version = "4.3.0"; 2301 + src = fetchurl { 2302 + url = "https://api.nuget.org/v3-flatcontainer/system.security.claims/4.3.0/system.security.claims.4.3.0.nupkg"; 2303 + sha256 = "0jvfn7j22l3mm28qjy3rcw287y9h65ha4m940waaxah07jnbzrhn"; 2304 + }; 2305 + } 2306 + { 2307 pname = "system.security.cryptography.algorithms"; 2308 version = "4.3.0"; 2309 src = fetchurl { ··· 2393 } 2394 { 2395 pname = "system.security.cryptography.protecteddata"; 2396 + version = "4.3.0"; 2397 + src = fetchurl { 2398 + url = "https://api.nuget.org/v3-flatcontainer/system.security.cryptography.protecteddata/4.3.0/system.security.cryptography.protecteddata.4.3.0.nupkg"; 2399 + sha256 = "1kg264xmqabyz8gfg8ymp6qp6aw43vawfp0znf0909d7b5jd3dq9"; 2400 + }; 2401 + } 2402 + { 2403 + pname = "system.security.cryptography.protecteddata"; 2404 version = "4.4.0"; 2405 src = fetchurl { 2406 url = "https://api.nuget.org/v3-flatcontainer/system.security.cryptography.protecteddata/4.4.0/system.security.cryptography.protecteddata.4.4.0.nupkg"; ··· 2448 }; 2449 } 2450 { 2451 + pname = "system.security.principal"; 2452 + version = "4.3.0"; 2453 + src = fetchurl { 2454 + url = "https://api.nuget.org/v3-flatcontainer/system.security.principal/4.3.0/system.security.principal.4.3.0.nupkg"; 2455 + sha256 = "12cm2zws06z4lfc4dn31iqv7072zyi4m910d4r6wm8yx85arsfxf"; 2456 + }; 2457 + } 2458 + { 2459 + pname = "system.security.principal.windows"; 2460 + version = "4.3.0"; 2461 + src = fetchurl { 2462 + url = "https://api.nuget.org/v3-flatcontainer/system.security.principal.windows/4.3.0/system.security.principal.windows.4.3.0.nupkg"; 2463 + sha256 = "00a0a7c40i3v4cb20s2cmh9csb5jv2l0frvnlzyfxh848xalpdwr"; 2464 + }; 2465 + } 2466 + { 2467 pname = "system.security.principal.windows"; 2468 version = "4.5.0"; 2469 src = fetchurl { ··· 2521 } 2522 { 2523 pname = "system.text.encoding.extensions"; 2524 + version = "4.0.11"; 2525 + src = fetchurl { 2526 + url = "https://api.nuget.org/v3-flatcontainer/system.text.encoding.extensions/4.0.11/system.text.encoding.extensions.4.0.11.nupkg"; 2527 + sha256 = "08nsfrpiwsg9x5ml4xyl3zyvjfdi4mvbqf93kjdh11j4fwkznizs"; 2528 + }; 2529 + } 2530 + { 2531 + pname = "system.text.encoding.extensions"; 2532 version = "4.3.0"; 2533 src = fetchurl { 2534 url = "https://api.nuget.org/v3-flatcontainer/system.text.encoding.extensions/4.3.0/system.text.encoding.extensions.4.3.0.nupkg"; ··· 2537 } 2538 { 2539 pname = "system.text.encodings.web"; 2540 + version = "5.0.1"; 2541 src = fetchurl { 2542 + url = "https://api.nuget.org/v3-flatcontainer/system.text.encodings.web/5.0.1/system.text.encodings.web.5.0.1.nupkg"; 2543 + sha256 = "00yg63qnp94q2qryxxggzigi276bibb8b3b96gcvsyrxy7b703n9"; 2544 }; 2545 } 2546 { 2547 pname = "system.text.encodings.web"; 2548 + version = "6.0.0"; 2549 src = fetchurl { 2550 + url = "https://api.nuget.org/v3-flatcontainer/system.text.encodings.web/6.0.0/system.text.encodings.web.6.0.0.nupkg"; 2551 + sha256 = "06n9ql3fmhpjl32g3492sj181zjml5dlcc5l76xq2h38c4f87sai"; 2552 }; 2553 } 2554 { 2555 pname = "system.text.json"; 2556 + version = "5.0.2"; 2557 src = fetchurl { 2558 + url = "https://api.nuget.org/v3-flatcontainer/system.text.json/5.0.2/system.text.json.5.0.2.nupkg"; 2559 + sha256 = "0vd0wd29cdhgcjngl9sw391sn2s8xm974y15zvym0whsdgjwiqfx"; 2560 }; 2561 } 2562 { 2563 pname = "system.text.json"; 2564 + version = "6.0.0"; 2565 src = fetchurl { 2566 + url = "https://api.nuget.org/v3-flatcontainer/system.text.json/6.0.0/system.text.json.6.0.0.nupkg"; 2567 + sha256 = "1si2my1g0q0qv1hiqnji4xh9wd05qavxnzj9dwgs23iqvgjky0gl"; 2568 + }; 2569 + } 2570 + { 2571 + pname = "system.text.regularexpressions"; 2572 + version = "4.1.0"; 2573 + src = fetchurl { 2574 + url = "https://api.nuget.org/v3-flatcontainer/system.text.regularexpressions/4.1.0/system.text.regularexpressions.4.1.0.nupkg"; 2575 + sha256 = "1mw7vfkkyd04yn2fbhm38msk7dz2xwvib14ygjsb8dq2lcvr18y7"; 2576 }; 2577 } 2578 { ··· 2600 }; 2601 } 2602 { 2603 + pname = "system.threading.overlapped"; 2604 + version = "4.3.0"; 2605 + src = fetchurl { 2606 + url = "https://api.nuget.org/v3-flatcontainer/system.threading.overlapped/4.3.0/system.threading.overlapped.4.3.0.nupkg"; 2607 + sha256 = "1nahikhqh9nk756dh8p011j36rlcp1bzz3vwi2b4m1l2s3vz8idm"; 2608 + }; 2609 + } 2610 + { 2611 pname = "system.threading.tasks"; 2612 version = "4.0.11"; 2613 src = fetchurl { ··· 2633 } 2634 { 2635 pname = "system.threading.tasks.extensions"; 2636 + version = "4.0.0"; 2637 src = fetchurl { 2638 + url = "https://api.nuget.org/v3-flatcontainer/system.threading.tasks.extensions/4.0.0/system.threading.tasks.extensions.4.0.0.nupkg"; 2639 + sha256 = "1cb51z062mvc2i8blpzmpn9d9mm4y307xrwi65di8ri18cz5r1zr"; 2640 }; 2641 } 2642 { 2643 pname = "system.threading.tasks.extensions"; 2644 + version = "4.3.0"; 2645 src = fetchurl { 2646 + url = "https://api.nuget.org/v3-flatcontainer/system.threading.tasks.extensions/4.3.0/system.threading.tasks.extensions.4.3.0.nupkg"; 2647 + sha256 = "1xxcx2xh8jin360yjwm4x4cf5y3a2bwpn2ygkfkwkicz7zk50s2z"; 2648 }; 2649 } 2650 { ··· 2664 }; 2665 } 2666 { 2667 + pname = "system.threading.thread"; 2668 + version = "4.3.0"; 2669 + src = fetchurl { 2670 + url = "https://api.nuget.org/v3-flatcontainer/system.threading.thread/4.3.0/system.threading.thread.4.3.0.nupkg"; 2671 + sha256 = "0y2xiwdfcph7znm2ysxanrhbqqss6a3shi1z3c779pj2s523mjx4"; 2672 + }; 2673 + } 2674 + { 2675 + pname = "system.threading.threadpool"; 2676 + version = "4.3.0"; 2677 + src = fetchurl { 2678 + url = "https://api.nuget.org/v3-flatcontainer/system.threading.threadpool/4.3.0/system.threading.threadpool.4.3.0.nupkg"; 2679 + sha256 = "027s1f4sbx0y1xqw2irqn6x161lzj8qwvnh2gn78ciiczdv10vf1"; 2680 + }; 2681 + } 2682 + { 2683 pname = "system.threading.timer"; 2684 version = "4.3.0"; 2685 src = fetchurl { ··· 2705 } 2706 { 2707 pname = "system.xml.readerwriter"; 2708 + version = "4.0.11"; 2709 + src = fetchurl { 2710 + url = "https://api.nuget.org/v3-flatcontainer/system.xml.readerwriter/4.0.11/system.xml.readerwriter.4.0.11.nupkg"; 2711 + sha256 = "0c6ky1jk5ada9m94wcadih98l6k1fvf6vi7vhn1msjixaha419l5"; 2712 + }; 2713 + } 2714 + { 2715 + pname = "system.xml.readerwriter"; 2716 version = "4.3.0"; 2717 src = fetchurl { 2718 url = "https://api.nuget.org/v3-flatcontainer/system.xml.readerwriter/4.3.0/system.xml.readerwriter.4.3.0.nupkg"; 2719 sha256 = "0c47yllxifzmh8gq6rq6l36zzvw4kjvlszkqa9wq3fr59n0hl3s1"; 2720 + }; 2721 + } 2722 + { 2723 + pname = "system.xml.xdocument"; 2724 + version = "4.0.11"; 2725 + src = fetchurl { 2726 + url = "https://api.nuget.org/v3-flatcontainer/system.xml.xdocument/4.0.11/system.xml.xdocument.4.0.11.nupkg"; 2727 + sha256 = "0n4lvpqzy9kc7qy1a4acwwd7b7pnvygv895az5640idl2y9zbz18"; 2728 }; 2729 } 2730 {
+3 -3
pkgs/development/tools/purescript/spago/spago.nix
··· 14 }: 15 mkDerivation { 16 pname = "spago"; 17 - version = "0.20.4"; 18 src = fetchgit { 19 url = "https://github.com/purescript/spago.git"; 20 - sha256 = "0dj7z2yr4s2kqjklbjdzsrmc5lqli322wg5k412jixxpmlx11a5f"; 21 - rev = "33da63176fe07967761f43c83af9715f104013f0"; 22 fetchSubmodules = true; 23 }; 24 isLibrary = true;
··· 14 }: 15 mkDerivation { 16 pname = "spago"; 17 + version = "0.20.5"; 18 src = fetchgit { 19 url = "https://github.com/purescript/spago.git"; 20 + sha256 = "1qjlag5wm1hls54gb1rjym3xj28xww2p3m58f38g6icar9qz4a72"; 21 + rev = "2a70306d87ddb2a7a61cf5ac61fccd7d91ecae6c"; 22 fetchSubmodules = true; 23 }; 24 isLibrary = true;
+3 -3
pkgs/development/tools/rust/cargo-cache/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "cargo-cache"; 5 - version = "0.7.0"; 6 7 src = fetchFromGitHub { 8 owner = "matthiaskrgr"; 9 repo = pname; 10 rev = version; 11 - sha256 = "sha256-MPU+hmYfmWftVEkdT/sZx9ESgCPTb7m4lEnYf5bOSYU="; 12 }; 13 14 - cargoSha256 = "sha256-6Ffgg5/B1IFnTlSjzhAsnhxz8jBcgk01RIkwgLqlsvc="; 15 16 buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ]; 17
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "cargo-cache"; 5 + version = "0.8.1"; 6 7 src = fetchFromGitHub { 8 owner = "matthiaskrgr"; 9 repo = pname; 10 rev = version; 11 + sha256 = "sha256-e9mT+OpPDTBtvQx3BVekr38azzD2DaT715wYLHYkjtk="; 12 }; 13 14 + cargoSha256 = "sha256-pVa7OLRlWMy7ZlLGTeePt86kK5y0OULOLYrq9GtOFRA="; 15 16 buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ]; 17
+4 -4
pkgs/development/tools/rust/cargo-fuzz/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "cargo-fuzz"; 5 - version = "0.10.2"; 6 7 src = fetchFromGitHub { 8 owner = "rust-fuzz"; 9 repo = "cargo-fuzz"; 10 - rev = version; 11 - sha256 = "sha256-5dHEUGn2CrEpSTJsbnSRx/hKXx6dLCDcuD1dPOH49d4="; 12 }; 13 14 - cargoSha256 = "sha256-vZPd8Zzyp0PgIdyp5qY57ex0cCihplw/FY+xf3etuu8="; 15 16 buildInputs = lib.optional stdenv.isDarwin libiconv; 17
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "cargo-fuzz"; 5 + version = "0.11.0"; 6 7 src = fetchFromGitHub { 8 owner = "rust-fuzz"; 9 repo = "cargo-fuzz"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-vjKo0L7sYrC7qWdOGSJDWpL04tmNjO3QRwAIRHN/DiI="; 12 }; 13 14 + cargoSha256 = "sha256-8XVRMwrBEJ1duQtXzNpuN5wJPUgziJlka4n/nAIqeEc="; 15 16 buildInputs = lib.optional stdenv.isDarwin libiconv; 17
+79
pkgs/games/7kaa/default.nix
···
··· 1 + { lib 2 + , stdenv 3 + , gccStdenv 4 + , autoreconfHook 5 + , pkg-config 6 + , fetchurl 7 + , fetchFromGitHub 8 + , openal 9 + , libtool 10 + , enet 11 + , SDL2 12 + , curl 13 + , gettext 14 + , libiconv 15 + }: 16 + 17 + let 18 + 19 + name = "7kaa"; 20 + versionMajor = "2.15"; 21 + versionMinor = "4p1"; 22 + 23 + music = stdenv.mkDerivation rec { 24 + pname = "${name}-music"; 25 + version = "${versionMajor}"; 26 + 27 + src = fetchurl { 28 + url = "https://www.7kfans.com/downloads/${name}-music-${versionMajor}.tar.bz2"; 29 + sha256 = "sha256-sNdntuJXGaFPXzSpN0SoAi17wkr2YnW+5U38eIaVwcM="; 30 + }; 31 + 32 + installPhase = '' 33 + mkdir -p $out 34 + cp -r * $out/ 35 + ''; 36 + 37 + meta.license = lib.licenses.unfree; 38 + 39 + }; 40 + 41 + in 42 + 43 + gccStdenv.mkDerivation rec { 44 + pname = "${name}"; 45 + version = "v${versionMajor}.${versionMinor}"; 46 + 47 + src = fetchFromGitHub { 48 + owner = "the3dfxdude"; 49 + repo = pname; 50 + rev = "9db2a43e1baee25a44b7aa7e9cedde9a107ed34b"; 51 + sha256 = "sha256-OAKaRuPP0/n8pO3wIUvGKs6n+U+EmZXUTywXYDAan1o="; 52 + }; 53 + 54 + nativeBuildInputs = [ autoreconfHook pkg-config ]; 55 + buildInputs = [ openal enet SDL2 curl gettext libiconv ]; 56 + 57 + preAutoreconf = '' 58 + autoupdate 59 + ''; 60 + 61 + hardeningDisable = lib.optionals (stdenv.isAarch64 && stdenv.isDarwin) [ "stackprotector" ]; 62 + 63 + postInstall = '' 64 + mkdir $out/share/7kaa/MUSIC 65 + cp -R ${music}/MUSIC $out/share/7kaa/ 66 + cp ${music}/COPYING-Music.txt $out/share/7kaa/MUSIC 67 + cp ${music}/COPYING-Music.txt $out/share/doc/7kaa 68 + ''; 69 + 70 + # Multiplayer is auto-disabled for non-x86 system 71 + 72 + meta = with lib; { 73 + homepage = "https://www.7kfans.com"; 74 + description = "GPL release of the Seven Kingdoms with multiplayer (available only on x86 platforms)"; 75 + license = licenses.gpl2Only; 76 + platforms = platforms.x86_64 ++ platforms.aarch64; 77 + maintainers = with maintainers; [ _1000101 ]; 78 + }; 79 + }
+3 -3
pkgs/games/cl-wordle/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "cl-wordle"; 5 - version = "0.1.2"; 6 7 src = fetchCrate { 8 inherit pname version; 9 - sha256 = "sha256-mcPC2Lj+Vsytfl3+ghYn74QRfM6U4dQLUybtCqkjKlk="; 10 }; 11 12 - cargoSha256 = "sha256-3Ef8gLFWIAYpKdPixvILvDee5Gezh68hc9TR5+zRX0I="; 13 14 patches = [ ./rust-1-57.diff ]; 15
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "cl-wordle"; 5 + version = "0.2.0"; 6 7 src = fetchCrate { 8 inherit pname version; 9 + sha256 = "sha256-M2ljFrfIOyM1Slwsk7ZJ+PhJIVSUvFcFck2Q2e9nOwc="; 10 }; 11 12 + cargoSha256 = "sha256-bB6MzpJc8QS2+8GSS8RbSF5QcJyRT8FkmChpf1x2i/E="; 13 14 patches = [ ./rust-1-57.diff ]; 15
+12 -12
pkgs/games/cl-wordle/rust-1-57.diff
··· 1 - diff --git a/src/bin/wordle/game.rs b/src/bin/wordle/game.rs 2 - index 8500732..6f26e2a 100644 3 - --- a/src/bin/wordle/game.rs 4 - +++ b/src/bin/wordle/game.rs 5 - @@ -235,7 +235,7 @@ impl Display for GameShare { 6 - score = self.score 7 - )?; 8 - for m in &self.matches { 9 - - write!(f, "\n{m}")?; 10 - + write!(f, "\n{}", m)?; 11 } 12 - Ok(()) 13 - }
··· 1 + diff --git a/src/state.rs b/src/state.rs 2 + index 5fac0a3..41cbde4 100644 3 + --- a/src/state.rs 4 + +++ b/src/state.rs 5 + @@ -74,7 +74,7 @@ impl State { 6 + 'X' 7 + }; 8 + 9 + - write!(w, "{score}/6",)?; 10 + + write!(w, "{:?}/6", score)?; 11 + for Guess(_, m) in self.guesses() { 12 + write!(w, "\n{}", m)?; 13 }
+38
pkgs/games/linthesia/default.nix
···
··· 1 + { lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, python3, libGL, libGLU 2 + , alsa-lib, glibmm, sqlite, SDL2, SDL2_ttf_2_0_15, SDL2_image, gtk3, wrapGAppsHook }: 3 + 4 + stdenv.mkDerivation rec { 5 + pname = "linthesia"; 6 + version = "0.8.0"; 7 + 8 + src = fetchFromGitHub { 9 + owner = "linthesia"; 10 + repo = "linthesia"; 11 + rev = version; 12 + sha256 = "sha256-bdW0RlV14ttnK8NizfNfXmZ7zlJOqZCpVvt8vT2Pjys="; 13 + }; 14 + 15 + postPatch = '' 16 + patchShebangs meson_post_install.py 17 + ''; 18 + 19 + nativeBuildInputs = [ meson ninja pkg-config python3 wrapGAppsHook ]; 20 + buildInputs = [ 21 + libGL 22 + libGLU 23 + alsa-lib 24 + glibmm 25 + sqlite 26 + SDL2 27 + SDL2_ttf_2_0_15 28 + SDL2_image 29 + gtk3.out # icon cache 30 + ]; 31 + 32 + meta = with lib; { 33 + description = "A game of playing music using a MIDI keyboard following a MIDI file"; 34 + inherit (src.meta) homepage; 35 + license = licenses.gpl2Plus; 36 + platforms = platforms.linux; 37 + }; 38 + }
+2 -1
pkgs/games/minecraft-servers/update.py
··· 4 import json 5 from dataclasses import dataclass, field 6 from datetime import datetime 7 from typing import Any, Dict, List, Optional 8 9 import requests ··· 150 151 152 if __name__ == "__main__": 153 - with open("versions.json", "w") as file: 154 json.dump(generate(), file, indent=2) 155 file.write("\n")
··· 4 import json 5 from dataclasses import dataclass, field 6 from datetime import datetime 7 + from pathlib import Path 8 from typing import Any, Dict, List, Optional 9 10 import requests ··· 151 152 153 if __name__ == "__main__": 154 + with open(Path(__file__).parent / "versions.json", "w") as file: 155 json.dump(generate(), file, indent=2) 156 file.write("\n")
+42 -15
pkgs/games/toppler/default.nix
··· 1 - { lib, stdenv 2 - , fetchurl 3 - , SDL 4 - , SDL_mixer 5 , zlib 6 }: 7 8 stdenv.mkDerivation rec { 9 pname = "toppler"; 10 - version = "1.1.6"; 11 12 - src = fetchurl { 13 - url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz"; 14 - sha256 = "0ifccissd8sh78kpwh7dafx4ah7hkhqz6nf4z2hdnalw702jkg3x"; 15 }; 16 17 buildInputs = [ 18 - SDL 19 - SDL_mixer 20 zlib 21 ]; 22 23 - # The conftest hangs on Hydra runners, because they are not logged in. 24 - configureFlags = lib.optional stdenv.isDarwin "--disable-sdltest"; 25 26 meta = with lib; { 27 description = "Jump and run game, reimplementation of Tower Toppler/Nebulus"; 28 - homepage = "http://toppler.sourceforge.net/"; 29 - license = licenses.gpl2; 30 maintainers = with maintainers; [ fgaz ]; 31 platforms = platforms.all; 32 }; 33 } 34 -
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitLab 4 + 5 + , pkg-config 6 + , gettext 7 + , povray 8 + , imagemagick 9 + , gimp 10 + 11 + , SDL2 12 + , SDL2_mixer 13 + , SDL2_image 14 + , libpng 15 , zlib 16 }: 17 18 stdenv.mkDerivation rec { 19 pname = "toppler"; 20 + version = "1.3"; 21 22 + src = fetchFromGitLab { 23 + owner = "roever"; 24 + repo = "toppler"; 25 + rev = "v${version}"; 26 + sha256 = "sha256-ecEaELu52Nmov/BD9VzcUw6wyWeHJcsKQkEzTnaW330="; 27 }; 28 29 + nativeBuildInputs = [ 30 + pkg-config 31 + gettext 32 + povray 33 + imagemagick 34 + gimp 35 + ]; 36 + 37 buildInputs = [ 38 + SDL2 39 + SDL2_mixer 40 + SDL2_image 41 + libpng 42 zlib 43 ]; 44 45 + # GIMP needs a writable home 46 + preBuild = '' 47 + export HOME=$(mktemp -d) 48 + ''; 49 + 50 + makeFlags = [ "PREFIX=$(out)" ]; 51 + 52 + hardeningDisable = [ "format" ]; 53 54 meta = with lib; { 55 description = "Jump and run game, reimplementation of Tower Toppler/Nebulus"; 56 + homepage = "https://gitlab.com/roever/toppler"; 57 + license = licenses.gpl2Plus; 58 maintainers = with maintainers; [ fgaz ]; 59 platforms = platforms.all; 60 }; 61 }
+4 -4
pkgs/misc/emulators/dolphin-emu/master.nix
··· 10 11 stdenv.mkDerivation rec { 12 pname = "dolphin-emu"; 13 - version = "5.0-15445"; 14 15 src = fetchFromGitHub { 16 owner = "dolphin-emu"; 17 repo = "dolphin"; 18 - rev = "db02b50d2ecdfbbc21e19aadc57253c353069f77"; 19 - sha256 = "l2vbTZOcjfyZjKOI3n5ig2f7cDYR22GcqKS479LMtP8="; 20 fetchSubmodules = true; 21 }; 22 ··· 79 homepage = "https://dolphin-emu.org"; 80 description = "Gamecube/Wii/Triforce emulator for x86_64 and ARMv8"; 81 license = licenses.gpl2Plus; 82 - maintainers = with maintainers; [ MP2E ashkitten ]; 83 branch = "master"; 84 # x86_32 is an unsupported platform. 85 # Enable generic build if you really want a JIT-less binary.
··· 10 11 stdenv.mkDerivation rec { 12 pname = "dolphin-emu"; 13 + version = "5.0-15993"; 14 15 src = fetchFromGitHub { 16 owner = "dolphin-emu"; 17 repo = "dolphin"; 18 + rev = "5e595616379a694789fe749e40a27ef069f0090e"; 19 + sha256 = "1kid8qjn8r7dxh2yc1y6yal6qkfxij0ymi3zryxsnym3rjh1jds9"; 20 fetchSubmodules = true; 21 }; 22 ··· 79 homepage = "https://dolphin-emu.org"; 80 description = "Gamecube/Wii/Triforce emulator for x86_64 and ARMv8"; 81 license = licenses.gpl2Plus; 82 + maintainers = with maintainers; [ MP2E ashkitten xfix ]; 83 branch = "master"; 84 # x86_32 is an unsupported platform. 85 # Enable generic build if you really want a JIT-less binary.
+6 -6
pkgs/misc/tmux-plugins/default.nix
··· 132 133 cpu = mkTmuxPlugin { 134 pluginName = "cpu"; 135 - version = "unstable-2020-07-25"; 136 src = fetchFromGitHub { 137 owner = "tmux-plugins"; 138 repo = "tmux-cpu"; 139 - rev = "20120a38ade17057441482b43eb5390e6ea2c1c1"; 140 - sha256 = "1gdz2awyd9icvyiw2p40gwymh6ngjhb9mkiv63ix53snp9ii794i"; 141 }; 142 }; 143 ··· 523 tmux-fzf = mkTmuxPlugin { 524 pluginName = "tmux-fzf"; 525 rtpFilePath = "main.tmux"; 526 - version = "unstable-2020-12-07"; 527 src = fetchFromGitHub { 528 owner = "sainnhe"; 529 repo = "tmux-fzf"; 530 - rev = "5efeb91086040a3becf5372fb38258acd0579954"; 531 - sha256 = "1z0zmsf8asxs9wbwvkiyd81h93wb2ikl8nxxc26sdpi6l333q5s9"; 532 }; 533 postInstall = '' 534 find $target -type f -print0 | xargs -0 sed -i -e 's|fzf |${pkgs.fzf}/bin/fzf |g'
··· 132 133 cpu = mkTmuxPlugin { 134 pluginName = "cpu"; 135 + version = "unstable-2021-12-15"; 136 src = fetchFromGitHub { 137 owner = "tmux-plugins"; 138 repo = "tmux-cpu"; 139 + rev = "9eb3dba66672c5b43065e144cc3a1031f77ad67e"; 140 + sha256 = "sha256-v/jZxsa+JwsSKjmA32VK/4gBNHP/SyOzTaYSSz2c0+4="; 141 }; 142 }; 143 ··· 523 tmux-fzf = mkTmuxPlugin { 524 pluginName = "tmux-fzf"; 525 rtpFilePath = "main.tmux"; 526 + version = "unstable-2021-10-20"; 527 src = fetchFromGitHub { 528 owner = "sainnhe"; 529 repo = "tmux-fzf"; 530 + rev = "1801dd525b39154745ea668fb6916035023949e3"; 531 + sha256 = "e929Jqletmobp3WAR1tPU3pJuYTYVynxc5CvB80gig8="; 532 }; 533 postInstall = '' 534 find $target -type f -print0 | xargs -0 sed -i -e 's|fzf |${pkgs.fzf}/bin/fzf |g'
+122 -62
pkgs/misc/vim-plugins/generated.nix
··· 41 42 aerial-nvim = buildVimPluginFrom2Nix { 43 pname = "aerial.nvim"; 44 - version = "2022-02-04"; 45 src = fetchFromGitHub { 46 owner = "stevearc"; 47 repo = "aerial.nvim"; 48 - rev = "91350456c176fe5ef72e342dd3a75f726805454d"; 49 - sha256 = "18kj8rb6zdqaw255zi767si84jk5lbr3k1vhqjfi265399iwgii7"; 50 }; 51 meta.homepage = "https://github.com/stevearc/aerial.nvim/"; 52 }; ··· 77 78 ale = buildVimPluginFrom2Nix { 79 pname = "ale"; 80 - version = "2022-02-06"; 81 src = fetchFromGitHub { 82 owner = "dense-analysis"; 83 repo = "ale"; 84 - rev = "6d9399d863e6e921c87c1a95795109b872bd3925"; 85 - sha256 = "0rdrdli1fqqasp3jl508ikv0g6qp5y8fzrn8sq9x7fkmg4sazqg3"; 86 }; 87 meta.homepage = "https://github.com/dense-analysis/ale/"; 88 }; ··· 171 meta.homepage = "https://github.com/prabirshrestha/async.vim/"; 172 }; 173 174 asyncomplete-vim = buildVimPluginFrom2Nix { 175 pname = "asyncomplete.vim"; 176 version = "2021-12-06"; ··· 473 474 catppuccin-nvim = buildVimPluginFrom2Nix { 475 pname = "catppuccin-nvim"; 476 - version = "2022-02-04"; 477 src = fetchFromGitHub { 478 owner = "catppuccin"; 479 repo = "nvim"; 480 - rev = "d48d3926b10ac1f9ef77cbcac35a4c7160cff6bf"; 481 - sha256 = "1vvn4qh849rdswvz4cnqci3ahp0z6jppqzg6rlavh8aayppw89lk"; 482 }; 483 meta.homepage = "https://github.com/catppuccin/nvim/"; 484 }; ··· 497 498 chadtree = buildVimPluginFrom2Nix { 499 pname = "chadtree"; 500 - version = "2022-02-07"; 501 src = fetchFromGitHub { 502 owner = "ms-jpq"; 503 repo = "chadtree"; 504 - rev = "7287befe22ee7fac9b83c3b3499571f6fc8143ae"; 505 - sha256 = "16rfwpmrz7y8d0s8xn8fx90q9b3gnnmnrm9ls7ss83ay7mfvsriy"; 506 }; 507 meta.homepage = "https://github.com/ms-jpq/chadtree/"; 508 }; ··· 1182 1183 coq_nvim = buildVimPluginFrom2Nix { 1184 pname = "coq_nvim"; 1185 - version = "2022-02-07"; 1186 src = fetchFromGitHub { 1187 owner = "ms-jpq"; 1188 repo = "coq_nvim"; 1189 - rev = "98bc8a70b66c4ac05f6e648c43a278a6ff46b7a4"; 1190 - sha256 = "15p77qk7a6p9viczl0ym5izdvfbq2d67pgv597zcy7cxmxf5vgcs"; 1191 }; 1192 meta.homepage = "https://github.com/ms-jpq/coq_nvim/"; 1193 }; ··· 2327 2328 gitsigns-nvim = buildVimPluginFrom2Nix { 2329 pname = "gitsigns.nvim"; 2330 - version = "2022-02-07"; 2331 src = fetchFromGitHub { 2332 owner = "lewis6991"; 2333 repo = "gitsigns.nvim"; 2334 - rev = "11425117a9dcd533e5d42e083248ee0caea88b04"; 2335 - sha256 = "0lsd4c446q8f6ylf5g5vyi0gb81v59a4zlcwasvxw29giwxz3grv"; 2336 }; 2337 meta.homepage = "https://github.com/lewis6991/gitsigns.nvim/"; 2338 }; ··· 3240 3241 litee-calltree-nvim = buildVimPluginFrom2Nix { 3242 pname = "litee-calltree.nvim"; 3243 - version = "2022-01-20"; 3244 src = fetchFromGitHub { 3245 owner = "ldelossa"; 3246 repo = "litee-calltree.nvim"; 3247 - rev = "be1c8d67ef80dc4cdfc164d3a95a45d8d551b3eb"; 3248 - sha256 = "0qqyws79a4d4kn1vgb7p8iw7vlx2flb3ra2y2xvjilyvzz4ppqrq"; 3249 }; 3250 meta.homepage = "https://github.com/ldelossa/litee-calltree.nvim/"; 3251 }; ··· 3264 3265 litee-symboltree-nvim = buildVimPluginFrom2Nix { 3266 pname = "litee-symboltree.nvim"; 3267 - version = "2022-01-13"; 3268 src = fetchFromGitHub { 3269 owner = "ldelossa"; 3270 repo = "litee-symboltree.nvim"; 3271 - rev = "9baa027c79abdadc0a63bdd14d248241a1333b99"; 3272 - sha256 = "0lr203px4ydakqnqavymd2f08gj5mid1nhb63rww72i7i959hz7v"; 3273 }; 3274 meta.homepage = "https://github.com/ldelossa/litee-symboltree.nvim/"; 3275 }; ··· 3371 3372 lspsaga-nvim = buildVimPluginFrom2Nix { 3373 pname = "lspsaga.nvim"; 3374 - version = "2022-02-02"; 3375 src = fetchFromGitHub { 3376 owner = "tami5"; 3377 repo = "lspsaga.nvim"; 3378 - rev = "ca8bc243e6ae36fa3eeab53191f302ca84660a3c"; 3379 - sha256 = "1967vi3an7f5gp6hdwbkrd5nm71nb1i82jh3ygy1k7i2y4fa6apr"; 3380 }; 3381 meta.homepage = "https://github.com/tami5/lspsaga.nvim/"; 3382 }; ··· 3419 3420 luasnip = buildVimPluginFrom2Nix { 3421 pname = "luasnip"; 3422 - version = "2022-02-06"; 3423 src = fetchFromGitHub { 3424 owner = "l3mon4d3"; 3425 repo = "luasnip"; 3426 - rev = "0997bc216a136f2847343d96040c9b0c90b661c9"; 3427 - sha256 = "1iyjbk6l7y35f72cpffddsj97j140vgg0kk5iyaq6mg8rcsq49lq"; 3428 }; 3429 meta.homepage = "https://github.com/l3mon4d3/luasnip/"; 3430 }; ··· 3551 3552 mini-nvim = buildVimPluginFrom2Nix { 3553 pname = "mini.nvim"; 3554 - version = "2022-02-05"; 3555 src = fetchFromGitHub { 3556 owner = "echasnovski"; 3557 repo = "mini.nvim"; 3558 - rev = "6cb7cdb1cd7f111784d5d971fa41a655e11df4b3"; 3559 - sha256 = "1jsn2vf8gn61qzzibxngsf29cm4xhr2nidzsjg02l6ayhd7rlhgl"; 3560 }; 3561 meta.homepage = "https://github.com/echasnovski/mini.nvim/"; 3562 }; ··· 4295 4296 null-ls-nvim = buildVimPluginFrom2Nix { 4297 pname = "null-ls.nvim"; 4298 - version = "2022-02-05"; 4299 src = fetchFromGitHub { 4300 owner = "jose-elias-alvarez"; 4301 repo = "null-ls.nvim"; 4302 - rev = "e8a666829a3d803844f24daa4932e4f5fe76cbeb"; 4303 - sha256 = "0inl9dizwq2j3r2z7jsxdqmrq5iyq7b123x2n23dfzsvvv5s3279"; 4304 }; 4305 meta.homepage = "https://github.com/jose-elias-alvarez/null-ls.nvim/"; 4306 }; ··· 4667 4668 nvim-lsp-ts-utils = buildVimPluginFrom2Nix { 4669 pname = "nvim-lsp-ts-utils"; 4670 - version = "2022-01-26"; 4671 src = fetchFromGitHub { 4672 owner = "jose-elias-alvarez"; 4673 repo = "nvim-lsp-ts-utils"; 4674 - rev = "64d233a8859e27139c55472248147114e0be1652"; 4675 - sha256 = "1isnz4pys9wdf7w4qfiyjl4a2h66b0iwnxlbs88pn0r7hc8kgr74"; 4676 }; 4677 meta.homepage = "https://github.com/jose-elias-alvarez/nvim-lsp-ts-utils/"; 4678 }; ··· 4815 src = fetchFromGitHub { 4816 owner = "kyazdani42"; 4817 repo = "nvim-tree.lua"; 4818 - rev = "e42a4337d0d9de4de5c0d4ab960f2101ef33f273"; 4819 - sha256 = "125j1ng5xr12wpqg9wymxlxgzw9v2alqb9fmpwg0mbf9aybip27k"; 4820 }; 4821 meta.homepage = "https://github.com/kyazdani42/nvim-tree.lua/"; 4822 }; 4823 4824 nvim-treesitter = buildVimPluginFrom2Nix { 4825 pname = "nvim-treesitter"; 4826 - version = "2022-02-07"; 4827 src = fetchFromGitHub { 4828 owner = "nvim-treesitter"; 4829 repo = "nvim-treesitter"; 4830 - rev = "d6e6581a256061449a8a039c792a93a4b4e86b85"; 4831 - sha256 = "1m1cm1lynaa8wslpy01hkxdp5kxnwxx570wpj2wy5x1xjl5pglgz"; 4832 }; 4833 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; 4834 }; ··· 4871 4872 nvim-treesitter-textobjects = buildVimPluginFrom2Nix { 4873 pname = "nvim-treesitter-textobjects"; 4874 - version = "2022-02-04"; 4875 src = fetchFromGitHub { 4876 owner = "nvim-treesitter"; 4877 repo = "nvim-treesitter-textobjects"; 4878 - rev = "438d2cfa3922a58ef828803d6ca9c944b4b4c996"; 4879 - sha256 = "0lycnr6q304z1n146phcyjsv4z2rr02yxpq9aj2gvybqljb16m18"; 4880 }; 4881 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-textobjects/"; 4882 }; ··· 6616 meta.homepage = "https://github.com/ternjs/tern_for_vim/"; 6617 }; 6618 6619 thesaurus_query-vim = buildVimPluginFrom2Nix { 6620 pname = "thesaurus_query.vim"; 6621 version = "2022-01-30"; ··· 7267 7268 vim-android = buildVimPluginFrom2Nix { 7269 pname = "vim-android"; 7270 - version = "2022-02-05"; 7271 src = fetchFromGitHub { 7272 owner = "hsanson"; 7273 repo = "vim-android"; 7274 - rev = "12468bc4271a6e3373662e9b9f9d59b30e4ccdea"; 7275 - sha256 = "04ilkr2gl96471hp6cxcqhqn3mm25hkaw0vgbzi1izpi6fqkps00"; 7276 }; 7277 meta.homepage = "https://github.com/hsanson/vim-android/"; 7278 }; ··· 7315 7316 vim-argwrap = buildVimPluginFrom2Nix { 7317 pname = "vim-argwrap"; 7318 - version = "2022-02-06"; 7319 src = fetchFromGitHub { 7320 owner = "FooSoft"; 7321 repo = "vim-argwrap"; 7322 - rev = "0c03483702ca3ded88653c1762ba3b25ab8a6393"; 7323 - sha256 = "0bl5aiycch25jq9vkv6j3xrz56adlb7jhvzz82hc9h0fiwzshjzn"; 7324 }; 7325 meta.homepage = "https://github.com/FooSoft/vim-argwrap/"; 7326 }; ··· 7457 meta.homepage = "https://github.com/MattesGroeger/vim-bookmarks/"; 7458 }; 7459 7460 vim-bracketed-paste = buildVimPluginFrom2Nix { 7461 pname = "vim-bracketed-paste"; 7462 version = "2018-05-22"; ··· 7541 meta.homepage = "https://github.com/kristijanhusak/vim-carbon-now-sh/"; 7542 }; 7543 7544 vim-choosewin = buildVimPluginFrom2Nix { 7545 pname = "vim-choosewin"; 7546 version = "2021-04-22"; ··· 7603 7604 vim-closer = buildVimPluginFrom2Nix { 7605 pname = "vim-closer"; 7606 - version = "2021-03-28"; 7607 src = fetchFromGitHub { 7608 owner = "rstacruz"; 7609 repo = "vim-closer"; 7610 - rev = "26bba80f4d987f12141da522d69aa1fa4aff4436"; 7611 - sha256 = "1pyi5akzvvkdngm577m1c1210r0yypdwsvp1y7ag6gdfnls75xws"; 7612 }; 7613 meta.homepage = "https://github.com/rstacruz/vim-closer/"; 7614 }; ··· 8299 8300 vim-floaterm = buildVimPluginFrom2Nix { 8301 pname = "vim-floaterm"; 8302 - version = "2022-02-07"; 8303 src = fetchFromGitHub { 8304 owner = "voldikss"; 8305 repo = "vim-floaterm"; 8306 - rev = "d38f75fdc237ed8ff2864b9e481ce2ec5b5504a0"; 8307 - sha256 = "1h3am33r40ssih8j1n3l939qmqgh7f7awwrqdpkvgj1wisiq2v21"; 8308 }; 8309 meta.homepage = "https://github.com/voldikss/vim-floaterm/"; 8310 }; ··· 8539 8540 vim-graphql = buildVimPluginFrom2Nix { 8541 pname = "vim-graphql"; 8542 - version = "2022-01-31"; 8543 src = fetchFromGitHub { 8544 owner = "jparise"; 8545 repo = "vim-graphql"; 8546 - rev = "5ce866172da4b90f77b8371423dc031fe2f4ece7"; 8547 - sha256 = "07rl7il0aqirmrg720c3k96v0rfwj4njmx2pnql3wd8nbl2w5czb"; 8548 }; 8549 meta.homepage = "https://github.com/jparise/vim-graphql/"; 8550 }; ··· 11347 sha256 = "1yizvf9s9djxar64kp63r45q5vv2k616xskd4adkcfqn8crzyw52"; 11348 }; 11349 meta.homepage = "https://github.com/jreybert/vimagit/"; 11350 }; 11351 11352 vimelette = buildVimPluginFrom2Nix {
··· 41 42 aerial-nvim = buildVimPluginFrom2Nix { 43 pname = "aerial.nvim"; 44 + version = "2022-02-07"; 45 src = fetchFromGitHub { 46 owner = "stevearc"; 47 repo = "aerial.nvim"; 48 + rev = "ee369de02aebc52e7d34506298556e15030c52dc"; 49 + sha256 = "0d31lkaiqn5f8rg1asinp72hlngmfbih7rffb4q4zm5hwayyqi3p"; 50 }; 51 meta.homepage = "https://github.com/stevearc/aerial.nvim/"; 52 }; ··· 77 78 ale = buildVimPluginFrom2Nix { 79 pname = "ale"; 80 + version = "2022-02-08"; 81 src = fetchFromGitHub { 82 owner = "dense-analysis"; 83 repo = "ale"; 84 + rev = "82a3e444b299cff3127809b02ea63c819486f285"; 85 + sha256 = "0y18dpf5c5xria1wxxgsqf0wb5cmkm1k3ydyk885mcyjkzy9s8yk"; 86 }; 87 meta.homepage = "https://github.com/dense-analysis/ale/"; 88 }; ··· 171 meta.homepage = "https://github.com/prabirshrestha/async.vim/"; 172 }; 173 174 + asyncomplete-lsp-vim = buildVimPluginFrom2Nix { 175 + pname = "asyncomplete-lsp.vim"; 176 + version = "2021-12-17"; 177 + src = fetchFromGitHub { 178 + owner = "prabirshrestha"; 179 + repo = "asyncomplete-lsp.vim"; 180 + rev = "f6d6a6354ff279ba707c20292aef0dfaadc436a3"; 181 + sha256 = "1y0wpq982nw0ibqhvcvb7md58jvadygkxc1ibg99zxw1kznfpla6"; 182 + }; 183 + meta.homepage = "https://github.com/prabirshrestha/asyncomplete-lsp.vim/"; 184 + }; 185 + 186 asyncomplete-vim = buildVimPluginFrom2Nix { 187 pname = "asyncomplete.vim"; 188 version = "2021-12-06"; ··· 485 486 catppuccin-nvim = buildVimPluginFrom2Nix { 487 pname = "catppuccin-nvim"; 488 + version = "2022-02-08"; 489 src = fetchFromGitHub { 490 owner = "catppuccin"; 491 repo = "nvim"; 492 + rev = "406fdf2f2d2372df52d503e9f7bef96d89901c9f"; 493 + sha256 = "17b07krgc9pzqhmwls2d50xbiqs4fgzmdi61qrz1v5n0bgs011mr"; 494 }; 495 meta.homepage = "https://github.com/catppuccin/nvim/"; 496 }; ··· 509 510 chadtree = buildVimPluginFrom2Nix { 511 pname = "chadtree"; 512 + version = "2022-02-08"; 513 src = fetchFromGitHub { 514 owner = "ms-jpq"; 515 repo = "chadtree"; 516 + rev = "aa250cb8dbe80792e32d45d1bd4d63850652f771"; 517 + sha256 = "1ykj74ysla1vqq6qjdb593w7r26rapffv2jav6kipigna71bg6j8"; 518 }; 519 meta.homepage = "https://github.com/ms-jpq/chadtree/"; 520 }; ··· 1194 1195 coq_nvim = buildVimPluginFrom2Nix { 1196 pname = "coq_nvim"; 1197 + version = "2022-02-08"; 1198 src = fetchFromGitHub { 1199 owner = "ms-jpq"; 1200 repo = "coq_nvim"; 1201 + rev = "47988a87e9dc594b590f820250784ebc2f7cd4fb"; 1202 + sha256 = "0qsdwvr518vlm3w5xhayh7ahdnazxh7xyvjcmljby3scdcdsfjfn"; 1203 }; 1204 meta.homepage = "https://github.com/ms-jpq/coq_nvim/"; 1205 }; ··· 2339 2340 gitsigns-nvim = buildVimPluginFrom2Nix { 2341 pname = "gitsigns.nvim"; 2342 + version = "2022-02-08"; 2343 src = fetchFromGitHub { 2344 owner = "lewis6991"; 2345 repo = "gitsigns.nvim"; 2346 + rev = "e2b2730254df7648c79794555978f10fceb4b163"; 2347 + sha256 = "1kmbhfphf128psrxps7iyb1kb2s1lbc63qkxwla1cl3ywnl7f8gl"; 2348 }; 2349 meta.homepage = "https://github.com/lewis6991/gitsigns.nvim/"; 2350 }; ··· 3252 3253 litee-calltree-nvim = buildVimPluginFrom2Nix { 3254 pname = "litee-calltree.nvim"; 3255 + version = "2022-02-07"; 3256 src = fetchFromGitHub { 3257 owner = "ldelossa"; 3258 repo = "litee-calltree.nvim"; 3259 + rev = "ba1a0f49e71849863b4212ca0ac1974aeb7c7032"; 3260 + sha256 = "1y55p429rd7z8jph30ils2g35vmqam4qk1ii9s88jwfl545g7qga"; 3261 }; 3262 meta.homepage = "https://github.com/ldelossa/litee-calltree.nvim/"; 3263 }; ··· 3276 3277 litee-symboltree-nvim = buildVimPluginFrom2Nix { 3278 pname = "litee-symboltree.nvim"; 3279 + version = "2022-02-07"; 3280 src = fetchFromGitHub { 3281 owner = "ldelossa"; 3282 repo = "litee-symboltree.nvim"; 3283 + rev = "07545e1c5bd5c081c7e28540591275cbb46b7d02"; 3284 + sha256 = "0pld9i7db4w4wqwc1nnmymfgr7miia60l1rj0pakfkgyf1g5w61s"; 3285 }; 3286 meta.homepage = "https://github.com/ldelossa/litee-symboltree.nvim/"; 3287 }; ··· 3383 3384 lspsaga-nvim = buildVimPluginFrom2Nix { 3385 pname = "lspsaga.nvim"; 3386 + version = "2022-02-08"; 3387 src = fetchFromGitHub { 3388 owner = "tami5"; 3389 repo = "lspsaga.nvim"; 3390 + rev = "d8073a0e4d19d71da900fb77dcc5f23d72bb8707"; 3391 + sha256 = "0f5qzi9kk02z6siqzwz2zak687zb4q2nkg66x3pnnqvhfqazjb5q"; 3392 }; 3393 meta.homepage = "https://github.com/tami5/lspsaga.nvim/"; 3394 }; ··· 3431 3432 luasnip = buildVimPluginFrom2Nix { 3433 pname = "luasnip"; 3434 + version = "2022-02-08"; 3435 src = fetchFromGitHub { 3436 owner = "l3mon4d3"; 3437 repo = "luasnip"; 3438 + rev = "132eff7cb39d9aeeceb80c816ccbda5bca2d60bb"; 3439 + sha256 = "1day60kqq1fgdwcvwm3nx9y2ibkv33c5s75ndv22ajk8cmdrrzdw"; 3440 }; 3441 meta.homepage = "https://github.com/l3mon4d3/luasnip/"; 3442 }; ··· 3563 3564 mini-nvim = buildVimPluginFrom2Nix { 3565 pname = "mini.nvim"; 3566 + version = "2022-02-08"; 3567 src = fetchFromGitHub { 3568 owner = "echasnovski"; 3569 repo = "mini.nvim"; 3570 + rev = "f2ccb9339c979968b19db48b5f8b31c6f0ee7481"; 3571 + sha256 = "0f7yw2mjdimmi70liya75wnbbrk37xi2sncpsg0awh15sibynq05"; 3572 }; 3573 meta.homepage = "https://github.com/echasnovski/mini.nvim/"; 3574 }; ··· 4307 4308 null-ls-nvim = buildVimPluginFrom2Nix { 4309 pname = "null-ls.nvim"; 4310 + version = "2022-02-08"; 4311 src = fetchFromGitHub { 4312 owner = "jose-elias-alvarez"; 4313 repo = "null-ls.nvim"; 4314 + rev = "b1dbbc3807fcb82d6f562145debe6321610bef98"; 4315 + sha256 = "1jbi3lxpbky9y0k7c80shq451l5l3pbbr4wwaqrr76mjwrh49vq7"; 4316 }; 4317 meta.homepage = "https://github.com/jose-elias-alvarez/null-ls.nvim/"; 4318 }; ··· 4679 4680 nvim-lsp-ts-utils = buildVimPluginFrom2Nix { 4681 pname = "nvim-lsp-ts-utils"; 4682 + version = "2022-02-08"; 4683 src = fetchFromGitHub { 4684 owner = "jose-elias-alvarez"; 4685 repo = "nvim-lsp-ts-utils"; 4686 + rev = "337e4fa31d88e5553edeb05ac572bacd4a24d867"; 4687 + sha256 = "1xa2zxyqfgzp4zjccrjnj9djdb4f4i9gr2m4gxa6cqz01b21xwmq"; 4688 }; 4689 meta.homepage = "https://github.com/jose-elias-alvarez/nvim-lsp-ts-utils/"; 4690 }; ··· 4827 src = fetchFromGitHub { 4828 owner = "kyazdani42"; 4829 repo = "nvim-tree.lua"; 4830 + rev = "ea92e7bf7ccd1815b60342706356c373bb7df216"; 4831 + sha256 = "0dj0kcawslqv6iczgkr4b31449zplpz8k4xw5vw327mh9ciyb0xm"; 4832 }; 4833 meta.homepage = "https://github.com/kyazdani42/nvim-tree.lua/"; 4834 }; 4835 4836 nvim-treesitter = buildVimPluginFrom2Nix { 4837 pname = "nvim-treesitter"; 4838 + version = "2022-02-08"; 4839 src = fetchFromGitHub { 4840 owner = "nvim-treesitter"; 4841 repo = "nvim-treesitter"; 4842 + rev = "c867d483a5daee60ba6fb7ec9151c5578e4e96ed"; 4843 + sha256 = "03m6wljyh4rqzjzir22q71hmcrijvk6rylyqmz088fsh214mss5l"; 4844 }; 4845 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; 4846 }; ··· 4883 4884 nvim-treesitter-textobjects = buildVimPluginFrom2Nix { 4885 pname = "nvim-treesitter-textobjects"; 4886 + version = "2022-02-07"; 4887 src = fetchFromGitHub { 4888 owner = "nvim-treesitter"; 4889 repo = "nvim-treesitter-textobjects"; 4890 + rev = "fea609aa58b3390a09e8df0e96902fd4b094d8b7"; 4891 + sha256 = "0221ax71334ghsr8xznp9jk2iv9r0bin47ch8r7hsfh4r0wgc5w7"; 4892 }; 4893 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-textobjects/"; 4894 }; ··· 6628 meta.homepage = "https://github.com/ternjs/tern_for_vim/"; 6629 }; 6630 6631 + tex-conceal-vim = buildVimPluginFrom2Nix { 6632 + pname = "tex-conceal.vim"; 6633 + version = "2022-01-15"; 6634 + src = fetchFromGitHub { 6635 + owner = "KeitaNakamura"; 6636 + repo = "tex-conceal.vim"; 6637 + rev = "93ae39d9222b0892684d02324b85ee9d3647bf8e"; 6638 + sha256 = "05nqqfxkxd8f9xky9mnfxw9g16z1005ka8zxaw52i0n35dg4gg8y"; 6639 + }; 6640 + meta.homepage = "https://github.com/KeitaNakamura/tex-conceal.vim/"; 6641 + }; 6642 + 6643 thesaurus_query-vim = buildVimPluginFrom2Nix { 6644 pname = "thesaurus_query.vim"; 6645 version = "2022-01-30"; ··· 7291 7292 vim-android = buildVimPluginFrom2Nix { 7293 pname = "vim-android"; 7294 + version = "2022-02-08"; 7295 src = fetchFromGitHub { 7296 owner = "hsanson"; 7297 repo = "vim-android"; 7298 + rev = "e9d03b12378b173b39d416df6469ca417b9cac9d"; 7299 + sha256 = "1r7jcd8q41v1v0syy097qd34ydx0bczgad9ihsmsz83bdbx51dbl"; 7300 }; 7301 meta.homepage = "https://github.com/hsanson/vim-android/"; 7302 }; ··· 7339 7340 vim-argwrap = buildVimPluginFrom2Nix { 7341 pname = "vim-argwrap"; 7342 + version = "2022-02-08"; 7343 src = fetchFromGitHub { 7344 owner = "FooSoft"; 7345 repo = "vim-argwrap"; 7346 + rev = "0faba07179f96cae2ab49cf2cc22ebeb922c1532"; 7347 + sha256 = "1lb1rjp1q25gqpzbjix9anjxvx7cqw1qlacvc693f59gl8s8nbf4"; 7348 }; 7349 meta.homepage = "https://github.com/FooSoft/vim-argwrap/"; 7350 }; ··· 7481 meta.homepage = "https://github.com/MattesGroeger/vim-bookmarks/"; 7482 }; 7483 7484 + vim-boxdraw = buildVimPluginFrom2Nix { 7485 + pname = "vim-boxdraw"; 7486 + version = "2021-01-28"; 7487 + src = fetchFromGitHub { 7488 + owner = "gyim"; 7489 + repo = "vim-boxdraw"; 7490 + rev = "b7f789f305b1c5b0b4623585e0f10adb417f2966"; 7491 + sha256 = "0zr3r4dgpdadaz3g9hzn7vyv0rids0k1wdywk9yywfp6q9m0ygj8"; 7492 + }; 7493 + meta.homepage = "https://github.com/gyim/vim-boxdraw/"; 7494 + }; 7495 + 7496 vim-bracketed-paste = buildVimPluginFrom2Nix { 7497 pname = "vim-bracketed-paste"; 7498 version = "2018-05-22"; ··· 7577 meta.homepage = "https://github.com/kristijanhusak/vim-carbon-now-sh/"; 7578 }; 7579 7580 + vim-ccls = buildVimPluginFrom2Nix { 7581 + pname = "vim-ccls"; 7582 + version = "2022-01-29"; 7583 + src = fetchFromGitHub { 7584 + owner = "m-pilia"; 7585 + repo = "vim-ccls"; 7586 + rev = "93ac5dbdeaaaed8fdfd6d850f1e57fb28d204886"; 7587 + sha256 = "15dr487baghlhl559a4zqpm8vnpm77aci4gw9x95v4kds9g4g51k"; 7588 + }; 7589 + meta.homepage = "https://github.com/m-pilia/vim-ccls/"; 7590 + }; 7591 + 7592 vim-choosewin = buildVimPluginFrom2Nix { 7593 pname = "vim-choosewin"; 7594 version = "2021-04-22"; ··· 7651 7652 vim-closer = buildVimPluginFrom2Nix { 7653 pname = "vim-closer"; 7654 + version = "2022-02-07"; 7655 src = fetchFromGitHub { 7656 owner = "rstacruz"; 7657 repo = "vim-closer"; 7658 + rev = "43acc7c59fca861cb92cc47f01f184d9d342a73b"; 7659 + sha256 = "1q03kz5ffyz8ifxdn7bgf3r7jlqa8vya13pnjyqda15wly1fl0k8"; 7660 }; 7661 meta.homepage = "https://github.com/rstacruz/vim-closer/"; 7662 }; ··· 8347 8348 vim-floaterm = buildVimPluginFrom2Nix { 8349 pname = "vim-floaterm"; 8350 + version = "2022-02-08"; 8351 src = fetchFromGitHub { 8352 owner = "voldikss"; 8353 repo = "vim-floaterm"; 8354 + rev = "237787fe2206f8ebec1293aa5730eef71b04c69b"; 8355 + sha256 = "1qr9cf8yk6kjm3q7pgcp2pkbli31x94vgxxzd4xx7f4ssfv8l0bl"; 8356 }; 8357 meta.homepage = "https://github.com/voldikss/vim-floaterm/"; 8358 }; ··· 8587 8588 vim-graphql = buildVimPluginFrom2Nix { 8589 pname = "vim-graphql"; 8590 + version = "2022-02-07"; 8591 src = fetchFromGitHub { 8592 owner = "jparise"; 8593 repo = "vim-graphql"; 8594 + rev = "15c5937688490af8dde09e90c9a5585c840ba81c"; 8595 + sha256 = "07j704ysc2klqfjk3918b1kjq16pw1yb1fykdsi2a0lamndn9l04"; 8596 }; 8597 meta.homepage = "https://github.com/jparise/vim-graphql/"; 8598 }; ··· 11395 sha256 = "1yizvf9s9djxar64kp63r45q5vv2k616xskd4adkcfqn8crzyw52"; 11396 }; 11397 meta.homepage = "https://github.com/jreybert/vimagit/"; 11398 + }; 11399 + 11400 + VimCompletesMe = buildVimPluginFrom2Nix { 11401 + pname = "VimCompletesMe"; 11402 + version = "2020-12-30"; 11403 + src = fetchFromGitHub { 11404 + owner = "ackyshake"; 11405 + repo = "VimCompletesMe"; 11406 + rev = "2c69e30675d2a30208099742d14bd661d99fc5f2"; 11407 + sha256 = "0gjzl0027xjkq0mbqs9grab38ghwnixr57b4wicl113yd76hyb5i"; 11408 + }; 11409 + meta.homepage = "https://github.com/ackyshake/VimCompletesMe/"; 11410 }; 11411 11412 vimelette = buildVimPluginFrom2Nix {
+5
pkgs/misc/vim-plugins/vim-plugin-names
··· 3 AckslD/nvim-neoclip.lua 4 AckslD/nvim-whichkey-setup.lua 5 ackyshake/Spacegray.vim 6 ahmedkhalf/lsp-rooter.nvim 7 ahmedkhalf/project.nvim 8 airblade/vim-gitgutter ··· 222 guns/vim-clojure-static 223 guns/vim-sexp 224 guns/xterm-color-table.vim 225 haringsrob/nvim_context_vt 226 hashivim/vim-packer 227 hashivim/vim-terraform ··· 362 kdheepak/lazygit.nvim 363 kdheepak/tabline.nvim 364 KeitaNakamura/neodark.vim 365 keith/investigate.vim 366 keith/rspec.vim 367 keith/swift.vim ··· 432 luochen1990/rainbow 433 luukvbaal/stabilize.nvim 434 lyokha/vim-xkbswitch 435 machakann/vim-highlightedyank 436 machakann/vim-sandwich 437 machakann/vim-swap ··· 629 powerman/vim-plugin-AnsiEsc 630 PProvost/vim-ps1 631 prabirshrestha/async.vim 632 prabirshrestha/asyncomplete.vim 633 prabirshrestha/vim-lsp 634 preservim/nerdcommenter
··· 3 AckslD/nvim-neoclip.lua 4 AckslD/nvim-whichkey-setup.lua 5 ackyshake/Spacegray.vim 6 + ackyshake/VimCompletesMe 7 ahmedkhalf/lsp-rooter.nvim 8 ahmedkhalf/project.nvim 9 airblade/vim-gitgutter ··· 223 guns/vim-clojure-static 224 guns/vim-sexp 225 guns/xterm-color-table.vim 226 + gyim/vim-boxdraw 227 haringsrob/nvim_context_vt 228 hashivim/vim-packer 229 hashivim/vim-terraform ··· 364 kdheepak/lazygit.nvim 365 kdheepak/tabline.nvim 366 KeitaNakamura/neodark.vim 367 + KeitaNakamura/tex-conceal.vim 368 keith/investigate.vim 369 keith/rspec.vim 370 keith/swift.vim ··· 435 luochen1990/rainbow 436 luukvbaal/stabilize.nvim 437 lyokha/vim-xkbswitch 438 + m-pilia/vim-ccls 439 machakann/vim-highlightedyank 440 machakann/vim-sandwich 441 machakann/vim-swap ··· 633 powerman/vim-plugin-AnsiEsc 634 PProvost/vim-ps1 635 prabirshrestha/async.vim 636 + prabirshrestha/asyncomplete-lsp.vim 637 prabirshrestha/asyncomplete.vim 638 prabirshrestha/vim-lsp 639 preservim/nerdcommenter
+6 -2
pkgs/misc/vscode-extensions/_maintainers/update-bin-srcs-lib.sh
··· 105 jsonStorePath="$(echo "$jsonShaWStorePath" | tail -n1)" 106 1>&2 echo "jsonStorePath='$jsonStorePath'" 107 108 declare jqQuery 109 jqQuery=$(cat <<'EOF' 110 .runtimeDependencies 111 - | map(select(.platforms[] | in({"linux": null}))) 112 - | map(select(.architectures[] | in({"x86_64": null}))) 113 | .[] | { 114 (.id + "__" + (.architectures[0]) + "-" + (.platforms[0])): 115 {installPath, binaries, urls: [.url, .fallbackUrl] | map(select(. != null))}
··· 105 jsonStorePath="$(echo "$jsonShaWStorePath" | tail -n1)" 106 1>&2 echo "jsonStorePath='$jsonStorePath'" 107 108 + # Assume packages without an architectures are for x86_64 and remap arm64 to aarch64. 109 declare jqQuery 110 jqQuery=$(cat <<'EOF' 111 .runtimeDependencies 112 + | map(select(.platforms[] | in({"linux": null, "darwin": null}))) 113 + | map(select(.architectures == null).architectures |= ["x86_64"]) 114 + | map(del(.architectures[] | select(. | in({"x86_64": null, "arm64": null}) | not))) 115 + | map((.architectures[] | select(. == "arm64")) |= "aarch64") 116 + | map(select(.architectures != [])) 117 | .[] | { 118 (.id + "__" + (.architectures[0]) + "-" + (.platforms[0])): 119 {installPath, binaries, urls: [.url, .fallbackUrl] | map(select(. != null))}
+20 -6
pkgs/misc/vscode-extensions/ms-dotnettools-csharp/default.nix
··· 38 rtDepsBinSrcs."${bSrcName}__${stdenv.targetPlatform.system}"; 39 40 omnisharp = rtDepBinSrcByName "OmniSharp"; 41 - vsdbg = rtDepBinSrcByName "Debugger"; 42 razor = rtDepBinSrcByName "Razor"; 43 in 44 ··· 46 mktplcRef = { 47 name = "csharp"; 48 publisher = "ms-dotnettools"; 49 - version = "1.23.15"; 50 - sha256 = "0b74jr45zl7lzirjgj8s2lbf3viy9pbwlgjh055rcwmy77wcml1x"; 51 }; 52 53 nativeBuildInputs = [ ··· 112 chmod a+x "$omnisharp_dir/run" 113 touch "$omnisharp_dir/install.Lock" 114 115 declare vsdbg_dir="$PWD/${vsdbg.installPath}" 116 unzip_to "${vsdbg.bin-src}" "$vsdbg_dir" 117 chmod a+x "$vsdbg_dir/vsdbg-ui" 118 chmod a+x "$vsdbg_dir/vsdbg" 119 touch "$vsdbg_dir/install.complete" 120 touch "$vsdbg_dir/install.Lock" 121 - patchelf_common "$vsdbg_dir/vsdbg" 122 - patchelf_common "$vsdbg_dir/vsdbg-ui" 123 124 declare razor_dir="$PWD/${razor.installPath}" 125 unzip_to "${razor.bin-src}" "$razor_dir" 126 chmod a+x "$razor_dir/rzls" 127 touch "$razor_dir/install.Lock" 128 patchelf_common "$razor_dir/rzls" 129 ''; 130 131 meta = with lib; { ··· 133 homepage = "https://github.com/OmniSharp/omnisharp-vscode"; 134 license = licenses.mit; 135 maintainers = [ maintainers.jraygauthier ]; 136 - platforms = [ "x86_64-linux" ]; 137 }; 138 }
··· 38 rtDepsBinSrcs."${bSrcName}__${stdenv.targetPlatform.system}"; 39 40 omnisharp = rtDepBinSrcByName "OmniSharp"; 41 + vsdbgs = [ 42 + (rtDepBinSrcByName "Debugger") 43 + ] ++ lib.optionals (stdenv.isDarwin) [ 44 + # Include the aarch64-darwin debugger binaries on x86_64-darwin. Even though OmniSharp will be 45 + # running under Rosetta 2, debugging will fail to start if both sets of binaries are not present. 46 + (rtDepsBinSrcs."Debugger__aarch64-darwin") 47 + ]; 48 razor = rtDepBinSrcByName "Razor"; 49 in 50 ··· 52 mktplcRef = { 53 name = "csharp"; 54 publisher = "ms-dotnettools"; 55 + version = "1.23.16"; 56 + sha256 = "sha256-fM4vcSMi2tEjIox9Twh2sRiFhXgAeRwAM9to3vtcSqI="; 57 }; 58 59 nativeBuildInputs = [ ··· 118 chmod a+x "$omnisharp_dir/run" 119 touch "$omnisharp_dir/install.Lock" 120 121 + '' + builtins.concatStringsSep "\n" (map (vsdbg: '' 122 declare vsdbg_dir="$PWD/${vsdbg.installPath}" 123 unzip_to "${vsdbg.bin-src}" "$vsdbg_dir" 124 chmod a+x "$vsdbg_dir/vsdbg-ui" 125 chmod a+x "$vsdbg_dir/vsdbg" 126 touch "$vsdbg_dir/install.complete" 127 touch "$vsdbg_dir/install.Lock" 128 129 + '') vsdbgs) + '' 130 declare razor_dir="$PWD/${razor.installPath}" 131 unzip_to "${razor.bin-src}" "$razor_dir" 132 chmod a+x "$razor_dir/rzls" 133 touch "$razor_dir/install.Lock" 134 + 135 + '' + lib.optionalString stdenv.isLinux '' 136 + patchelf_common "$vsdbg_dir/vsdbg" 137 + patchelf_common "$vsdbg_dir/vsdbg-ui" 138 patchelf_common "$razor_dir/rzls" 139 + 140 + '' + lib.optionalString stdenv.isDarwin '' 141 + substituteInPlace $omnisharp_dir/etc/config \ 142 + --replace "libmono-native-compat.dylib" "libmono-native.dylib" 143 ''; 144 145 meta = with lib; { ··· 147 homepage = "https://github.com/OmniSharp/omnisharp-vscode"; 148 license = licenses.mit; 149 maintainers = [ maintainers.jraygauthier ]; 150 + platforms = [ "x86_64-linux" "x86_64-darwin" ]; 151 }; 152 }
+62 -4
pkgs/misc/vscode-extensions/ms-dotnettools-csharp/rt-deps-bin-srcs.json
··· 1 { 2 "OmniSharp__x86_64-linux": { 3 - "installPath": ".omnisharp/1.37.15", 4 "binaries": [ 5 "./mono.linux-x86_64", 6 "./run" 7 ], 8 "urls": [ 9 - "https://download.visualstudio.microsoft.com/download/pr/4fbf71ce-5375-4ca9-b70d-8024ba1b9e0a/b96375395e639233d546a4937be3bd32/omnisharp-linux-x64-1.37.15.zip", 10 - "https://roslynomnisharp.blob.core.windows.net/releases/1.37.15/omnisharp-linux-x64-1.37.15.zip" 11 ], 12 - "sha256": "0pchywkxy8niq0i6gq2r43cmf58blfhhj8w8zyibf0m9h09h165s" 13 }, 14 "Debugger__x86_64-linux": { 15 "installPath": ".debugger", ··· 32 "https://download.visualstudio.microsoft.com/download/pr/b8678010-2cd7-4201-a5e7-ba57920607d5/b846e9c7d7afdba54a72fae1dcb6c42c/razorlanguageserver-linux-x64-6.0.0-preview.5.21358.6.zip" 33 ], 34 "sha256": "0gb36nlb7fgcv03a0awna1qyrsky6ys5gkpsmvxc5j35f1yq337b" 35 } 36 }
··· 1 { 2 + "OmniSharp__x86_64-darwin": { 3 + "installPath": ".omnisharp/1.37.16", 4 + "binaries": [ 5 + "./mono.osx", 6 + "./run" 7 + ], 8 + "urls": [ 9 + "https://download.visualstudio.microsoft.com/download/pr/03c32aa6-7c7a-4936-82a0-fd8f816d112f/0ea1ea1eae48552a1992ed6df782353a/omnisharp-osx-1.37.16.zip", 10 + "https://roslynomnisharp.blob.core.windows.net/releases/1.37.16/omnisharp-osx-1.37.16.zip" 11 + ], 12 + "sha256": "0hhgfx7zs1rljhn3n9c7lci7j15yp2448z3f1d3c47a95l1hmlip" 13 + }, 14 "OmniSharp__x86_64-linux": { 15 + "installPath": ".omnisharp/1.37.16", 16 "binaries": [ 17 "./mono.linux-x86_64", 18 "./run" 19 ], 20 "urls": [ 21 + "https://download.visualstudio.microsoft.com/download/pr/03c32aa6-7c7a-4936-82a0-fd8f816d112f/9ae3ed99fc0c41c7139751dde6f2bc78/omnisharp-linux-x64-1.37.16.zip", 22 + "https://roslynomnisharp.blob.core.windows.net/releases/1.37.16/omnisharp-linux-x64-1.37.16.zip" 23 + ], 24 + "sha256": "0a2basc6dw42fnjv9zz93ff0bsw2i3446gvcjx5mn5d8dasi483i" 25 + }, 26 + "Debugger__x86_64-darwin": { 27 + "installPath": ".debugger/x86_64", 28 + "binaries": [ 29 + "./vsdbg-ui", 30 + "./vsdbg" 31 ], 32 + "urls": [ 33 + "https://download.visualstudio.microsoft.com/download/pr/49f44239-bd47-4fb5-91be-4c91d7638fff/c1122f7141735472d9583c1124024c55/coreclr-debug-osx-x64.zip", 34 + "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-23-14/coreclr-debug-osx-x64.zip" 35 + ], 36 + "sha256": "08z3k0h25gdsbmlxwayd94672hp2z7zmwdmd0nyr9j82izj3ci2m" 37 + }, 38 + "Debugger__aarch64-darwin": { 39 + "installPath": ".debugger/arm64", 40 + "binaries": [ 41 + "./vsdbg-ui", 42 + "./vsdbg" 43 + ], 44 + "urls": [ 45 + "https://download.visualstudio.microsoft.com/download/pr/49f44239-bd47-4fb5-91be-4c91d7638fff/96a88189c7904a517f3bb59b2dba8bd1/coreclr-debug-osx-arm64.zip", 46 + "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-23-14/coreclr-debug-osx-arm64.zip" 47 + ], 48 + "sha256": "113kz02ihvb4y5fj01wamqz2jsql2q7n7f55s9kzs9dsrmq5ffa0" 49 + }, 50 + "Debugger__aarch64-linux": { 51 + "installPath": ".debugger", 52 + "binaries": [ 53 + "./vsdbg-ui", 54 + "./vsdbg" 55 + ], 56 + "urls": [ 57 + "https://download.visualstudio.microsoft.com/download/pr/49f44239-bd47-4fb5-91be-4c91d7638fff/7a723bfbda6d196c52084226b6835b36/coreclr-debug-linux-arm64.zip", 58 + "https://vsdebugger.blob.core.windows.net/coreclr-debug-1-23-14/coreclr-debug-linux-arm64.zip" 59 + ], 60 + "sha256": "1d4a5q3f7qfk3jq2i4f6g50i9i4z8z7g8ss083y9n5c1yj3629kw" 61 }, 62 "Debugger__x86_64-linux": { 63 "installPath": ".debugger", ··· 80 "https://download.visualstudio.microsoft.com/download/pr/b8678010-2cd7-4201-a5e7-ba57920607d5/b846e9c7d7afdba54a72fae1dcb6c42c/razorlanguageserver-linux-x64-6.0.0-preview.5.21358.6.zip" 81 ], 82 "sha256": "0gb36nlb7fgcv03a0awna1qyrsky6ys5gkpsmvxc5j35f1yq337b" 83 + }, 84 + "Razor__x86_64-darwin": { 85 + "installPath": ".razor", 86 + "binaries": [ 87 + "./rzls" 88 + ], 89 + "urls": [ 90 + "https://download.visualstudio.microsoft.com/download/pr/b8678010-2cd7-4201-a5e7-ba57920607d5/ad846449769eb2ae810d0236823a6aaa/razorlanguageserver-osx-x64-6.0.0-preview.5.21358.6.zip" 91 + ], 92 + "sha256": "0iqinpwwlqwajdq4i1qbb9hfpfmgy17av95bpw02ad2f9fnyh572" 93 } 94 }
+1 -1
pkgs/misc/vscode-extensions/ms-dotnettools-csharp/update-bin-srcs
··· 10 11 declare extPublisher="ms-dotnettools" 12 declare extName="csharp" 13 - declare defaultExtVersion="1.23.15" 14 declare extVersion="${1:-$defaultExtVersion}" 15 16 formatExtRuntimeDeps \
··· 10 11 declare extPublisher="ms-dotnettools" 12 declare extName="csharp" 13 + declare defaultExtVersion="1.23.16" 14 declare extVersion="${1:-$defaultExtVersion}" 15 16 formatExtRuntimeDeps \
+4 -4
pkgs/misc/vscode-extensions/vscode-lldb/default.nix
··· 5 let 6 publisher = "vadimcn"; 7 pname = "vscode-lldb"; 8 - version = "1.6.8"; 9 10 vscodeExtUniqueId = "${publisher}.${pname}"; 11 ··· 13 owner = "vadimcn"; 14 repo = "vscode-lldb"; 15 rev = "v${version}"; 16 - sha256 = "sha256-/2iyWJfNjvk5n7KwWIu2gc24/21KWibU6IAPN/tJ8Q4="; 17 }; 18 19 lldb = callPackage ./lldb.nix {}; ··· 25 # It will pollute the build environment of `buildRustPackage`. 26 cargoPatches = [ ./reset-cargo-config.patch ]; 27 28 - cargoSha256 = "sha256-rG+Qw8ac9cCgCjfLFXLlohLk+zV5s1OaqzU0/nXiqgU="; 29 30 nativeBuildInputs = [ makeWrapper ]; 31 ··· 98 description = "A native debugger extension for VSCode based on LLDB"; 99 homepage = "https://github.com/vadimcn/vscode-lldb"; 100 license = with licenses; [ mit ]; 101 - maintainers = with maintainers; [ oxalica ]; 102 platforms = platforms.all; 103 }; 104 }
··· 5 let 6 publisher = "vadimcn"; 7 pname = "vscode-lldb"; 8 + version = "1.6.10"; 9 10 vscodeExtUniqueId = "${publisher}.${pname}"; 11 ··· 13 owner = "vadimcn"; 14 repo = "vscode-lldb"; 15 rev = "v${version}"; 16 + sha256 = "sha256-4PM/818UFHRZekfbdhS/Rz0Pu6HOjJEldi4YuBWECnI="; 17 }; 18 19 lldb = callPackage ./lldb.nix {}; ··· 25 # It will pollute the build environment of `buildRustPackage`. 26 cargoPatches = [ ./reset-cargo-config.patch ]; 27 28 + cargoSha256 = "sha256-Ch1X2vN+p7oCqSs/GIu5IzG+pcSKmQ+VwP2T8ycRhos="; 29 30 nativeBuildInputs = [ makeWrapper ]; 31 ··· 98 description = "A native debugger extension for VSCode based on LLDB"; 99 homepage = "https://github.com/vadimcn/vscode-lldb"; 100 license = with licenses; [ mit ]; 101 + maintainers = with maintainers; [ nigelgbanks ]; 102 platforms = platforms.all; 103 }; 104 }
+4 -1
pkgs/os-specific/linux/displaylink/default.nix
··· 51 installPhase = '' 52 install -Dt $out/lib/displaylink *.spkg 53 install -Dm755 ${bins}/DisplayLinkManager $out/bin/DisplayLinkManager 54 - mkdir -p $out/lib/udev/rules.d 55 cp ${./99-displaylink.rules} $out/lib/udev/rules.d/99-displaylink.rules 56 patchelf \ 57 --set-interpreter $(cat ${stdenv.cc}/nix-support/dynamic-linker) \ ··· 59 $out/bin/DisplayLinkManager 60 wrapProgram $out/bin/DisplayLinkManager \ 61 --run "cd $out/lib/displaylink" 62 ''; 63 64 dontStrip = true;
··· 51 installPhase = '' 52 install -Dt $out/lib/displaylink *.spkg 53 install -Dm755 ${bins}/DisplayLinkManager $out/bin/DisplayLinkManager 54 + mkdir -p $out/lib/udev/rules.d $out/share 55 cp ${./99-displaylink.rules} $out/lib/udev/rules.d/99-displaylink.rules 56 patchelf \ 57 --set-interpreter $(cat ${stdenv.cc}/nix-support/dynamic-linker) \ ··· 59 $out/bin/DisplayLinkManager 60 wrapProgram $out/bin/DisplayLinkManager \ 61 --run "cd $out/lib/displaylink" 62 + 63 + # We introduce a dependency on the source file so that it need not be redownloaded everytime 64 + echo $src >> "$out/share/workspace_dependencies.pin" 65 ''; 66 67 dontStrip = true;
+1 -1
pkgs/os-specific/linux/nixos-rebuild/nixos-rebuild.sh
··· 71 j="$1"; shift 1 72 extraBuildFlags+=("$i" "$j") 73 ;; 74 - --show-trace|--keep-failed|-K|--keep-going|-k|--verbose|-v|-vv|-vvv|-vvvv|-vvvvv|--fallback|--repair|--no-build-output|-Q|-j*|-L|--refresh|--no-net|--offline|--impure) 75 extraBuildFlags+=("$i") 76 ;; 77 --option)
··· 71 j="$1"; shift 1 72 extraBuildFlags+=("$i" "$j") 73 ;; 74 + --show-trace|--keep-failed|-K|--keep-going|-k|--verbose|-v|-vv|-vvv|-vvvv|-vvvvv|--fallback|--repair|--no-build-output|-Q|-j*|-L|--print-build-logs|--refresh|--no-net|--offline|--impure) 75 extraBuildFlags+=("$i") 76 ;; 77 --option)
+2 -1
pkgs/os-specific/linux/nvidia-x11/builder.sh
··· 89 sed -E "s#(libGLX_nvidia)#$i/lib/\\1#" nvidia_icd.json > nvidia_icd.json.fixed 90 fi 91 92 if [ "$system" = "i686-linux" ]; then 93 install -Dm644 nvidia_icd.json.fixed $i/share/vulkan/icd.d/nvidia_icd.i686.json 94 else 95 - install -Dm644 nvidia_icd.json.fixed $i/share/vulkan/icd.d/nvidia_icd.json 96 fi 97 fi 98
··· 89 sed -E "s#(libGLX_nvidia)#$i/lib/\\1#" nvidia_icd.json > nvidia_icd.json.fixed 90 fi 91 92 + # nvidia currently only supports x86_64 and i686 93 if [ "$system" = "i686-linux" ]; then 94 install -Dm644 nvidia_icd.json.fixed $i/share/vulkan/icd.d/nvidia_icd.i686.json 95 else 96 + install -Dm644 nvidia_icd.json.fixed $i/share/vulkan/icd.d/nvidia_icd.x86_64.json 97 fi 98 fi 99
+1 -1
pkgs/os-specific/linux/nvidia-x11/generic.nix
··· 115 description = "X.org driver and kernel module for NVIDIA graphics cards"; 116 license = licenses.unfreeRedistributable; 117 platforms = [ "x86_64-linux" ] ++ optionals (!i686bundled) [ "i686-linux" ]; 118 - maintainers = with maintainers; [ ]; 119 priority = 4; # resolves collision with xorg-server's "lib/xorg/modules/extensions/libglx.so" 120 inherit broken; 121 };
··· 115 description = "X.org driver and kernel module for NVIDIA graphics cards"; 116 license = licenses.unfreeRedistributable; 117 platforms = [ "x86_64-linux" ] ++ optionals (!i686bundled) [ "i686-linux" ]; 118 + maintainers = with maintainers; [ jonringer ]; 119 priority = 4; # resolves collision with xorg-server's "lib/xorg/modules/extensions/libglx.so" 120 inherit broken; 121 };
+2 -2
pkgs/servers/dns/knot-dns/default.nix
··· 5 6 stdenv.mkDerivation rec { 7 pname = "knot-dns"; 8 - version = "3.1.5"; 9 10 src = fetchurl { 11 url = "https://secure.nic.cz/files/knot-dns/knot-${version}.tar.xz"; 12 - sha256 = "2da6e50b0662297d55f80e349568224e07fe88cad20bee1d2e22f54bb32da064"; 13 }; 14 15 outputs = [ "bin" "out" "dev" ];
··· 5 6 stdenv.mkDerivation rec { 7 pname = "knot-dns"; 8 + version = "3.1.6"; 9 10 src = fetchurl { 11 url = "https://secure.nic.cz/files/knot-dns/knot-${version}.tar.xz"; 12 + sha256 = "e9ba1305d750dc08fb08687aec7ac55737ca073deaa0b867c884e0c0f2fdb753"; 13 }; 14 15 outputs = [ "bin" "out" "dev" ];
+1 -1
pkgs/servers/foundationdb/cmake.nix
··· 123 homepage = "https://www.foundationdb.org"; 124 license = licenses.asl20; 125 platforms = [ "x86_64-linux" ]; 126 - maintainers = with maintainers; [ thoughtpolice ]; 127 }; 128 }; 129 in makeFdb
··· 123 homepage = "https://www.foundationdb.org"; 124 license = licenses.asl20; 125 platforms = [ "x86_64-linux" ]; 126 + maintainers = with maintainers; [ thoughtpolice lostnet ]; 127 }; 128 }; 129 in makeFdb
+2 -1
pkgs/servers/foundationdb/default.nix
··· 2 , lib, fetchurl, fetchpatch, fetchFromGitHub 3 4 , cmake, ninja, which, findutils, m4, gawk 5 - , python2, python3, openjdk, mono, libressl, boost 6 }@args: 7 8 let ··· 10 cmakeBuild = import ./cmake.nix (args // { 11 gccStdenv = gccStdenv; 12 llvmPackages = llvmPackages; 13 }); 14 15 python3-six-patch = fetchpatch {
··· 2 , lib, fetchurl, fetchpatch, fetchFromGitHub 3 4 , cmake, ninja, which, findutils, m4, gawk 5 + , python2, python3, openjdk, mono, libressl, boost168 6 }@args: 7 8 let ··· 10 cmakeBuild = import ./cmake.nix (args // { 11 gccStdenv = gccStdenv; 12 llvmPackages = llvmPackages; 13 + boost = boost168; 14 }); 15 16 python3-six-patch = fetchpatch {
+1 -1
pkgs/servers/home-assistant/component-packages.nix
··· 2 # Do not edit! 3 4 { 5 - version = "2022.2.2"; 6 components = { 7 "abode" = ps: with ps; [ abodepy ]; 8 "accuweather" = ps: with ps; [ accuweather ];
··· 2 # Do not edit! 3 4 { 5 + version = "2022.2.3"; 6 components = { 7 "abode" = ps: with ps; [ abodepy ]; 8 "accuweather" = ps: with ps; [ accuweather ];
+2 -2
pkgs/servers/home-assistant/default.nix
··· 121 extraBuildInputs = extraPackages python.pkgs; 122 123 # Don't forget to run parse-requirements.py after updating 124 - hassVersion = "2022.2.2"; 125 126 in python.pkgs.buildPythonApplication rec { 127 pname = "homeassistant"; ··· 139 owner = "home-assistant"; 140 repo = "core"; 141 rev = version; 142 - hash = "sha256:09hji1n6blnr10k5y1rhp4v66iz2gwfd7afcd0sz156kw4g5mq89"; 143 }; 144 145 # leave this in, so users don't have to constantly update their downstream patch handling
··· 121 extraBuildInputs = extraPackages python.pkgs; 122 123 # Don't forget to run parse-requirements.py after updating 124 + hassVersion = "2022.2.3"; 125 126 in python.pkgs.buildPythonApplication rec { 127 pname = "homeassistant"; ··· 139 owner = "home-assistant"; 140 repo = "core"; 141 rev = version; 142 + hash = "sha256:OqyWm7O8ajxBlWGzvNhZvFmy5p2dINfMQ3cQ304Er18="; 143 }; 144 145 # leave this in, so users don't have to constantly update their downstream patch handling
+11 -3
pkgs/servers/matrix-synapse/plugins/shared-secret-auth.nix
··· 1 - { buildPythonPackage, fetchFromGitHub, twisted }: 2 3 buildPythonPackage rec { 4 pname = "matrix-synapse-shared-secret-auth"; 5 - version = "1.0.2"; 6 7 src = fetchFromGitHub { 8 owner = "devture"; 9 repo = "matrix-synapse-shared-secret-auth"; 10 rev = version; 11 - sha256 = "0cnxp3bp8mmk01a0g3lzgvaawyywjg754j4nb9iwkmm3c2nqvnpz"; 12 }; 13 14 doCheck = false; 15 pythonImportsCheck = [ "shared_secret_authenticator" ]; 16 17 propagatedBuildInputs = [ twisted ]; 18 }
··· 1 + { lib, buildPythonPackage, fetchFromGitHub, matrix-synapse, twisted }: 2 3 buildPythonPackage rec { 4 pname = "matrix-synapse-shared-secret-auth"; 5 + version = "2.0.1"; 6 7 src = fetchFromGitHub { 8 owner = "devture"; 9 repo = "matrix-synapse-shared-secret-auth"; 10 rev = version; 11 + sha256 = "sha256-kaok5IwKx97FYDrVIGAtUJfExqDln5vxEKrZda2RdzE="; 12 }; 13 14 doCheck = false; 15 pythonImportsCheck = [ "shared_secret_authenticator" ]; 16 17 + buildInputs = [ matrix-synapse ]; 18 propagatedBuildInputs = [ twisted ]; 19 + 20 + meta = with lib; { 21 + description = "Shared Secret Authenticator password provider module for Matrix Synapse"; 22 + homepage = "https://github.com/devture/matrix-synapse-shared-secret-auth"; 23 + license = licenses.agpl3Plus; 24 + maintainers = with maintainers; [ sumnerevans ]; 25 + }; 26 }
-50
pkgs/servers/shellinabox/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, pam, openssl, openssh, shadow, makeWrapper }: 2 - 3 - stdenv.mkDerivation rec { 4 - version = "2.20"; 5 - pname = "shellinabox"; 6 - 7 - src = fetchFromGitHub { 8 - owner = "shellinabox"; 9 - repo = "shellinabox"; 10 - rev = "v${version}"; 11 - sha256 = "1hmfayh21cks2lyj572944ll0mmgsxbnj981b3hq3nhdg8ywzjfr"; 12 - }; 13 - 14 - patches = [ 15 - ./shellinabox-minus.patch 16 - (fetchpatch { 17 - name = "CVE-2018-16789.patch"; 18 - url = "https://github.com/shellinabox/shellinabox/commit/4f0ecc31ac6f985e0dd3f5a52cbfc0e9251f6361.patch"; 19 - sha256 = "1mpm6acxdb0fms9pa2b88fx6hp07ph87ahxi82yyqj2m7p79jx7a"; 20 - }) 21 - ]; 22 - 23 - nativeBuildInputs = [ autoreconfHook makeWrapper ]; 24 - buildInputs = [ pam openssl openssh ]; 25 - 26 - # Disable GSSAPIAuthentication errors. Also, paths in certain source files are 27 - # hardcoded. Replace the hardcoded paths with correct paths. 28 - preConfigure = '' 29 - substituteInPlace ./shellinabox/service.c --replace "-oGSSAPIAuthentication=no" "" 30 - substituteInPlace ./shellinabox/launcher.c --replace "/usr/games" "${openssh}/bin" 31 - substituteInPlace ./shellinabox/service.c --replace "/bin/login" "${shadow}/bin/login" 32 - substituteInPlace ./shellinabox/launcher.c --replace "/bin/login" "${shadow}/bin/login" 33 - substituteInPlace ./libhttp/ssl.c --replace "/usr/bin" "${openssl.bin}/bin" 34 - ''; 35 - 36 - postInstall = '' 37 - wrapProgram $out/bin/shellinaboxd \ 38 - --prefix LD_LIBRARY_PATH : ${openssl.out}/lib 39 - mkdir -p $out/lib 40 - cp shellinabox/* $out/lib 41 - ''; 42 - 43 - meta = with lib; { 44 - homepage = "https://github.com/shellinabox/shellinabox"; 45 - description = "Web based AJAX terminal emulator"; 46 - license = licenses.gpl2; 47 - maintainers = with maintainers; [ tomberek lihop ]; 48 - platforms = platforms.linux; 49 - }; 50 - }
···
-28
pkgs/servers/shellinabox/shellinabox-minus.patch
··· 1 - diff -ru shellinabox-2.14/shellinabox/vt100.jspp shellinabox-2.14.new/shellinabox/vt100.jspp 2 - --- shellinabox-2.14/shellinabox/vt100.jspp 2012-04-21 21:30:44.000000000 +0400 3 - +++ shellinabox-2.14.new/shellinabox/vt100.jspp 2014-03-27 16:33:31.012344164 +0400 4 - @@ -2676,6 +2676,7 @@ 5 - switch (key) { 6 - case 33: /* Page Up */ this.scrollBack(); return; 7 - case 34: /* Page Down */ this.scrollFore(); return; 8 - + case 173: /* _ */ ch = this.applyModifiers(95, event); break; 9 - default: break; 10 - } 11 - } 12 - @@ -2738,6 +2739,7 @@ 13 - case 123: /* F12 */ ch = '\u001B[24~'; break; 14 - case 144: /* Num Lock */ return; 15 - case 145: /* Scroll Lock */ return; 16 - + case 173: /* - */ ch = this.applyModifiers(45, event); break; 17 - case 186: /* ; */ ch = this.applyModifiers(59, event); break; 18 - case 187: /* = */ ch = this.applyModifiers(61, event); break; 19 - case 188: /* , */ ch = this.applyModifiers(44, event); break; 20 - @@ -2882,6 +2884,7 @@ 21 - case 109: /* - -> _ */ u = 45; s = 95; break; 22 - case 111: /* / -> ? */ u = 47; s = 63; break; 23 - 24 - + case 173: /* - -> _ */ u = 45; s = 95; break; 25 - case 186: /* ; -> : */ u = 59; s = 58; break; 26 - case 187: /* = -> + */ u = 61; s = 43; break; 27 - case 188: /* , -> < */ u = 44; s = 60; break; 28 -
···
+5 -4
pkgs/tools/admin/syft/default.nix
··· 2 3 buildGoModule rec { 4 pname = "syft"; 5 - version = "0.36.0"; 6 7 src = fetchFromGitHub { 8 owner = "anchore"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-JNW4sozNtLey7uAj1xECR/ui+/1L02moZKuGzWXIh5k="; 12 # populate values that require us to use git. By doing this in postFetch we 13 # can delete .git afterwards and maintain better reproducibility of the src. 14 leaveDotGit = true; 15 postFetch = '' 16 cd "$out" 17 commit="$(git rev-parse HEAD)" 18 - source_date_epoch=$(git log --date=format:'%Y-%m-%dT%H:%M:%SZ' -1 --pretty=%ad) 19 substituteInPlace "$out/internal/version/build.go" \ 20 --replace 'gitCommit = valueNotProvided' "gitCommit = \"$commit\"" \ 21 --replace 'buildDate = valueNotProvided' "buildDate = \"$source_date_epoch\"" 22 find "$out" -name .git -print0 | xargs -0 rm -rf 23 ''; 24 }; 25 - vendorSha256 = "sha256-urDDb+53KSvUOjVRY/geENIQM1vvBUDddlNpQw3LcLg="; 26 27 nativeBuildInputs = [ installShellFiles ]; 28 ··· 33 "-w" 34 "-X github.com/anchore/syft/internal/version.version=${version}" 35 "-X github.com/anchore/syft/internal/version.gitTreeState=clean" 36 ]; 37 38 # tests require a running docker instance
··· 2 3 buildGoModule rec { 4 pname = "syft"; 5 + version = "0.37.10"; 6 7 src = fetchFromGitHub { 8 owner = "anchore"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-j3/WE13djrgI7S6YISg9kPIkV0IR0C65QU8zj0z0MVg="; 12 # populate values that require us to use git. By doing this in postFetch we 13 # can delete .git afterwards and maintain better reproducibility of the src. 14 leaveDotGit = true; 15 postFetch = '' 16 cd "$out" 17 commit="$(git rev-parse HEAD)" 18 + source_date_epoch="$(git log --date=format:'%Y-%m-%dT%H:%M:%SZ' -1 --pretty=%ad)" 19 substituteInPlace "$out/internal/version/build.go" \ 20 --replace 'gitCommit = valueNotProvided' "gitCommit = \"$commit\"" \ 21 --replace 'buildDate = valueNotProvided' "buildDate = \"$source_date_epoch\"" 22 find "$out" -name .git -print0 | xargs -0 rm -rf 23 ''; 24 }; 25 + vendorSha256 = "sha256-gIcPxSzWzldR9UX4iB2fkwc0BfATT1B+Nge+sGefmj8="; 26 27 nativeBuildInputs = [ installShellFiles ]; 28 ··· 33 "-w" 34 "-X github.com/anchore/syft/internal/version.version=${version}" 35 "-X github.com/anchore/syft/internal/version.gitTreeState=clean" 36 + "-X github.com/anchore/syft/internal/version.gitDescription=v${version}" 37 ]; 38 39 # tests require a running docker instance
+2 -2
pkgs/tools/admin/trinsic-cli/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "trinsic-cli"; 5 - version = "1.1.2"; 6 7 src = fetchurl { 8 url = "https://github.com/trinsic-id/sdk/releases/download/v${version}/trinsic-cli-vendor-${version}.tar.gz"; 9 - sha256 = "7e5377e8460ebb1253b9974e02d0077ffc58f2b4712cf7896f1bef7e9f580cd4"; 10 }; 11 12 cargoVendorDir = "vendor";
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "trinsic-cli"; 5 + version = "1.3.0"; 6 7 src = fetchurl { 8 url = "https://github.com/trinsic-id/sdk/releases/download/v${version}/trinsic-cli-vendor-${version}.tar.gz"; 9 + sha256 = "4ec8a02cf7cd31822668e97befe96f0a7a32b1103abfe27c1bff643d3bf16588"; 10 }; 11 12 cargoVendorDir = "vendor";
+3 -3
pkgs/tools/graphics/pikchr/default.nix
··· 6 stdenv.mkDerivation { 7 pname = "pikchr"; 8 # To update, use the last check-in in https://pikchr.org/home/timeline?r=trunk 9 - version = "unstable-2021-07-22"; 10 11 src = fetchurl { 12 - url = "https://pikchr.org/home/tarball/d9e1502ed74c6aab/pikchr.tar.gz"; 13 - sha256 = "sha256-YSy95GiSodOS1YJgl9arBniqEJzYPrZ9CHNSCee9Yfg="; 14 }; 15 16 # can't open generated html files
··· 6 stdenv.mkDerivation { 7 pname = "pikchr"; 8 # To update, use the last check-in in https://pikchr.org/home/timeline?r=trunk 9 + version = "unstable-2022-01-30"; 10 11 src = fetchurl { 12 + url = "https://pikchr.org/home/tarball/5db3aa1d294dcd16/pikchr.tar.gz"; 13 + sha256 = "sha256-xnT2oOx4LK9CElXeAuQIKlu6WvMB8Nv5+2kBzWQ5Gpc="; 14 }; 15 16 # can't open generated html files
+3 -3
pkgs/tools/misc/duf/default.nix
··· 2 3 buildGoModule rec { 4 pname = "duf"; 5 - version = "0.8.0"; 6 7 src = fetchFromGitHub { 8 owner = "muesli"; 9 repo = "duf"; 10 rev = "v${version}"; 11 - sha256 = "sha256-FZ4NplvCc1c+wPy1NSs2qwfWVtCPNHs6JquubGnwiEY="; 12 }; 13 14 - vendorSha256 = "sha256-VLGsfazTD7hSNXPxuGJJwyqvUlqk5wuz8NqFHs/jyZc="; 15 16 ldflags = [ "-s" "-w" "-X=main.Version=${version}" ]; 17
··· 2 3 buildGoModule rec { 4 pname = "duf"; 5 + version = "0.8.1"; 6 7 src = fetchFromGitHub { 8 owner = "muesli"; 9 repo = "duf"; 10 rev = "v${version}"; 11 + sha256 = "sha256-bVuqX88KY+ky+fd1FU9GWP78jQc4fRDk9yRSeIesHyI="; 12 }; 13 14 + vendorSha256 = "sha256-oihi7E67VQmym9U1gdD802AYxWRrSowhzBiKg0CBDPc="; 15 16 ldflags = [ "-s" "-w" "-X=main.Version=${version}" ]; 17
+3 -3
pkgs/tools/misc/etcher/default.nix
··· 14 throwSystem = throw "Unsupported system: ${stdenv.hostPlatform.system}"; 15 16 sha256 = { 17 - "x86_64-linux" = "sha256-n8i4ZqjugeUfXpTzVgIwVomfPk6HvPEbTZLe/jFgwFg="; 18 - "i686-linux" = "sha256-lLGfhW6el2ZOcaykH1kTjGldXo7/0q5O8QnslnDlWAQ="; 19 }."${system}" or throwSystem; 20 21 arch = { ··· 27 28 stdenv.mkDerivation rec { 29 pname = "etcher"; 30 - version = "1.6.0"; 31 32 src = fetchurl { 33 url = "https://github.com/balena-io/etcher/releases/download/v${version}/balena-etcher-electron_${version}_${arch}.deb";
··· 14 throwSystem = throw "Unsupported system: ${stdenv.hostPlatform.system}"; 15 16 sha256 = { 17 + "x86_64-linux" = "1yj6ybc99nqpzv2wjmvi7khfb5viwlb2rbjdpvgr4pmlzmiv7n2k"; 18 + "i686-linux" = "09ddcqxw1jhl8v461ngdgj2l4infn2xiwvaqxi6qp3swci627vmz"; 19 }."${system}" or throwSystem; 20 21 arch = { ··· 27 28 stdenv.mkDerivation rec { 29 pname = "etcher"; 30 + version = "1.7.3"; 31 32 src = fetchurl { 33 url = "https://github.com/balena-io/etcher/releases/download/v${version}/balena-etcher-electron_${version}_${arch}.deb";
+7
pkgs/tools/misc/grub/2.0x.nix
··· 64 url = "https://marc.info/?l=grub-devel&m=146193404929072&q=mbox"; 65 sha256 = "00wa1q5adiass6i0x7p98vynj9vsz1w0gn1g4dgz89v35mpyw2bi"; 66 }) 67 ]; 68 69 postPatch = if kbdcompSupport then ''
··· 64 url = "https://marc.info/?l=grub-devel&m=146193404929072&q=mbox"; 65 sha256 = "00wa1q5adiass6i0x7p98vynj9vsz1w0gn1g4dgz89v35mpyw2bi"; 66 }) 67 + 68 + # Pull upstream patch to fix linkage against binutils-2.36. 69 + (fetchpatch { 70 + name = "binutils-2.36"; 71 + url = "https://git.savannah.gnu.org/cgit/grub.git/patch/?id=b98275138bf4fc250a1c362dfd2c8b1cf2421701"; 72 + sha256 = "001m058bsl2pcb0ii84jfm5ias8zgzabrfy6k2cc9w6w1y51ii82"; 73 + }) 74 ]; 75 76 postPatch = if kbdcompSupport then ''
+3 -3
pkgs/tools/misc/pmbootstrap/default.nix
··· 3 4 buildPythonApplication rec { 5 pname = "pmbootstrap"; 6 - version = "1.40.0"; 7 8 src = fetchPypi { 9 inherit pname version; 10 - sha256 = "sha256-b/9NEURp42d/j/Fk8NUS0ZAG99q56eg0pEU/xkFnvrM="; 11 }; 12 13 repo = fetchFromGitLab { ··· 15 owner = "postmarketOS"; 16 repo = pname; 17 rev = version; 18 - sha256 = "sha256-2yyHAHoIlwHX2+LbwwK7AGrBDZlfkhtCcKAKHdJMBdQ="; 19 }; 20 21 pmb_test = "${repo}/test";
··· 3 4 buildPythonApplication rec { 5 pname = "pmbootstrap"; 6 + version = "1.41.0"; 7 8 src = fetchPypi { 9 inherit pname version; 10 + sha256 = "sha256-go3EXmC9Vp0xXi1mH65p85FKsTe0CbyNXw3VVRrnpeQ="; 11 }; 12 13 repo = fetchFromGitLab { ··· 15 owner = "postmarketOS"; 16 repo = pname; 17 rev = version; 18 + sha256 = "sha256-7Y4rxSdJQaIlq4yiadvrEro0JM5xoHeISDKHz69T4z8="; 19 }; 20 21 pmb_test = "${repo}/test";
+2 -2
pkgs/tools/misc/rpm-ostree/default.nix
··· 40 41 stdenv.mkDerivation rec { 42 pname = "rpm-ostree"; 43 - version = "2022.1"; 44 45 outputs = [ "out" "dev" "man" "devdoc" ]; 46 47 src = fetchurl { 48 url = "https://github.com/coreos/${pname}/releases/download/v${version}/${pname}-${version}.tar.xz"; 49 - sha256 = "sha256-v7vAj045gLHdH1kQ9oMnLLBYXu/oWOW+MS+m7w2VoW0="; 50 }; 51 52 nativeBuildInputs = [
··· 40 41 stdenv.mkDerivation rec { 42 pname = "rpm-ostree"; 43 + version = "2022.2"; 44 45 outputs = [ "out" "dev" "man" "devdoc" ]; 46 47 src = fetchurl { 48 url = "https://github.com/coreos/${pname}/releases/download/v${version}/${pname}-${version}.tar.xz"; 49 + sha256 = "sha256-wy6zmVy7+31+wadLldWdf/IyT0dyLArYLmGw/Kgd+sU="; 50 }; 51 52 nativeBuildInputs = [
+66 -8
pkgs/tools/misc/shunit2/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub }: 2 3 - stdenv.mkDerivation { 4 pname = "shunit2"; 5 - version = "2019-08-10"; 6 7 src = fetchFromGitHub { 8 owner = "kward"; 9 - repo = "shunit2"; 10 - rev = "ba130d69bbff304c0c6a9c5e8ab549ae140d6225"; 11 - sha256 = "1bsn8dhxbjfmh01lq80yhnld3w3fw1flh7nwx12csrp58zsvlmgk"; 12 }; 13 14 installPhase = '' ··· 22 $out/bin/shunit2 23 ''; 24 25 meta = with lib; { 26 homepage = "https://github.com/kward/shunit2"; 27 - description = "A xUnit based unit test framework for Bourne based shell scripts"; 28 - maintainers = with maintainers; [ cdepillabout utdemir ]; 29 license = licenses.asl20; 30 platforms = platforms.unix; 31 };
··· 1 + { lib 2 + , resholvePackage 3 + , fetchFromGitHub 4 + , bash 5 + , coreutils 6 + , gnused 7 + , gnugrep 8 + , findutils 9 + , ncurses 10 + }: 11 12 + resholvePackage rec { 13 pname = "shunit2"; 14 + version = "2.1.8"; 15 16 src = fetchFromGitHub { 17 owner = "kward"; 18 + repo = pname; 19 + rev = "v${version}"; 20 + hash = "sha256-IZHkgkVqzeh+eEKCDJ87sqNhSA+DU6kBCNDdQaUEeiM="; 21 }; 22 23 installPhase = '' ··· 31 $out/bin/shunit2 32 ''; 33 34 + solutions = { 35 + shunit = { 36 + # Caution: see __SHUNIT_CMD_ECHO_ESC before changing 37 + interpreter = "${bash}/bin/sh"; 38 + scripts = [ "bin/shunit2" ]; 39 + inputs = [ coreutils gnused gnugrep findutils ncurses ]; 40 + # resholve's Nix API is analogous to the CLI flags 41 + # documented in 'man resholve' 42 + fake = { 43 + # "missing" functions shunit2 expects the user to declare 44 + function = [ 45 + "oneTimeSetUp" 46 + "oneTimeTearDown" 47 + "setUp" 48 + "tearDown" 49 + "suite" 50 + "noexec" 51 + ]; 52 + # shunit2 is both bash and zsh compatible, and in 53 + # some zsh-specific code it uses this non-bash builtin 54 + builtin = [ "setopt" ]; 55 + }; 56 + fix = { 57 + # stray absolute path; make it resolve from coreutils 58 + "/usr/bin/od" = true; 59 + /* 60 + Caution: this one is contextually debatable. shunit2 61 + sets this variable after testing whether `echo -e test` 62 + yields `test` or `-e test`. Since we're setting the 63 + interpreter, we can pre-test this. But if we go fiddle 64 + the interpreter later, I guess we _could_ break it. 65 + */ 66 + "$__SHUNIT_CMD_ECHO_ESC" = [ "'echo -e'" ]; 67 + "$SHUNIT_CMD_TPUT" = [ "tput" ]; # from ncurses 68 + }; 69 + keep = { 70 + # dynamically defined in shunit2:_shunit_mktempFunc 71 + eval = [ "shunit_condition_" "_shunit_test_" "_shunit_prepForSourcing" ]; 72 + 73 + # dynamic based on CLI flag 74 + "$_SHUNIT_LINENO_" = true; 75 + }; 76 + execer = [ 77 + # drop after https://github.com/abathur/binlore/issues/2 78 + "cannot:${ncurses}/bin/tput" 79 + ]; 80 + }; 81 + }; 82 + 83 meta = with lib; { 84 homepage = "https://github.com/kward/shunit2"; 85 + description = "An xUnit based unit test framework for Bourne based shell scripts"; 86 + maintainers = with maintainers; [ abathur utdemir ]; 87 license = licenses.asl20; 88 platforms = platforms.unix; 89 };
+45 -8
pkgs/tools/networking/mailutils/default.nix
··· 1 - { lib, stdenv, fetchurl, fetchpatch, autoreconfHook, dejagnu, gettext, pkg-config 2 - , gdbm, pam, readline, ncurses, gnutls, guile, texinfo, gnum4, sasl, fribidi, nettools 3 - , python3, gss, libmysqlclient, system-sendmail }: 4 5 stdenv.mkDerivation rec { 6 pname = "mailutils"; 7 - version = "3.13"; 8 9 src = fetchurl { 10 url = "mirror://gnu/${pname}/${pname}-${version}.tar.xz"; 11 - hash = "sha256-2SCXHctJh4oAmRF3T9ZATxPSe9EB4tWbZkooZZpAlMc="; 12 }; 13 14 postPatch = '' ··· 19 ''; 20 21 nativeBuildInputs = [ 22 - autoreconfHook gettext pkg-config 23 ]; 24 25 buildInputs = [ 26 - gdbm pam readline ncurses gnutls guile texinfo gnum4 sasl fribidi 27 - gss libmysqlclient python3 28 ] ++ lib.optionals stdenv.isLinux [ nettools ]; 29 30 patches = [ ··· 47 "--with-mysql" 48 "--with-path-sendmail=${system-sendmail}/bin/sendmail" 49 "--with-mail-rc=/etc/mail.rc" 50 ]; 51 52 readmsg-tests = let
··· 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , fetchpatch 5 + , autoreconfHook 6 + , dejagnu 7 + , gettext 8 + , gnum4 9 + , pkg-config 10 + , texinfo 11 + , fribidi 12 + , gdbm 13 + , gnutls 14 + , gss 15 + , guile 16 + , libmysqlclient 17 + , mailcap 18 + , nettools 19 + , pam 20 + , readline 21 + , ncurses 22 + , python3 23 + , sasl 24 + , system-sendmail 25 + }: 26 27 stdenv.mkDerivation rec { 28 pname = "mailutils"; 29 + version = "3.14"; 30 31 src = fetchurl { 32 url = "mirror://gnu/${pname}/${pname}-${version}.tar.xz"; 33 + hash = "sha256-wMWzj+qLRaSvzUNkh/Knb9VSUJLQN4gTputVQsIScTk="; 34 }; 35 36 postPatch = '' ··· 41 ''; 42 43 nativeBuildInputs = [ 44 + autoreconfHook 45 + gettext 46 + gnum4 47 + pkg-config 48 + texinfo 49 ]; 50 51 buildInputs = [ 52 + fribidi 53 + gdbm 54 + gnutls 55 + gss 56 + guile 57 + libmysqlclient 58 + mailcap 59 + ncurses 60 + pam 61 + python3 62 + readline 63 + sasl 64 ] ++ lib.optionals stdenv.isLinux [ nettools ]; 65 66 patches = [ ··· 83 "--with-mysql" 84 "--with-path-sendmail=${system-sendmail}/bin/sendmail" 85 "--with-mail-rc=/etc/mail.rc" 86 + "DEFAULT_CUPS_CONFDIR=${mailcap}/etc" # provides mime.types to mimeview 87 ]; 88 89 readmsg-tests = let
+2 -2
pkgs/tools/package-management/apt/default.nix
··· 28 29 stdenv.mkDerivation rec { 30 pname = "apt"; 31 - version = "2.3.14"; 32 33 src = fetchurl { 34 url = "mirror://debian/pool/main/a/apt/apt_${version}.tar.xz"; 35 - hash = "sha256-uQo87RUuzTiaVdoRFeBFZb/L9fWKgIzbcfa1LU0vC98="; 36 }; 37 38 nativeBuildInputs = [
··· 28 29 stdenv.mkDerivation rec { 30 pname = "apt"; 31 + version = "2.3.15"; 32 33 src = fetchurl { 34 url = "mirror://debian/pool/main/a/apt/apt_${version}.tar.xz"; 35 + hash = "sha256-JWIAfREJk91+eobdgeplDmEhAXm1nqxytu3/Y2TAu6Y="; 36 }; 37 38 nativeBuildInputs = [
+77 -42
pkgs/tools/package-management/packagekit/default.nix
··· 1 - { stdenv, fetchFromGitHub, lib 2 - , intltool, glib, pkg-config, polkit, python3, sqlite 3 - , gobject-introspection, vala, gtk-doc, autoreconfHook, autoconf-archive 4 - , nix, enableNixBackend ? false, boost 5 , enableCommandNotFound ? false 6 - , enableBashCompletion ? false, bash-completion ? null 7 - , enableSystemd ? stdenv.isLinux, systemd }: 8 9 stdenv.mkDerivation rec { 10 pname = "packagekit"; 11 - version = "1.1.13"; 12 13 - outputs = [ "out" "dev" ]; 14 15 src = fetchFromGitHub { 16 - owner = "hughsie"; 17 repo = "PackageKit"; 18 - rev = "PACKAGEKIT_${lib.replaceStrings ["."] ["_"] version}"; 19 - sha256 = "0xmgac27p5z8wr56yw3cqhywnlvaf8kvyv1g0nzxnq167xj5vxam"; 20 }; 21 22 - buildInputs = [ glib polkit python3 gobject-introspection ] 23 - ++ lib.optional enableSystemd systemd 24 - ++ lib.optional enableBashCompletion bash-completion; 25 - propagatedBuildInputs = 26 - [ sqlite boost ] 27 - ++ lib.optional enableNixBackend nix; 28 - nativeBuildInputs = [ vala intltool pkg-config autoreconfHook autoconf-archive gtk-doc ]; 29 - 30 - preAutoreconf = '' 31 - gtkdocize 32 - intltoolize 33 - ''; 34 35 - configureFlags = [ 36 - (if enableSystemd then "--enable-systemd" else "--disable-systemd") 37 - "--disable-dummy" 38 - "--disable-cron" 39 - "--enable-introspection" 40 - "--disable-offline-update" 41 "--localstatedir=/var" 42 - "--sysconfdir=/etc" 43 - "--with-dbus-sys=${placeholder "out"}/share/dbus-1/system.d" 44 - "--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system" 45 - "--with-systemduserunitdir=${placeholder "out"}/lib/systemd/user" 46 ] 47 - ++ lib.optional enableNixBackend "--enable-nix" 48 - ++ lib.optional (!enableBashCompletion) "--disable-bash-completion" 49 - ++ lib.optional (!enableCommandNotFound) "--disable-command-not-found"; 50 51 - enableParallelBuilding = true; 52 - 53 - installFlags = [ 54 - "sysconfdir=${placeholder "out"}/etc" 55 - "localstatedir=\${TMPDIR}" 56 - ]; 57 58 meta = with lib; { 59 description = "System to facilitate installing and updating packages";
··· 1 + { stdenv 2 + , fetchFromGitHub 3 + , lib 4 + , gettext 5 + , glib 6 + , pkg-config 7 + , polkit 8 + , python3 9 + , sqlite 10 + , gobject-introspection 11 + , vala 12 + , gtk-doc 13 + , nix 14 + , boost 15 + , meson 16 + , ninja 17 + , libxslt 18 + , docbook-xsl-nons 19 + , docbook_xml_dtd_42 20 + , libxml2 21 + , gst_all_1 22 + , gtk3 23 , enableCommandNotFound ? false 24 + , enableBashCompletion ? false 25 + , bash-completion ? null 26 + , enableSystemd ? stdenv.isLinux 27 + , systemd 28 + }: 29 30 stdenv.mkDerivation rec { 31 pname = "packagekit"; 32 + version = "1.2.5pre"; 33 34 + outputs = [ "out" "dev" "devdoc" ]; 35 36 src = fetchFromGitHub { 37 + owner = "PackageKit"; 38 repo = "PackageKit"; 39 + rev = "9c2ef9cddf39ebde587907561f8e7ac99ed6be1a"; 40 + sha256 = "05z1ds240kcmigygkbgjasr4spn7vd7cbpsbfrghhgnmszx9bjgl"; 41 }; 42 43 + buildInputs = [ 44 + glib 45 + polkit 46 + python3 47 + gobject-introspection 48 + gst_all_1.gstreamer 49 + gst_all_1.gst-plugins-base 50 + gtk3 51 + sqlite 52 + nix 53 + boost 54 + ] ++ lib.optional enableSystemd systemd 55 + ++ lib.optional enableBashCompletion bash-completion; 56 + nativeBuildInputs = [ 57 + vala 58 + gettext 59 + pkg-config 60 + gtk-doc 61 + meson 62 + libxslt 63 + docbook-xsl-nons 64 + docbook_xml_dtd_42 65 + libxml2 66 + ninja 67 + ]; 68 69 + mesonFlags = [ 70 + (if enableSystemd then "-Dsystemd=true" else "-Dsystem=false") 71 + "-Dpackaging_backend=nix" 72 + "-Ddbus_sys=${placeholder "out"}/share/dbus-1/system.d" 73 + "-Ddbus_services=${placeholder "out"}/share/dbus-1/system-services" 74 + "-Dsystemdsystemunitdir=${placeholder "out"}/lib/systemd/system" 75 + "-Dcron=false" 76 + "-Dgtk_doc=true" 77 + "--sysconfdir=/etc" 78 "--localstatedir=/var" 79 ] 80 + ++ lib.optional (!enableBashCompletion) "-Dbash_completion=false" 81 + ++ lib.optional (!enableCommandNotFound) "-Dbash_command_not_found=false"; 82 83 + postPatch = '' 84 + # HACK: we want packagekit to look in /etc for configs but install 85 + # those files in $out/etc ; we just override the runtime paths here 86 + # same for /var & $out/var 87 + substituteInPlace etc/meson.build \ 88 + --replace "install_dir: join_paths(get_option('sysconfdir'), 'PackageKit')" "install_dir: join_paths('$out', 'etc', 'PackageKit')" 89 + substituteInPlace data/meson.build \ 90 + --replace "install_dir: join_paths(get_option('localstatedir'), 'lib', 'PackageKit')," "install_dir: join_paths('$out', 'var', 'lib', 'PackageKit')," 91 + ''; 92 93 meta = with lib; { 94 description = "System to facilitate installing and updating packages";
+3 -5
pkgs/tools/security/secp256k1/default.nix
··· 7 stdenv.mkDerivation { 8 pname = "secp256k1"; 9 10 - # I can't find any version numbers, so we're just using the date of the 11 - # last commit. 12 - version = "unstable-2021-06-06"; 13 14 src = fetchFromGitHub { 15 owner = "bitcoin-core"; 16 repo = "secp256k1"; 17 - rev = "7973576f6e3ab27d036a09397152b124d747f4ae"; 18 - sha256 = "0vjk55dv0mkph4k6bqgkykmxn05ngzvhc4rzjnvn33xzi8dzlvah"; 19 }; 20 21 nativeBuildInputs = [ autoreconfHook ];
··· 7 stdenv.mkDerivation { 8 pname = "secp256k1"; 9 10 + version = "unstable-2022-02-06"; 11 12 src = fetchFromGitHub { 13 owner = "bitcoin-core"; 14 repo = "secp256k1"; 15 + rev = "5dcc6f8dbdb1850570919fc9942d22f728dbc0af"; 16 + sha256 = "x9qG2S6tBSRseWaFIN9N2fRpY1vkv8idT3d3rfJnmaU="; 17 }; 18 19 nativeBuildInputs = [ autoreconfHook ];
+1
pkgs/top-level/aliases.nix
··· 1059 seg3d = throw "seg3d has been removed from nixpkgs (2019-11-10)"; 1060 sepolgen = throw "sepolgen was merged into selinux-python"; # Added 2021-11-11 1061 shared_mime_info = shared-mime-info; # Added 2018-02-25 1062 sickbeard = throw "sickbeard has been removed from nixpkgs, as it was unmaintained."; # Added 2022-01-01 1063 sickrage = throw "sickbeard has been removed from nixpkgs, as it was unmaintained."; # Added 2022-01-01 1064 sigurlx = throw "sigurlx has been removed (upstream is gone)"; # Added 2022-01-24
··· 1059 seg3d = throw "seg3d has been removed from nixpkgs (2019-11-10)"; 1060 sepolgen = throw "sepolgen was merged into selinux-python"; # Added 2021-11-11 1061 shared_mime_info = shared-mime-info; # Added 2018-02-25 1062 + shellinabox = throw "shellinabox has been removed from nixpkgs, as it was unmaintained upstream"; # Added 2021-12-15 1063 sickbeard = throw "sickbeard has been removed from nixpkgs, as it was unmaintained."; # Added 2022-01-01 1064 sickrage = throw "sickbeard has been removed from nixpkgs, as it was unmaintained."; # Added 2022-01-01 1065 sigurlx = throw "sigurlx has been removed (upstream is gone)"; # Added 2022-01-24
+20 -15
pkgs/top-level/all-packages.nix
··· 1213 1214 lilo = callPackage ../tools/misc/lilo { }; 1215 1216 - logseq = callPackage ../applications/misc/logseq { }; 1217 1218 natls = callPackage ../tools/misc/natls { }; 1219 ··· 5141 escrotum = callPackage ../tools/graphics/escrotum { }; 5142 5143 etcher = callPackage ../tools/misc/etcher { 5144 - electron = electron_14; 5145 }; 5146 5147 ethercalc = callPackage ../servers/web-apps/ethercalc { }; ··· 6725 jade = callPackage ../tools/text/sgml/jade { }; 6726 6727 jadx = callPackage ../tools/security/jadx { }; 6728 6729 jazzy = callPackage ../development/tools/jazzy { }; 6730 ··· 9637 9638 shout = nodePackages.shout; 9639 9640 - shellinabox = callPackage ../servers/shellinabox { 9641 - openssl = openssl_1_0_2; 9642 - }; 9643 - 9644 shrikhand = callPackage ../data/fonts/shrikhand { }; 9645 9646 shunit2 = callPackage ../tools/misc/shunit2 { }; ··· 14165 electron_13 14166 electron_14 14167 electron_15 14168 - electron_16; 14169 14170 autobuild = callPackage ../development/tools/misc/autobuild { }; 14171 ··· 17872 17873 libinklevel = callPackage ../development/libraries/libinklevel { }; 17874 17875 - libnats-c = callPackage ../development/libraries/libnats-c { 17876 - openssl = openssl_1_0_2; 17877 - }; 17878 17879 liburing = callPackage ../development/libraries/liburing { }; 17880 ··· 19795 19796 SDL2_ttf = callPackage ../development/libraries/SDL2_ttf { }; 19797 19798 sdnotify-wrapper = skawarePackages.sdnotify-wrapper; 19799 19800 sdrplay = callPackage ../applications/radio/sdrplay {}; ··· 21443 21444 libpulseaudio = libpulseaudio-vanilla; 21445 21446 - easyeffects = callPackage ../applications/audio/easyeffects { 21447 - glibmm = glibmm_2_68; 21448 - }; 21449 21450 pulseeffects-legacy = callPackage ../applications/audio/pulseeffects-legacy { 21451 boost = boost172; ··· 22419 lieer = callPackage ../applications/networking/lieer {}; 22420 22421 linuxConsoleTools = callPackage ../os-specific/linux/consoletools { }; 22422 22423 libreelec-dvb-firmware = callPackage ../os-specific/linux/firmware/libreelec-dvb-firmware { }; 22424 ··· 28323 28324 quiterss = libsForQt514.callPackage ../applications/networking/newsreaders/quiterss {}; 28325 28326 - falkon = libsForQt514.callPackage ../applications/networking/browsers/falkon { }; 28327 28328 quodlibet = callPackage ../applications/audio/quodlibet { 28329 keybinder3 = null; ··· 30115 chia-plotter = callPackage ../applications/blockchains/chia-plotter { }; 30116 30117 clightning = callPackage ../applications/blockchains/clightning { }; 30118 30119 bitcoin-abc = libsForQt5.callPackage ../applications/blockchains/bitcoin-abc { 30120 boost = boost165; ··· 31527 31528 _0verkill = callPackage ../games/0verkill { }; 31529 31530 hhexen = callPackage ../games/hhexen { }; 31531 31532 wyvern = callPackage ../games/wyvern { }; ··· 34410 jami-daemon jami-libclient jami-client-gnome jami-client-qt; 34411 34412 jitsi-meet-electron = callPackage ../applications/networking/instant-messengers/jitsi-meet-electron { 34413 - electron = electron_13; 34414 }; 34415 34416 zenstates = callPackage ../os-specific/linux/zenstates {};
··· 1213 1214 lilo = callPackage ../tools/misc/lilo { }; 1215 1216 + logseq = callPackage ../applications/misc/logseq { 1217 + electron = electron_16; 1218 + }; 1219 1220 natls = callPackage ../tools/misc/natls { }; 1221 ··· 5143 escrotum = callPackage ../tools/graphics/escrotum { }; 5144 5145 etcher = callPackage ../tools/misc/etcher { 5146 + electron = electron_12; 5147 }; 5148 5149 ethercalc = callPackage ../servers/web-apps/ethercalc { }; ··· 6727 jade = callPackage ../tools/text/sgml/jade { }; 6728 6729 jadx = callPackage ../tools/security/jadx { }; 6730 + 6731 + jamesdsp = libsForQt5.callPackage ../applications/audio/jamesdsp { }; 6732 6733 jazzy = callPackage ../development/tools/jazzy { }; 6734 ··· 9641 9642 shout = nodePackages.shout; 9643 9644 shrikhand = callPackage ../data/fonts/shrikhand { }; 9645 9646 shunit2 = callPackage ../tools/misc/shunit2 { }; ··· 14165 electron_13 14166 electron_14 14167 electron_15 14168 + electron_16 14169 + electron_17; 14170 14171 autobuild = callPackage ../development/tools/misc/autobuild { }; 14172 ··· 17873 17874 libinklevel = callPackage ../development/libraries/libinklevel { }; 17875 17876 + libnats-c = callPackage ../development/libraries/libnats-c { }; 17877 17878 liburing = callPackage ../development/libraries/liburing { }; 17879 ··· 19794 19795 SDL2_ttf = callPackage ../development/libraries/SDL2_ttf { }; 19796 19797 + SDL2_ttf_2_0_15 = callPackage ../development/libraries/SDL2_ttf/2.0.15.nix { }; 19798 + 19799 sdnotify-wrapper = skawarePackages.sdnotify-wrapper; 19800 19801 sdrplay = callPackage ../applications/radio/sdrplay {}; ··· 21444 21445 libpulseaudio = libpulseaudio-vanilla; 21446 21447 + easyeffects = callPackage ../applications/audio/easyeffects { }; 21448 21449 pulseeffects-legacy = callPackage ../applications/audio/pulseeffects-legacy { 21450 boost = boost172; ··· 22418 lieer = callPackage ../applications/networking/lieer {}; 22419 22420 linuxConsoleTools = callPackage ../os-specific/linux/consoletools { }; 22421 + 22422 + linthesia = callPackage ../games/linthesia/default.nix { }; 22423 22424 libreelec-dvb-firmware = callPackage ../os-specific/linux/firmware/libreelec-dvb-firmware { }; 22425 ··· 28324 28325 quiterss = libsForQt514.callPackage ../applications/networking/newsreaders/quiterss {}; 28326 28327 + falkon = libsForQt5.callPackage ../applications/networking/browsers/falkon { }; 28328 28329 quodlibet = callPackage ../applications/audio/quodlibet { 28330 keybinder3 = null; ··· 30116 chia-plotter = callPackage ../applications/blockchains/chia-plotter { }; 30117 30118 clightning = callPackage ../applications/blockchains/clightning { }; 30119 + 30120 + besu = callPackage ../applications/blockchains/besu { }; 30121 30122 bitcoin-abc = libsForQt5.callPackage ../applications/blockchains/bitcoin-abc { 30123 boost = boost165; ··· 31530 31531 _0verkill = callPackage ../games/0verkill { }; 31532 31533 + _7kaa = callPackage ../games/7kaa { }; 31534 + 31535 hhexen = callPackage ../games/hhexen { }; 31536 31537 wyvern = callPackage ../games/wyvern { }; ··· 34415 jami-daemon jami-libclient jami-client-gnome jami-client-qt; 34416 34417 jitsi-meet-electron = callPackage ../applications/networking/instant-messengers/jitsi-meet-electron { 34418 + electron = electron_16; 34419 }; 34420 34421 zenstates = callPackage ../os-specific/linux/zenstates {};
+1 -1
pkgs/top-level/make-tarball.nix
··· 64 header "generating packages.json" 65 mkdir -p $out/nix-support 66 echo -n '{"version":2,"packages":' > tmp 67 - nix-env -f . -I nixpkgs=$src -qa --json --arg config 'import ${./packages-config.nix}' "''${opts[@]}" >> tmp 68 echo -n '}' >> tmp 69 packages=$out/packages.json.br 70 < tmp sed "s|$(pwd)/||g" | jq -c | brotli -9 > $packages
··· 64 header "generating packages.json" 65 mkdir -p $out/nix-support 66 echo -n '{"version":2,"packages":' > tmp 67 + nix-env -f . -I nixpkgs=$src -qa --meta --json --arg config 'import ${./packages-config.nix}' "''${opts[@]}" >> tmp 68 echo -n '}' >> tmp 69 packages=$out/packages.json.br 70 < tmp sed "s|$(pwd)/||g" | jq -c | brotli -9 > $packages
+9 -1
pkgs/top-level/packages-config.nix
··· 13 fdbPackages 14 fusePackages 15 gns3Packages 16 - haskellPackages 17 idrisPackages 18 nodePackages 19 nodePackages_latest ··· 30 zabbix50 31 zeroadPackages 32 ; 33 34 # Make sure haskell.compiler is included, so alternative GHC versions show up, 35 # but don't add haskell.packages.* since they contain the same packages (at
··· 13 fdbPackages 14 fusePackages 15 gns3Packages 16 idrisPackages 17 nodePackages 18 nodePackages_latest ··· 29 zabbix50 30 zeroadPackages 31 ; 32 + 33 + haskellPackages = super.haskellPackages // { 34 + # mesos, which this depends on, has been removed from nixpkgs. We are keeping 35 + # the error message for now, so users will get an error message they can make 36 + # sense of, but need to work around it here. 37 + # TODO(@sternenseemann): remove this after branch-off of 22.05, along with the 38 + # override in configuration-nix.nix 39 + hs-mesos = null; 40 + }; 41 42 # Make sure haskell.compiler is included, so alternative GHC versions show up, 43 # but don't add haskell.packages.* since they contain the same packages (at
+1
pkgs/top-level/python-aliases.nix
··· 34 35 mapAliases ({ 36 anyjson = throw "anyjson has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18 37 blockdiagcontrib-cisco = throw "blockdiagcontrib-cisco is not compatible with blockdiag 2.0.0 and has been removed."; # added 2020-11-29 38 bt_proximity = bt-proximity; # added 2021-07-02 39 bugseverywhere = throw "bugseverywhere has been removed: Abandoned by upstream."; # added 2019-11-27
··· 34 35 mapAliases ({ 36 anyjson = throw "anyjson has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18 37 + asyncio-nats-client = nats-py; # added 2022-02-08 38 blockdiagcontrib-cisco = throw "blockdiagcontrib-cisco is not compatible with blockdiag 2.0.0 and has been removed."; # added 2020-11-29 39 bt_proximity = bt-proximity; # added 2021-07-02 40 bugseverywhere = throw "bugseverywhere has been removed: Abandoned by upstream."; # added 2019-11-27
+12 -3
pkgs/top-level/python-packages.nix
··· 392 393 aiorun = callPackage ../development/python-modules/aiorun { }; 394 395 aiosenz = callPackage ../development/python-modules/aiosenz { }; 396 397 aioserial = callPackage ../development/python-modules/aioserial { }; ··· 691 asyncio-dgram = callPackage ../development/python-modules/asyncio-dgram { }; 692 693 asyncio-mqtt = callPackage ../development/python-modules/asyncio_mqtt { }; 694 - 695 - asyncio-nats-client = callPackage ../development/python-modules/asyncio-nats-client { }; 696 697 asyncio-rlock = callPackage ../development/python-modules/asyncio-rlock { }; 698 ··· 2190 2191 # Current LTS 2192 django_2 = callPackage ../development/python-modules/django/2.nix { }; 2193 2194 # Current latest 2195 - django_3 = callPackage ../development/python-modules/django/3.nix { }; 2196 2197 django-allauth = callPackage ../development/python-modules/django-allauth { }; 2198 ··· 5315 5316 nassl = callPackage ../development/python-modules/nassl { }; 5317 5318 nats-python = callPackage ../development/python-modules/nats-python { }; 5319 5320 natsort = callPackage ../development/python-modules/natsort { }; ··· 6101 pyheos = callPackage ../development/python-modules/pyheos { }; 6102 6103 pyhiveapi = callPackage ../development/python-modules/pyhiveapi { }; 6104 6105 pyisy = callPackage ../development/python-modules/pyisy { }; 6106 ··· 7964 7965 python-http-client = callPackage ../development/python-modules/python-http-client { }; 7966 7967 pythonix = callPackage ../development/python-modules/pythonix { 7968 nix = pkgs.nixVersions.nix_2_3; 7969 meson = pkgs.meson.override { python3 = self.python; }; ··· 10378 warlock = callPackage ../development/python-modules/warlock { }; 10379 10380 warrant = callPackage ../development/python-modules/warrant { }; 10381 10382 waqiasync = callPackage ../development/python-modules/waqiasync { }; 10383
··· 392 393 aiorun = callPackage ../development/python-modules/aiorun { }; 394 395 + aiosenseme = callPackage ../development/python-modules/aiosenseme { }; 396 + 397 aiosenz = callPackage ../development/python-modules/aiosenz { }; 398 399 aioserial = callPackage ../development/python-modules/aioserial { }; ··· 693 asyncio-dgram = callPackage ../development/python-modules/asyncio-dgram { }; 694 695 asyncio-mqtt = callPackage ../development/python-modules/asyncio_mqtt { }; 696 697 asyncio-rlock = callPackage ../development/python-modules/asyncio-rlock { }; 698 ··· 2190 2191 # Current LTS 2192 django_2 = callPackage ../development/python-modules/django/2.nix { }; 2193 + django_3 = callPackage ../development/python-modules/django/3.nix { }; 2194 2195 # Current latest 2196 + django_4 = callPackage ../development/python-modules/django/4.nix { }; 2197 2198 django-allauth = callPackage ../development/python-modules/django-allauth { }; 2199 ··· 5316 5317 nassl = callPackage ../development/python-modules/nassl { }; 5318 5319 + nats-py = callPackage ../development/python-modules/nats-py { }; 5320 + 5321 nats-python = callPackage ../development/python-modules/nats-python { }; 5322 5323 natsort = callPackage ../development/python-modules/natsort { }; ··· 6104 pyheos = callPackage ../development/python-modules/pyheos { }; 6105 6106 pyhiveapi = callPackage ../development/python-modules/pyhiveapi { }; 6107 + 6108 + pyhumps = callPackage ../development/python-modules/pyhumps { }; 6109 6110 pyisy = callPackage ../development/python-modules/pyisy { }; 6111 ··· 7969 7970 python-http-client = callPackage ../development/python-modules/python-http-client { }; 7971 7972 + python-i18n = callPackage ../development/python-modules/python-i18n { }; 7973 + 7974 pythonix = callPackage ../development/python-modules/pythonix { 7975 nix = pkgs.nixVersions.nix_2_3; 7976 meson = pkgs.meson.override { python3 = self.python; }; ··· 10385 warlock = callPackage ../development/python-modules/warlock { }; 10386 10387 warrant = callPackage ../development/python-modules/warrant { }; 10388 + 10389 + warrant-lite = callPackage ../development/python-modules/warrant-lite { }; 10390 10391 waqiasync = callPackage ../development/python-modules/waqiasync { }; 10392