lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
cb1426e3 3e712c9a

+1005 -610
+18
maintainers/maintainer-list.nix
··· 5791 5791 githubId = 278013; 5792 5792 name = "Tomasz Kontusz"; 5793 5793 }; 5794 + kurnevsky = { 5795 + email = "kurnevsky@gmail.com"; 5796 + github = "kurnevsky"; 5797 + githubId = 2943605; 5798 + name = "Evgeny Kurnevsky"; 5799 + }; 5794 5800 kuznero = { 5795 5801 email = "roman@kuznero.com"; 5796 5802 github = "kuznero"; ··· 5917 5923 github = "lucc"; 5918 5924 githubId = 1104419; 5919 5925 name = "Lucas Hoffmann"; 5926 + }; 5927 + lde = { 5928 + email = "lilian.deloche@puck.fr"; 5929 + github = "lde"; 5930 + githubId = 1447020; 5931 + name = "Lilian Deloche"; 5920 5932 }; 5921 5933 ldelelis = { 5922 5934 email = "ldelelis@est.frba.utn.edu.ar"; ··· 10127 10139 github = "steve-chavez"; 10128 10140 githubId = 1829294; 10129 10141 name = "Steve Chávez"; 10142 + }; 10143 + stevebob = { 10144 + email = "stephen@sherra.tt"; 10145 + github = "stevebob"; 10146 + githubId = 417118; 10147 + name = "Stephen Sherratt"; 10130 10148 }; 10131 10149 steveej = { 10132 10150 email = "mail@stefanjunker.de";
+7 -1
nixos/modules/services/misc/klipper.nix
··· 2 2 with lib; 3 3 let 4 4 cfg = config.services.klipper; 5 - format = pkgs.formats.ini { mkKeyValue = generators.mkKeyValueDefault {} ":"; }; 5 + format = pkgs.formats.ini { 6 + # https://github.com/NixOS/nixpkgs/pull/121613#issuecomment-885241996 7 + listToValue = l: 8 + if builtins.length l == 1 then generators.mkValueStringDefault {} (head l) 9 + else lib.concatMapStrings (s: "\n ${generators.mkValueStringDefault {} s}") l; 10 + mkKeyValue = generators.mkKeyValueDefault {} ":"; 11 + }; 6 12 in 7 13 { 8 14 ##### interface
+1
nixos/tests/all-tests.nix
··· 441 441 txredisapi = handleTest ./txredisapi.nix {}; 442 442 tuptime = handleTest ./tuptime.nix {}; 443 443 turbovnc-headless-server = handleTest ./turbovnc-headless-server.nix {}; 444 + tuxguitar = handleTest ./tuxguitar.nix {}; 444 445 ucarp = handleTest ./ucarp.nix {}; 445 446 ucg = handleTest ./ucg.nix {}; 446 447 udisks2 = handleTest ./udisks2.nix {};
+1 -1
nixos/tests/grocy.nix
··· 40 40 41 41 assert task_name == "Test Task" 42 42 43 - machine.succeed("curl -sSfI http://localhost/api/tasks 2>&1 | grep '401 Unauthorized'") 43 + machine.succeed("curl -sSI http://localhost/api/tasks 2>&1 | grep '401 Unauthorized'") 44 44 45 45 machine.shutdown() 46 46 '';
+24
nixos/tests/tuxguitar.nix
··· 1 + import ./make-test-python.nix ({ pkgs, ... }: { 2 + name = "tuxguitar"; 3 + meta = with pkgs.lib.maintainers; { 4 + maintainers = [ asbachb ]; 5 + }; 6 + 7 + machine = { config, pkgs, ... }: { 8 + imports = [ 9 + ./common/x11.nix 10 + ]; 11 + 12 + services.xserver.enable = true; 13 + 14 + environment.systemPackages = [ pkgs.tuxguitar ]; 15 + }; 16 + 17 + testScript = '' 18 + machine.wait_for_x() 19 + machine.succeed("tuxguitar &") 20 + machine.wait_for_window("TuxGuitar - Untitled.tg") 21 + machine.sleep(1) 22 + machine.screenshot("tuxguitar") 23 + ''; 24 + })
+39
pkgs/applications/audio/deadbeef/plugins/statusnotifier.nix
··· 1 + { lib, stdenv, fetchFromGitHub, pkg-config, deadbeef, gtk3, perl 2 + , libdbusmenu-glib }: 3 + 4 + stdenv.mkDerivation rec { 5 + pname = "deadbeef-statusnotifier-plugin"; 6 + version = "1.6"; 7 + 8 + src = fetchFromGitHub { 9 + owner = "vovochka404"; 10 + repo = "deadbeef-statusnotifier-plugin"; 11 + rev = "v${version}"; 12 + sha256 = "sha256-6WEbY59vPNrL3W5GUwFQJimmSS+td8Ob+G46fPAxfV4="; 13 + }; 14 + 15 + nativeBuildInputs = [ pkg-config ]; 16 + buildInputs = [ deadbeef gtk3 libdbusmenu-glib ]; 17 + 18 + buildFlags = [ "gtk3" ]; 19 + 20 + postPatch = '' 21 + substituteInPlace tools/glib-mkenums \ 22 + --replace /usr/bin/perl "${perl}/bin/perl" 23 + ''; 24 + 25 + installPhase = '' 26 + runHook preInstall 27 + mkdir -p $out/lib/deadbeef 28 + cp build/sni_gtk3.so $out/lib/deadbeef 29 + runHook postInstall 30 + ''; 31 + 32 + meta = with lib; { 33 + description = "DeaDBeeF StatusNotifier Plugin"; 34 + homepage = "https://github.com/vovochka404/deadbeef-statusnotifier-plugin"; 35 + license = licenses.gpl3Plus; 36 + maintainers = [ maintainers.kurnevsky ]; 37 + platforms = platforms.linux; 38 + }; 39 + }
+3 -3
pkgs/applications/blockchains/go-ethereum.nix
··· 9 9 10 10 in buildGoModule rec { 11 11 pname = "go-ethereum"; 12 - version = "1.10.5"; 12 + version = "1.10.6"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "ethereum"; 16 16 repo = pname; 17 17 rev = "v${version}"; 18 - sha256 = "sha256:1226picbgnph71fk2y0n1hyfrh6m8sh54kgn3pmikydnw176k9j1"; 18 + sha256 = "sha256-4lapkoxSKdXlD6rmUxnlSKrfH+DeV6/wV05CqJjuzjA="; 19 19 }; 20 20 21 21 runVend = true; 22 - vendorSha256 = "sha256:1nf2gamamlgr2sl5ibib5wai1pipj66xhbhnb4s4480j5pbv9a76"; 22 + vendorSha256 = "sha256-5qi01y0SIEI0WRYu2I2RN94QFS8rrlioFvnRqqp6wtk="; 23 23 24 24 doCheck = false; 25 25
+6 -6
pkgs/applications/editors/music/tuxguitar/default.nix
··· 1 - { lib, stdenv, fetchurl, swt, jdk, makeWrapper, alsa-lib, jack2, fluidsynth, libpulseaudio }: 1 + { lib, stdenv, fetchurl, swt, jre, makeWrapper, alsa-lib, jack2, fluidsynth, libpulseaudio }: 2 2 3 3 let metadata = assert stdenv.hostPlatform.system == "i686-linux" || stdenv.hostPlatform.system == "x86_64-linux"; 4 4 if stdenv.hostPlatform.system == "i686-linux" then 5 - { arch = "x86"; sha256 = "27675c358db237df74d20e8676000c25a87b9de0bb0a6d1c325e8d6db807d296"; } 5 + { arch = "x86"; sha256 = "afa4b1116aee18e3ddd93132467809d0bcf03715cf9ad55b895f021a13e1cb8a"; } 6 6 else 7 - { arch = "x86_64"; sha256 = "298555a249adb3ad72f3aef72a124e30bfa01cd069c7b5d152a738140e7903a2"; }; 7 + { arch = "x86_64"; sha256 = "55ab653c601727a2077080e7ea4d76fe7a897379934ed9a5b544e20d490f53f9"; }; 8 8 in stdenv.mkDerivation rec { 9 - version = "1.5.2"; 9 + version = "1.5.4"; 10 10 pname = "tuxguitar"; 11 11 12 12 src = fetchurl { 13 - url = "mirror://sourceforge/tuxguitar/${pname}-${version}-linux-${metadata.arch}.tar.gz"; 13 + url = "mirror://sourceforge/${pname}/${pname}-${version}-linux-${metadata.arch}.tar.gz"; 14 14 sha256 = metadata.sha256; 15 15 }; 16 16 ··· 26 26 ln -s $out/share $out/bin/share 27 27 28 28 wrapProgram $out/bin/tuxguitar \ 29 - --set JAVA "${jdk}/bin/java" \ 29 + --set JAVA "${jre}/bin/java" \ 30 30 --prefix LD_LIBRARY_PATH : "$out/lib/:${lib.makeLibraryPath [ swt alsa-lib jack2 fluidsynth libpulseaudio ]}" \ 31 31 --prefix CLASSPATH : "${swt}/jars/swt.jar:$out/lib/tuxguitar.jar:$out/lib/itext.jar" 32 32 '';
+4 -2
pkgs/applications/misc/bottles/default.nix
··· 8 8 9 9 python3Packages.buildPythonApplication rec { 10 10 pname = "bottles"; 11 - version = "3.1.6"; 11 + version = "2021.7.14-treviso"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "bottlesdevs"; 15 15 repo = pname; 16 16 rev = version; 17 - sha256 = "1izks01010akjf83xvi70dr4yzgk6yr84kd0slzz22yq204pdh5m"; 17 + sha256 = "0xhfk1ll8vacgrr0kkhynq4bryjhfjs29j824bark5mj9b6lkbix"; 18 18 }; 19 19 20 20 postPatch = '' ··· 44 44 ]; 45 45 46 46 propagatedBuildInputs = with python3Packages; [ 47 + pyyaml 48 + requests 47 49 pycairo 48 50 pygobject3 49 51 lxml
+45
pkgs/applications/misc/gpu-burn/default.nix
··· 1 + { lib, stdenv, fetchFromGitHub, addOpenGLRunpath, cudatoolkit }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "gpu-burn"; 5 + version = "unstable-2021-04-29"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "wilicc"; 9 + repo = "gpu-burn"; 10 + rev = "1e9a84f4bec3b0835c00daace45d79ed6c488edb"; 11 + sha256 = "sha256-x+kta81Z08PsBgbf+fzRTXhNXUPBd5w8bST/T5nNiQA="; 12 + }; 13 + 14 + postPatch = '' 15 + substituteInPlace gpu_burn-drv.cpp \ 16 + --replace "const char *kernelFile = \"compare.ptx\";" \ 17 + "const char *kernelFile = \"$out/share/compare.ptx\";" 18 + ''; 19 + 20 + buildInputs = [ cudatoolkit ]; 21 + 22 + nativeBuildInputs = [ addOpenGLRunpath ]; 23 + 24 + makeFlags = [ "CUDAPATH=${cudatoolkit}" ]; 25 + 26 + LDFLAGS = "-L${cudatoolkit}/lib/stubs"; 27 + 28 + installPhase = '' 29 + mkdir -p $out/{bin,share} 30 + cp gpu_burn $out/bin/ 31 + cp compare.ptx $out/share/ 32 + ''; 33 + 34 + postFixup = '' 35 + addOpenGLRunpath $out/bin/gpu_burn 36 + ''; 37 + 38 + meta = with lib; { 39 + homepage = "http://wili.cc/blog/gpu-burn.html"; 40 + description = "Multi-GPU CUDA stress test"; 41 + platforms = platforms.linux; 42 + maintainers = with maintainers; [ elohmeier ]; 43 + license = licenses.bsd2; 44 + }; 45 + }
+11 -2
pkgs/applications/misc/privacyidea/default.nix
··· 12 12 sha256 = "ebbb777cbf9312359b897bf81ba00dae0f5cb69fba2a18265dcc18a6f5ef7519"; 13 13 }; 14 14 }); 15 + flask_migrate = super.flask_migrate.overridePythonAttrs (oldAttrs: rec { 16 + version = "2.7.0"; 17 + src = oldAttrs.src.override { 18 + inherit version; 19 + sha256 = "ae2f05671588762dd83a21d8b18c51fe355e86783e24594995ff8d7380dffe38"; 20 + }; 21 + }); 22 + werkzeug = self.callPackage ../../../development/python-modules/werkzeug/1.nix { }; 23 + flask = self.callPackage ../../../development/python-modules/flask/1.nix { }; 15 24 }; 16 25 }; 17 26 in 18 27 python3'.pkgs.buildPythonPackage rec { 19 28 pname = "privacyIDEA"; 20 - version = "3.6"; 29 + version = "3.6.1"; 21 30 22 31 src = fetchFromGitHub { 23 32 owner = pname; 24 33 repo = pname; 25 34 rev = "v${version}"; 26 - sha256 = "sha256-yywkQ3TdBzRMbJGY0Seaprztgt0JrCAbgqosMQ5fcQM="; 35 + sha256 = "sha256-NRfTEZ/6K6xLP+wcT6o54wqk/EyWTiiC9W1KDgaAEbg="; 27 36 fetchSubmodules = true; 28 37 }; 29 38
+1 -1
pkgs/applications/networking/browsers/chromium/browser.nix
··· 84 84 else "https://www.chromium.org/"; 85 85 maintainers = with maintainers; if ungoogled 86 86 then [ squalus primeos ] 87 - else [ primeos thefloweringash bendlas ]; 87 + else [ primeos thefloweringash ]; 88 88 license = if enableWideVine then licenses.unfree else licenses.bsd3; 89 89 platforms = platforms.linux; 90 90 mainProgram = "chromium";
+389 -389
pkgs/applications/networking/browsers/firefox-bin/release_sources.nix
··· 1 1 { 2 - version = "90.0.1"; 2 + version = "90.0.2"; 3 3 sources = [ 4 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/ach/firefox-90.0.1.tar.bz2"; 4 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/ach/firefox-90.0.2.tar.bz2"; 5 5 locale = "ach"; 6 6 arch = "linux-x86_64"; 7 - sha256 = "b985849c5109b6a9992ca0fc4699b769af37c84f1aea5fc6c1b66845f51da83d"; 7 + sha256 = "ee3f5f5e5fef9b41a075569515467ae53706d1b456afc34acc3e73cb53ad7549"; 8 8 } 9 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/af/firefox-90.0.1.tar.bz2"; 9 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/af/firefox-90.0.2.tar.bz2"; 10 10 locale = "af"; 11 11 arch = "linux-x86_64"; 12 - sha256 = "7ddb078a80b7991576f691a1c3bc76635621aa13d64c465651e16ae4dade7436"; 12 + sha256 = "0c6178c97b21580038495444500cd9cbd8de980ba64ab9345366d2eb43ff7c9d"; 13 13 } 14 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/an/firefox-90.0.1.tar.bz2"; 14 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/an/firefox-90.0.2.tar.bz2"; 15 15 locale = "an"; 16 16 arch = "linux-x86_64"; 17 - sha256 = "dca47858177ed263332c7cb093e3285b5c8f61782a66cf683ee52896c3fc76a2"; 17 + sha256 = "6dd2b6b3219f1ef39e0d204dc346ff750d045bcfe16cfc55efc15ee3dcd74b85"; 18 18 } 19 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/ar/firefox-90.0.1.tar.bz2"; 19 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/ar/firefox-90.0.2.tar.bz2"; 20 20 locale = "ar"; 21 21 arch = "linux-x86_64"; 22 - sha256 = "2249834099e5cc9a5feb0b38bdc277e5e3f65635b1a1179afe1240113f0ee1d9"; 22 + sha256 = "efb5dae74218823b3550d716be8b6aa907c9daa2611588d254c3ffd24923a1e6"; 23 23 } 24 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/ast/firefox-90.0.1.tar.bz2"; 24 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/ast/firefox-90.0.2.tar.bz2"; 25 25 locale = "ast"; 26 26 arch = "linux-x86_64"; 27 - sha256 = "7ad21576299643e480922a2a7b6077a0edc84d362e33bb8318b33d04133a7c7b"; 27 + sha256 = "ef665e2ace9a41650d873cbc5562b2072c9de013f8a48a5ce72b735c9e76e883"; 28 28 } 29 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/az/firefox-90.0.1.tar.bz2"; 29 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/az/firefox-90.0.2.tar.bz2"; 30 30 locale = "az"; 31 31 arch = "linux-x86_64"; 32 - sha256 = "10eabc925d651985229d6bac1c34b12267a31886f5354ba943178f6a2d0ef04a"; 32 + sha256 = "2eac97a8216725732ad9e79451e23af0a4f6688d248fb12f17e0ddfdbcbe8766"; 33 33 } 34 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/be/firefox-90.0.1.tar.bz2"; 34 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/be/firefox-90.0.2.tar.bz2"; 35 35 locale = "be"; 36 36 arch = "linux-x86_64"; 37 - sha256 = "d1e6d939233b23e5378161c79f338e66c010056d9d3e619b9eb6c26dc4461724"; 37 + sha256 = "5da97b0b3e7be0ee77ffc013a453249fdb1b6c90a6baa93e6e180f64a2e6bed5"; 38 38 } 39 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/bg/firefox-90.0.1.tar.bz2"; 39 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/bg/firefox-90.0.2.tar.bz2"; 40 40 locale = "bg"; 41 41 arch = "linux-x86_64"; 42 - sha256 = "d59e69127462aa3efff558d5cd5035951dbe54161f913dacb4142a8bd3f258fb"; 42 + sha256 = "de04186cb91dac93edb81c6da8cfa21a2bb33abe0677038cc08762b79fd9032e"; 43 43 } 44 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/bn/firefox-90.0.1.tar.bz2"; 44 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/bn/firefox-90.0.2.tar.bz2"; 45 45 locale = "bn"; 46 46 arch = "linux-x86_64"; 47 - sha256 = "56ca1d7e84ada3f0124e36186a32dfdf287547bdc8d3b111baf9407fedf0a7ae"; 47 + sha256 = "6e408ad360718bed39902e4634c8bbf89de5bd31d4eb6124b3e0a624f4a817ff"; 48 48 } 49 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/br/firefox-90.0.1.tar.bz2"; 49 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/br/firefox-90.0.2.tar.bz2"; 50 50 locale = "br"; 51 51 arch = "linux-x86_64"; 52 - sha256 = "33a6ceb6d37b73d03fe5a6e93e19e29346b2861ee69ab2fffd6cca4a2dbaf40f"; 52 + sha256 = "192b8e20b9f42f443dcbbc1dca6103e2ea44925fc1df05f6a6c61861ccc2e09e"; 53 53 } 54 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/bs/firefox-90.0.1.tar.bz2"; 54 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/bs/firefox-90.0.2.tar.bz2"; 55 55 locale = "bs"; 56 56 arch = "linux-x86_64"; 57 - sha256 = "7c853a13afd74307e7a468b85ed430b20f1622dbecb697b8c80945ccea9f0805"; 57 + sha256 = "9fc5a531065f5fe0466e8e3027dfba654dc30470ae2763765692a49223e80da3"; 58 58 } 59 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/ca-valencia/firefox-90.0.1.tar.bz2"; 59 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/ca-valencia/firefox-90.0.2.tar.bz2"; 60 60 locale = "ca-valencia"; 61 61 arch = "linux-x86_64"; 62 - sha256 = "0aa103c471b3f71ef638cbf9e8f83447875ef5cd96bdc8535435188510272c65"; 62 + sha256 = "c1a9d555dad9598379733404141272292cbac858b2b2f7fd7f5cc1962aef3280"; 63 63 } 64 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/ca/firefox-90.0.1.tar.bz2"; 64 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/ca/firefox-90.0.2.tar.bz2"; 65 65 locale = "ca"; 66 66 arch = "linux-x86_64"; 67 - sha256 = "4672d9fe667f72de45af1eb6a205792440afa9de86eae1f33426d3b948fbc841"; 67 + sha256 = "942fd1cbe717d344e09e4c56e2b5f2fd54d341f92b85d9ea5c90d272b5fdd385"; 68 68 } 69 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/cak/firefox-90.0.1.tar.bz2"; 69 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/cak/firefox-90.0.2.tar.bz2"; 70 70 locale = "cak"; 71 71 arch = "linux-x86_64"; 72 - sha256 = "7b12a52926888f52957a75f639f09094dc4cbc18a1c6d14bf433028461c4a71a"; 72 + sha256 = "b4ee321fe684de9919bc7333096dcd590576c8ce405e454cd362bd4e7559d0c9"; 73 73 } 74 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/cs/firefox-90.0.1.tar.bz2"; 74 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/cs/firefox-90.0.2.tar.bz2"; 75 75 locale = "cs"; 76 76 arch = "linux-x86_64"; 77 - sha256 = "7dfdf0c4c740dab356205c52384faf61e9963a42675031f0292be1c0f4e402c3"; 77 + sha256 = "6249f8805552c035160c1a6a155323190e4cde495409ebdb1be182234eea78b0"; 78 78 } 79 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/cy/firefox-90.0.1.tar.bz2"; 79 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/cy/firefox-90.0.2.tar.bz2"; 80 80 locale = "cy"; 81 81 arch = "linux-x86_64"; 82 - sha256 = "ad7f76b997bced6df5c240273fb736fe7dcb0c86ae867a5cbdb5097dd5c382ba"; 82 + sha256 = "a362582fa671c3a9c54afb10d1c88348ad3da31add280e730e4ced4aed21a733"; 83 83 } 84 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/da/firefox-90.0.1.tar.bz2"; 84 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/da/firefox-90.0.2.tar.bz2"; 85 85 locale = "da"; 86 86 arch = "linux-x86_64"; 87 - sha256 = "9f59ff2eec510b75312bcbe29e9706fe0710f300c12e33200937571414254d31"; 87 + sha256 = "7ea8aeb5eeeb17799642498905893e8b043e5abfc4a0d3ce142f95d54737f473"; 88 88 } 89 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/de/firefox-90.0.1.tar.bz2"; 89 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/de/firefox-90.0.2.tar.bz2"; 90 90 locale = "de"; 91 91 arch = "linux-x86_64"; 92 - sha256 = "c838f9238939cc8e91fff903a231062c03388c2202e273f7b99701415a8f3f22"; 92 + sha256 = "ebbd750201afbcb189cff2db5f72af590024e7d801a04a00c9b2e656921b0440"; 93 93 } 94 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/dsb/firefox-90.0.1.tar.bz2"; 94 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/dsb/firefox-90.0.2.tar.bz2"; 95 95 locale = "dsb"; 96 96 arch = "linux-x86_64"; 97 - sha256 = "5370c32283f8bf7fc3273dbe3cb5c77db829723a39401b00f0e8f70c9f3dba91"; 97 + sha256 = "8885710a72d73ee150763fbe942fb645797f791636d27a3c52425a67169c851f"; 98 98 } 99 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/el/firefox-90.0.1.tar.bz2"; 99 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/el/firefox-90.0.2.tar.bz2"; 100 100 locale = "el"; 101 101 arch = "linux-x86_64"; 102 - sha256 = "2af4feceeea5c0932935d91c22df516ae2e25d9006ab41ba6274783b74b3a5e5"; 102 + sha256 = "652c6d6cb263b57f3f5801bece2464d5df4bcb326072419c9e269dfcbe92dfb8"; 103 103 } 104 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/en-CA/firefox-90.0.1.tar.bz2"; 104 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/en-CA/firefox-90.0.2.tar.bz2"; 105 105 locale = "en-CA"; 106 106 arch = "linux-x86_64"; 107 - sha256 = "e805c2eebe0c9892082b900af2bd1511264ed5fd5d47864ca5a8fc3e6c0a05de"; 107 + sha256 = "87f4cb450da3180eefc47f0ab453c00182904f9a367d4a6fb0baf6e1a1aa0955"; 108 108 } 109 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/en-GB/firefox-90.0.1.tar.bz2"; 109 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/en-GB/firefox-90.0.2.tar.bz2"; 110 110 locale = "en-GB"; 111 111 arch = "linux-x86_64"; 112 - sha256 = "2d888fdd72a65137790b10f02056d6194fd9c374cc6ff09cf7217cfbb84e2d7d"; 112 + sha256 = "e0d55687a6c577d04db7c1b90532aa6274882e92275e2cf5af1efbf6f4bd1c9c"; 113 113 } 114 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/en-US/firefox-90.0.1.tar.bz2"; 114 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/en-US/firefox-90.0.2.tar.bz2"; 115 115 locale = "en-US"; 116 116 arch = "linux-x86_64"; 117 - sha256 = "998607f028043b3780f296eee03027279ef059acab5b50f9754df2bd69ca42b3"; 117 + sha256 = "2d62a8b1b1e39c00ddd8923fc862484fa1501eba243894ae4c5079766e58d1fc"; 118 118 } 119 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/eo/firefox-90.0.1.tar.bz2"; 119 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/eo/firefox-90.0.2.tar.bz2"; 120 120 locale = "eo"; 121 121 arch = "linux-x86_64"; 122 - sha256 = "3fee8ee742d6ebc03a6fd66404979b7e2fc823757801ac205ca291c249f7b31c"; 122 + sha256 = "4e1198ff0d83718326784348d301ab6782a73435ab1b32d40ccdc9d05238ca8a"; 123 123 } 124 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/es-AR/firefox-90.0.1.tar.bz2"; 124 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/es-AR/firefox-90.0.2.tar.bz2"; 125 125 locale = "es-AR"; 126 126 arch = "linux-x86_64"; 127 - sha256 = "854cf81090ccdb2f8d4ccf0729c7228c2945626a56d1cfee524f927c5bb67c47"; 127 + sha256 = "ae8a2145ae461fd5a13744fbeb93f16330f68497a58b21465cc8c174fb5a4fcb"; 128 128 } 129 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/es-CL/firefox-90.0.1.tar.bz2"; 129 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/es-CL/firefox-90.0.2.tar.bz2"; 130 130 locale = "es-CL"; 131 131 arch = "linux-x86_64"; 132 - sha256 = "c0b92a9e2defa74171c880be9ed84f12ab946d4d9af888d7d9ed735114968fb5"; 132 + sha256 = "1c66b290d07ae7d7093a67930a15e648b0c4ca95fe8bbd42ca9349766537a4b9"; 133 133 } 134 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/es-ES/firefox-90.0.1.tar.bz2"; 134 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/es-ES/firefox-90.0.2.tar.bz2"; 135 135 locale = "es-ES"; 136 136 arch = "linux-x86_64"; 137 - sha256 = "a2fcc7126f6c5b6edf162357ddf7493df2873ecbe36d74a176c3924b877c4448"; 137 + sha256 = "164575fc3385ea9f3883febbd827aaa9115da185e07f70afdd8b2cd5442fdf46"; 138 138 } 139 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/es-MX/firefox-90.0.1.tar.bz2"; 139 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/es-MX/firefox-90.0.2.tar.bz2"; 140 140 locale = "es-MX"; 141 141 arch = "linux-x86_64"; 142 - sha256 = "fd27c822086cfdd3636d1edd0afb62be22546d2dcb86d968ef4e1875acbb66fe"; 142 + sha256 = "6f2284a3de5653d9e6cfb769162530d9630b45a3fb5ae73bbe5d77b78c4e19a3"; 143 143 } 144 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/et/firefox-90.0.1.tar.bz2"; 144 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/et/firefox-90.0.2.tar.bz2"; 145 145 locale = "et"; 146 146 arch = "linux-x86_64"; 147 - sha256 = "13f34d32f05de7d77d4ffed59a00d539cc819edb3ad9ab52d1a77d9f92a05264"; 147 + sha256 = "9c6a073b4539082ef1714d6068c26f0182d3358903cc1b1a6c15d5cdb6067c18"; 148 148 } 149 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/eu/firefox-90.0.1.tar.bz2"; 149 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/eu/firefox-90.0.2.tar.bz2"; 150 150 locale = "eu"; 151 151 arch = "linux-x86_64"; 152 - sha256 = "b53133754eadfd473a68b0647bbf3ada70ad46cd0820ffc94b96ca0bd259db62"; 152 + sha256 = "025c94ed2fd16956ae30c98ee1173386c5ac8920cf3ca4e61ebc0a9d6b71222f"; 153 153 } 154 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/fa/firefox-90.0.1.tar.bz2"; 154 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/fa/firefox-90.0.2.tar.bz2"; 155 155 locale = "fa"; 156 156 arch = "linux-x86_64"; 157 - sha256 = "048ab2377915cf7efd4daab495873f9c1282f74907bedc22093b0cf17cc3b301"; 157 + sha256 = "3456216eaf2e17f6973e79161815d963be70db4c1a6aed65dd2e378e7611f310"; 158 158 } 159 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/ff/firefox-90.0.1.tar.bz2"; 159 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/ff/firefox-90.0.2.tar.bz2"; 160 160 locale = "ff"; 161 161 arch = "linux-x86_64"; 162 - sha256 = "99de5853888020d6435e8a369eb8b983fe4374e754451dabc2785b9ab2d5bb24"; 162 + sha256 = "e9a8e66a209a135206757082dc0dcc3fbe991fc0f1a10bfc76b7706778d5f433"; 163 163 } 164 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/fi/firefox-90.0.1.tar.bz2"; 164 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/fi/firefox-90.0.2.tar.bz2"; 165 165 locale = "fi"; 166 166 arch = "linux-x86_64"; 167 - sha256 = "03513b1d725a6f5ffa243fe38e19a66c2850d849c09d7b80c3ba17fcb3012b17"; 167 + sha256 = "6f33d44c0f74b9a29accf07d8205604f4c1c7397f9957fd219b246f31def9c82"; 168 168 } 169 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/fr/firefox-90.0.1.tar.bz2"; 169 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/fr/firefox-90.0.2.tar.bz2"; 170 170 locale = "fr"; 171 171 arch = "linux-x86_64"; 172 - sha256 = "350c5ded72a988773acdb3411f0d9d1ecfdd79501cbc04a9ed8777ada8248ae5"; 172 + sha256 = "0e78948af1d6a18195904a6e2c9a368459d5578e9727afc0159fb2c88eb659df"; 173 173 } 174 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/fy-NL/firefox-90.0.1.tar.bz2"; 174 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/fy-NL/firefox-90.0.2.tar.bz2"; 175 175 locale = "fy-NL"; 176 176 arch = "linux-x86_64"; 177 - sha256 = "026a5a3e8140110c830c237b1dee5857d07c9eacd1e803d0f5b054afd0d5d06b"; 177 + sha256 = "8513f2bd6c2004d1fe778573aaeb029877af01b0d3bb2390584337c8095365a6"; 178 178 } 179 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/ga-IE/firefox-90.0.1.tar.bz2"; 179 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/ga-IE/firefox-90.0.2.tar.bz2"; 180 180 locale = "ga-IE"; 181 181 arch = "linux-x86_64"; 182 - sha256 = "1b522979314c1c672c30da02ea7d38f94ea811df91d86b8327836937069ed956"; 182 + sha256 = "74978be3cf0672e779f291a4260fb977c155b3769c0654f4b819bbb69849d9ed"; 183 183 } 184 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/gd/firefox-90.0.1.tar.bz2"; 184 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/gd/firefox-90.0.2.tar.bz2"; 185 185 locale = "gd"; 186 186 arch = "linux-x86_64"; 187 - sha256 = "d6830e901c20477dd4121cd3a0f918634bc3107d799eaf4439b9ba036acd88d5"; 187 + sha256 = "9593cba33374fda3381798b94d6cfcd41b08a3540cbf845aeebd14e8fff6b2ae"; 188 188 } 189 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/gl/firefox-90.0.1.tar.bz2"; 189 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/gl/firefox-90.0.2.tar.bz2"; 190 190 locale = "gl"; 191 191 arch = "linux-x86_64"; 192 - sha256 = "f25adcd9c7c027a7e531a9072201f174cb69e30c30dffabfff4d0d8e12250f68"; 192 + sha256 = "2072671f052216881cab6323912cf32671dd829c0d2a25a0530026bcf763ff33"; 193 193 } 194 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/gn/firefox-90.0.1.tar.bz2"; 194 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/gn/firefox-90.0.2.tar.bz2"; 195 195 locale = "gn"; 196 196 arch = "linux-x86_64"; 197 - sha256 = "a0df03aa486320a1fbb554a5be600067d2447af0a63726290f2c7d599c9a9534"; 197 + sha256 = "74a3ba6468110a5bf719fa0ed064ed0ceb2cabc9f9182789d3cf8cc7e166548e"; 198 198 } 199 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/gu-IN/firefox-90.0.1.tar.bz2"; 199 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/gu-IN/firefox-90.0.2.tar.bz2"; 200 200 locale = "gu-IN"; 201 201 arch = "linux-x86_64"; 202 - sha256 = "daf1ba05f971b8b8f04da9085eefb03ad15fa5bf6d637ad1bcedb94665bb150d"; 202 + sha256 = "e58cafd6d1ebd0d5158683e640e745b993365dac9c3ad118274e5115ca3fa986"; 203 203 } 204 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/he/firefox-90.0.1.tar.bz2"; 204 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/he/firefox-90.0.2.tar.bz2"; 205 205 locale = "he"; 206 206 arch = "linux-x86_64"; 207 - sha256 = "cedcbd2e76bf371ed8daefd100631e0381470b3980946e033b39a2b94035a55c"; 207 + sha256 = "f2ec967d4e4b9037a46e840ebbcddff8d30ba5284bcc0e9c993807e477004002"; 208 208 } 209 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/hi-IN/firefox-90.0.1.tar.bz2"; 209 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/hi-IN/firefox-90.0.2.tar.bz2"; 210 210 locale = "hi-IN"; 211 211 arch = "linux-x86_64"; 212 - sha256 = "d0d6ba66c59fed2c33d9e21c9015b40743ac7e4305b1055f39b909754af984bd"; 212 + sha256 = "74b7fd465be49622638042bd92ebafb961371e8ba3229c5f51b6e16b3d86c2d6"; 213 213 } 214 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/hr/firefox-90.0.1.tar.bz2"; 214 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/hr/firefox-90.0.2.tar.bz2"; 215 215 locale = "hr"; 216 216 arch = "linux-x86_64"; 217 - sha256 = "11ba8ffdf88bbaec536e4a362dd40f2eb535edb652fb01587ed46ba09fa7f17e"; 217 + sha256 = "8eba7ac66bb1c50537cd684c637ad3bf827cb4d835dea895bef648adbf5ae901"; 218 218 } 219 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/hsb/firefox-90.0.1.tar.bz2"; 219 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/hsb/firefox-90.0.2.tar.bz2"; 220 220 locale = "hsb"; 221 221 arch = "linux-x86_64"; 222 - sha256 = "d1e1fbba7748ffc2c0f92e4be4dbe346359bc145fa2dc063ed4660d14ffb0b1f"; 222 + sha256 = "04dc064d385a2cc9558ffb293d03a9200046982911c8ffae04fb940ef6348f0a"; 223 223 } 224 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/hu/firefox-90.0.1.tar.bz2"; 224 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/hu/firefox-90.0.2.tar.bz2"; 225 225 locale = "hu"; 226 226 arch = "linux-x86_64"; 227 - sha256 = "ba8d28151ddd5e02b530b653f5bf5de9dc97669355a8b6370e5067527f22bf34"; 227 + sha256 = "fbb823826e6c27b4fc771128ac7e4cabfe25957726ad6926ce6092d92a0ee805"; 228 228 } 229 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/hy-AM/firefox-90.0.1.tar.bz2"; 229 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/hy-AM/firefox-90.0.2.tar.bz2"; 230 230 locale = "hy-AM"; 231 231 arch = "linux-x86_64"; 232 - sha256 = "df7d7543013687f02a88f9e6d52d4bfbb46c6ce6646bfbbf86571d7473be2554"; 232 + sha256 = "9267181169545acdf9a1c3d34d2a8486b06e470704bacb4d77f608c4a0d7fe89"; 233 233 } 234 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/ia/firefox-90.0.1.tar.bz2"; 234 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/ia/firefox-90.0.2.tar.bz2"; 235 235 locale = "ia"; 236 236 arch = "linux-x86_64"; 237 - sha256 = "1df0469ba5a368bf5ddd323e68ab458d29042b85e471bb7e20dfccefdf086ba9"; 237 + sha256 = "197a1a6e71f14c4ddbfab5be47d60ec8bae32bef4dcaf6638932dba41bdd0c06"; 238 238 } 239 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/id/firefox-90.0.1.tar.bz2"; 239 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/id/firefox-90.0.2.tar.bz2"; 240 240 locale = "id"; 241 241 arch = "linux-x86_64"; 242 - sha256 = "fee462d383763763a6034a452150166d507d424e303b114b68bb13b6779605d8"; 242 + sha256 = "4fa565fb93e011f7bca7cf321e342361e4ea3462764bb2b965fd192f4fdc20ff"; 243 243 } 244 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/is/firefox-90.0.1.tar.bz2"; 244 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/is/firefox-90.0.2.tar.bz2"; 245 245 locale = "is"; 246 246 arch = "linux-x86_64"; 247 - sha256 = "86568d6afaed2043d916343c565689047246ff3dbab5e6d928e5a6722f8d093d"; 247 + sha256 = "c6f026a88f5e3e81a5b6998004f122dc3d225decaed161c83145fde0f97ec0b2"; 248 248 } 249 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/it/firefox-90.0.1.tar.bz2"; 249 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/it/firefox-90.0.2.tar.bz2"; 250 250 locale = "it"; 251 251 arch = "linux-x86_64"; 252 - sha256 = "36e5dc00b8f9bc3fdc91441c0939eae5d43356ef0268c2bebea1d087f5d414e5"; 252 + sha256 = "41da1b7f11386b99ab836b098250d677b1d9804807932e021050d9d5705bb61a"; 253 253 } 254 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/ja/firefox-90.0.1.tar.bz2"; 254 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/ja/firefox-90.0.2.tar.bz2"; 255 255 locale = "ja"; 256 256 arch = "linux-x86_64"; 257 - sha256 = "b07f66b82be0f6f716384c37286205be455c83d8c9299456376d171167269903"; 257 + sha256 = "e6c64a6f8d9d7369c4d768e86195d7ae4943a36ce2a17bc52c64d6d506790b89"; 258 258 } 259 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/ka/firefox-90.0.1.tar.bz2"; 259 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/ka/firefox-90.0.2.tar.bz2"; 260 260 locale = "ka"; 261 261 arch = "linux-x86_64"; 262 - sha256 = "5b391f01586ca70900ce279de8f3e22c670de5b210f350bc8bf82c75dd47e0ac"; 262 + sha256 = "15af2a3dde8265ef88578f1682ed5874745bbe8afb40cec31933a03618c74eb6"; 263 263 } 264 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/kab/firefox-90.0.1.tar.bz2"; 264 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/kab/firefox-90.0.2.tar.bz2"; 265 265 locale = "kab"; 266 266 arch = "linux-x86_64"; 267 - sha256 = "a833e4c862c8805d4a1571b210de928f5d4fd6e7973d1de5e7ac1e8e3877b722"; 267 + sha256 = "0030c8ca365659698af414b325681673ff600642c873b5403abd77019a3b3c97"; 268 268 } 269 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/kk/firefox-90.0.1.tar.bz2"; 269 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/kk/firefox-90.0.2.tar.bz2"; 270 270 locale = "kk"; 271 271 arch = "linux-x86_64"; 272 - sha256 = "5041bbd4acba0a2710e705798c8196605c62852de8a1c43f3676631dba5369a5"; 272 + sha256 = "e596da9120269aea24f275f15a04f65e4319e7c19508fe292752af19d8ff1af4"; 273 273 } 274 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/km/firefox-90.0.1.tar.bz2"; 274 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/km/firefox-90.0.2.tar.bz2"; 275 275 locale = "km"; 276 276 arch = "linux-x86_64"; 277 - sha256 = "f71888db4e4cc49172d625cca26b5b72c6d85180894f29ee0b934781f0f6efff"; 277 + sha256 = "d42dc8a75e3e474da6017c15b699a4b9cdaaa78d1afb8dade7af14f2503ef8d6"; 278 278 } 279 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/kn/firefox-90.0.1.tar.bz2"; 279 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/kn/firefox-90.0.2.tar.bz2"; 280 280 locale = "kn"; 281 281 arch = "linux-x86_64"; 282 - sha256 = "7d32dee56e657d791eb80e6829ad2ff3624d949531bff1366b685924564d6534"; 282 + sha256 = "4674bda817818609461aa128f9aad337a25718646a65924545b403985eecbc8a"; 283 283 } 284 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/ko/firefox-90.0.1.tar.bz2"; 284 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/ko/firefox-90.0.2.tar.bz2"; 285 285 locale = "ko"; 286 286 arch = "linux-x86_64"; 287 - sha256 = "f9f0781ca8eeb1b21060a3cc2df8f8f5fecd659a230fa4f5f2907db5c37fe6c6"; 287 + sha256 = "f3f95e0d996e4cc1fbd3d1051b34a2f6d436a6672fb417f74ff140dc01943f67"; 288 288 } 289 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/lij/firefox-90.0.1.tar.bz2"; 289 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/lij/firefox-90.0.2.tar.bz2"; 290 290 locale = "lij"; 291 291 arch = "linux-x86_64"; 292 - sha256 = "0cff9a886e2d158ff00638200106d6537a254cc5a64e48a8233770e5798c1ca5"; 292 + sha256 = "40e470989b0ab746c04c3fa7023c90b0512ef6b580a77b2de8651483e145b1ba"; 293 293 } 294 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/lt/firefox-90.0.1.tar.bz2"; 294 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/lt/firefox-90.0.2.tar.bz2"; 295 295 locale = "lt"; 296 296 arch = "linux-x86_64"; 297 - sha256 = "69c8e5a6f5c3d2435ed6dd02bc1c4b9264b1543b7763ade3accf4f30eea7b9e6"; 297 + sha256 = "fcb0b0eaa5144357809197539100013ab027de6334d093061b8971057e85e694"; 298 298 } 299 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/lv/firefox-90.0.1.tar.bz2"; 299 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/lv/firefox-90.0.2.tar.bz2"; 300 300 locale = "lv"; 301 301 arch = "linux-x86_64"; 302 - sha256 = "55b59adc86e9e91f5a134bb16837c8843449f4dfc85abbb3f292bb34214bbca0"; 302 + sha256 = "2aef3f3de461f1c00909dea7bdc00ed1f56d0e4edcb7b2f08581fd06dc6286b8"; 303 303 } 304 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/mk/firefox-90.0.1.tar.bz2"; 304 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/mk/firefox-90.0.2.tar.bz2"; 305 305 locale = "mk"; 306 306 arch = "linux-x86_64"; 307 - sha256 = "d670166e34e513ff4dac69740f547542e4e2c3e24f7ae7d165dbe5a4151f17e4"; 307 + sha256 = "789fbe69ab269da101585eab463eb7eab50c1fbfbc92fb88116f402966ad3e71"; 308 308 } 309 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/mr/firefox-90.0.1.tar.bz2"; 309 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/mr/firefox-90.0.2.tar.bz2"; 310 310 locale = "mr"; 311 311 arch = "linux-x86_64"; 312 - sha256 = "9cd258a90e1a12a113e626bbaa4d557936b29b71491138e73f74ebf6645a9b76"; 312 + sha256 = "fd4d1e60ed873bbbb522c956e14ac21bb490888f84dbe900dfcfd036bfd84289"; 313 313 } 314 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/ms/firefox-90.0.1.tar.bz2"; 314 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/ms/firefox-90.0.2.tar.bz2"; 315 315 locale = "ms"; 316 316 arch = "linux-x86_64"; 317 - sha256 = "0b68ba835ae0f3561eaa2721de08bab95946c1e1111b05f8b02cb7f95bc23335"; 317 + sha256 = "970f5e7f8962c05653228830f53bb55585e7a14bc526f06e09e4fe18c30cf93b"; 318 318 } 319 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/my/firefox-90.0.1.tar.bz2"; 319 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/my/firefox-90.0.2.tar.bz2"; 320 320 locale = "my"; 321 321 arch = "linux-x86_64"; 322 - sha256 = "071df9d8ee0a5d1e3b3ae8f472173b5da378b6b41646a3d1d2222a3dbc73596a"; 322 + sha256 = "188813a56ed195452e3dc77760707ac6bb8daf7e8063ae5b3f8dd18597d70452"; 323 323 } 324 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/nb-NO/firefox-90.0.1.tar.bz2"; 324 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/nb-NO/firefox-90.0.2.tar.bz2"; 325 325 locale = "nb-NO"; 326 326 arch = "linux-x86_64"; 327 - sha256 = "2623cb59780a1db3cc20267023c93f578ad4c6cfede8b12416f538d62ffa930c"; 327 + sha256 = "0e1e979c3e33c5b272355238491bd971a68e6b17cd619f14d61814214516553b"; 328 328 } 329 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/ne-NP/firefox-90.0.1.tar.bz2"; 329 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/ne-NP/firefox-90.0.2.tar.bz2"; 330 330 locale = "ne-NP"; 331 331 arch = "linux-x86_64"; 332 - sha256 = "a6c6c514cf476bd93d64c1e315161d765792528a632aa881a75abb85076ac998"; 332 + sha256 = "b45d52daf7a8fccb52642eea1da34ba5447a9511d6d577530379804ce64b3a68"; 333 333 } 334 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/nl/firefox-90.0.1.tar.bz2"; 334 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/nl/firefox-90.0.2.tar.bz2"; 335 335 locale = "nl"; 336 336 arch = "linux-x86_64"; 337 - sha256 = "60d7de62f35cadc8bab987bf81fe6d8635388b361f3157e5d13809604cc41927"; 337 + sha256 = "36a5808b6e510a8c9eb4d61e8cdd1a29f43bade3c30876b1c0d882af1a9b4dd1"; 338 338 } 339 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/nn-NO/firefox-90.0.1.tar.bz2"; 339 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/nn-NO/firefox-90.0.2.tar.bz2"; 340 340 locale = "nn-NO"; 341 341 arch = "linux-x86_64"; 342 - sha256 = "a1b0cebb8de16685011e5cded38add6a3b13738163dbcf6216182b350c293f27"; 342 + sha256 = "958f51581c99d459f2e82c0abd311d487e444388bbcacae193fbc8d44df0a567"; 343 343 } 344 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/oc/firefox-90.0.1.tar.bz2"; 344 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/oc/firefox-90.0.2.tar.bz2"; 345 345 locale = "oc"; 346 346 arch = "linux-x86_64"; 347 - sha256 = "f4f491e962ec713e708e9f773de3af9f6251ab6f2f41f516116f83a63824928a"; 347 + sha256 = "895f42c9024a9e15e2bad2a1eda74eb6d1e928d01766235ca706543eca822b05"; 348 348 } 349 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/pa-IN/firefox-90.0.1.tar.bz2"; 349 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/pa-IN/firefox-90.0.2.tar.bz2"; 350 350 locale = "pa-IN"; 351 351 arch = "linux-x86_64"; 352 - sha256 = "5a41333ed465121d212ddc6c61faf2a5c4eab25daf0ec3206196077f490a18e1"; 352 + sha256 = "fc24be218f92076761afa833a1374cf2573b1ac3e86bafd1bde8ea720a181c43"; 353 353 } 354 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/pl/firefox-90.0.1.tar.bz2"; 354 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/pl/firefox-90.0.2.tar.bz2"; 355 355 locale = "pl"; 356 356 arch = "linux-x86_64"; 357 - sha256 = "de5d8c3e5b8f458c400a98c1b72595ff951a54083ff29e1bf01fc3421443cbd8"; 357 + sha256 = "eeac2270945b16aef7d138733fb08576e877347b0a222eb97a0b8f154074af76"; 358 358 } 359 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/pt-BR/firefox-90.0.1.tar.bz2"; 359 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/pt-BR/firefox-90.0.2.tar.bz2"; 360 360 locale = "pt-BR"; 361 361 arch = "linux-x86_64"; 362 - sha256 = "53fb72801cc33ded2e31142161faaca04ec5f7742413faeada30e1c5ef51025b"; 362 + sha256 = "6c609946024a8659d84e3b356245db80e08df7a0fdf4745b846537bc164bfbf0"; 363 363 } 364 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/pt-PT/firefox-90.0.1.tar.bz2"; 364 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/pt-PT/firefox-90.0.2.tar.bz2"; 365 365 locale = "pt-PT"; 366 366 arch = "linux-x86_64"; 367 - sha256 = "2c72ac24a7cbdb79b338ad9a79f649be85caa0377b78fabcf07c42b1ef02a94e"; 367 + sha256 = "604f36949f5b7107f4b84e2da7c0125ab67add31a3adf811cd696458127a0d9d"; 368 368 } 369 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/rm/firefox-90.0.1.tar.bz2"; 369 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/rm/firefox-90.0.2.tar.bz2"; 370 370 locale = "rm"; 371 371 arch = "linux-x86_64"; 372 - sha256 = "bfd252411406e6a8816ef000fc6fcff6357741924754daf05ee39ff331bdf3e5"; 372 + sha256 = "52a29404671e2b3132c2d3b27859b414820755b2d60a1043483e26dc33985336"; 373 373 } 374 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/ro/firefox-90.0.1.tar.bz2"; 374 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/ro/firefox-90.0.2.tar.bz2"; 375 375 locale = "ro"; 376 376 arch = "linux-x86_64"; 377 - sha256 = "f4c9a173ab7e9fc964f4c255ef9830559fc835d1f18ac388de5fa16d2df5d521"; 377 + sha256 = "60a8c8e6cd54b4093d922dfd3aaeda483d82ec8c23725e8d1a15ec7c21d662dd"; 378 378 } 379 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/ru/firefox-90.0.1.tar.bz2"; 379 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/ru/firefox-90.0.2.tar.bz2"; 380 380 locale = "ru"; 381 381 arch = "linux-x86_64"; 382 - sha256 = "07d1c8cd10323f039a040295230f223e9e6b40860830b2e26a0ab9fd2c15d0a7"; 382 + sha256 = "6e18bb8f1828a832715543be37f5bee235135623256a0af70e40cbc0513a0477"; 383 383 } 384 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/si/firefox-90.0.1.tar.bz2"; 384 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/si/firefox-90.0.2.tar.bz2"; 385 385 locale = "si"; 386 386 arch = "linux-x86_64"; 387 - sha256 = "6f816e89adaabb79ff1b73eed516e6c5f817d7af0ccaee58262ea47c80a08664"; 387 + sha256 = "f85b0f7c1234a9bad7bf7c242209df03dc17655e9a9b5672df04790433648f24"; 388 388 } 389 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/sk/firefox-90.0.1.tar.bz2"; 389 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/sk/firefox-90.0.2.tar.bz2"; 390 390 locale = "sk"; 391 391 arch = "linux-x86_64"; 392 - sha256 = "14fbd3f2057da82c95e2cd194021adc3c7c19b0f64cd56e623ae2341b7414301"; 392 + sha256 = "1bdbd0877f513c4368de9fc494b4d3eaf47ff28c73cd323a99f6f02e105f6ec0"; 393 393 } 394 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/sl/firefox-90.0.1.tar.bz2"; 394 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/sl/firefox-90.0.2.tar.bz2"; 395 395 locale = "sl"; 396 396 arch = "linux-x86_64"; 397 - sha256 = "388ef17576722a32d22350ac2848c8e7f0239481f1d0172441770052bf1c53d5"; 397 + sha256 = "7f581f23d215bd6d5c52518b4711601b3558fd7b0d5ee6e7484453340d9bfbef"; 398 398 } 399 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/son/firefox-90.0.1.tar.bz2"; 399 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/son/firefox-90.0.2.tar.bz2"; 400 400 locale = "son"; 401 401 arch = "linux-x86_64"; 402 - sha256 = "f7785fc5a91c991c277b36eca1928c350953043e77cdb4b47f25d5f2f611828d"; 402 + sha256 = "47de297dc96c63f1eca6dc37df4dcbb73e5ed1561311c9b60cf2e0eba52e4a9c"; 403 403 } 404 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/sq/firefox-90.0.1.tar.bz2"; 404 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/sq/firefox-90.0.2.tar.bz2"; 405 405 locale = "sq"; 406 406 arch = "linux-x86_64"; 407 - sha256 = "cc0f348c99304e0da47bbc4be45bc350c53574ea1e20d781f88862e5add4c60a"; 407 + sha256 = "cca2b590997e16daadc8772cd67deff819cb587e2e8bdbcf943c7d5b99a323e2"; 408 408 } 409 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/sr/firefox-90.0.1.tar.bz2"; 409 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/sr/firefox-90.0.2.tar.bz2"; 410 410 locale = "sr"; 411 411 arch = "linux-x86_64"; 412 - sha256 = "6824091ffb721ff42072798cd72c3061921eb69f85a710c141407f83ddddd836"; 412 + sha256 = "d31e8bb274404448473e57021995fd7ae78c2024f146206e415580676656a6ac"; 413 413 } 414 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/sv-SE/firefox-90.0.1.tar.bz2"; 414 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/sv-SE/firefox-90.0.2.tar.bz2"; 415 415 locale = "sv-SE"; 416 416 arch = "linux-x86_64"; 417 - sha256 = "3d86180707aa4f2fbe271e9d8fdf10ef5cd52126648a64e684214f159cbc7512"; 417 + sha256 = "6bf03f5aef1391708f25a386f05d7b3959bee8390421cefa3b993cd5b9278c3e"; 418 418 } 419 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/szl/firefox-90.0.1.tar.bz2"; 419 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/szl/firefox-90.0.2.tar.bz2"; 420 420 locale = "szl"; 421 421 arch = "linux-x86_64"; 422 - sha256 = "e49776c7820b51648c8e2d19f5e8073515fda5397adae3302383e9f503240e08"; 422 + sha256 = "2198b1cff87868bd9152f24306d99be63c322dca578d12ede90d5d34c3635a8d"; 423 423 } 424 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/ta/firefox-90.0.1.tar.bz2"; 424 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/ta/firefox-90.0.2.tar.bz2"; 425 425 locale = "ta"; 426 426 arch = "linux-x86_64"; 427 - sha256 = "d8b32890c9ad376cd9122ae6e80d1dc65c0b8be1e5dd4c7381011b1059dd8bbd"; 427 + sha256 = "5fad9a8a62e6a1a96341842f34011db87ffb30dc7490582c0c4da0d2245e6425"; 428 428 } 429 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/te/firefox-90.0.1.tar.bz2"; 429 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/te/firefox-90.0.2.tar.bz2"; 430 430 locale = "te"; 431 431 arch = "linux-x86_64"; 432 - sha256 = "87974e3cf5214db7f82244b43a584f3cb11d4ba66ac45dfce1d22f417fd63185"; 432 + sha256 = "78010fc0503019b04cb7cc44c500c845e28a90c52db7480264e989fbd5deb389"; 433 433 } 434 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/th/firefox-90.0.1.tar.bz2"; 434 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/th/firefox-90.0.2.tar.bz2"; 435 435 locale = "th"; 436 436 arch = "linux-x86_64"; 437 - sha256 = "1d65c868936bd174ae9ecac66e1c1bc30e4b1214aaa0a2762dfcda6929eed1ec"; 437 + sha256 = "221016e5e7e4f4fb53eb570edd825b2d38922fba7c0344a0048525ffbbb2ae02"; 438 438 } 439 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/tl/firefox-90.0.1.tar.bz2"; 439 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/tl/firefox-90.0.2.tar.bz2"; 440 440 locale = "tl"; 441 441 arch = "linux-x86_64"; 442 - sha256 = "115ecf4d90d13df1352637c9ed6d1701b6a9d0793d3487d582b90d487e27b52f"; 442 + sha256 = "81ff9417cbdb2c36be61baa2752701d5507cf5214ac0afac822d426e029c8141"; 443 443 } 444 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/tr/firefox-90.0.1.tar.bz2"; 444 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/tr/firefox-90.0.2.tar.bz2"; 445 445 locale = "tr"; 446 446 arch = "linux-x86_64"; 447 - sha256 = "d66f4114e577e945abbb1b32206b2cddff65db1f9a2b1cbd1c8a11e528ce656f"; 447 + sha256 = "e3a053ff1b785e52df509a08d66bc5662252c8edf7e476812aca76c2c4ab0b75"; 448 448 } 449 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/trs/firefox-90.0.1.tar.bz2"; 449 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/trs/firefox-90.0.2.tar.bz2"; 450 450 locale = "trs"; 451 451 arch = "linux-x86_64"; 452 - sha256 = "1dc6d43229d0912d34394889deba3d91796ac4aac437b7ed86065d978871fbec"; 452 + sha256 = "d8c246da9885ec4b5f73284f09a6a80b7fe07f1f49da83975811f478526366f6"; 453 453 } 454 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/uk/firefox-90.0.1.tar.bz2"; 454 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/uk/firefox-90.0.2.tar.bz2"; 455 455 locale = "uk"; 456 456 arch = "linux-x86_64"; 457 - sha256 = "1795fbe577dee1bc042a7b50bceb958446e7f6c95133c2d1432f1494ba86b6a0"; 457 + sha256 = "0e1024086ade42468ed2f12396a03b87e2698e2490f69cc62c9f76f462d07ffc"; 458 458 } 459 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/ur/firefox-90.0.1.tar.bz2"; 459 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/ur/firefox-90.0.2.tar.bz2"; 460 460 locale = "ur"; 461 461 arch = "linux-x86_64"; 462 - sha256 = "1da88a58d6262c4b2866e765efae0ccc23ff224ed59d5f9a30434a16408b17d1"; 462 + sha256 = "14376446a9006673e2bc2fd5d947a08b07af2ff50e70cc9dd4e3bff51052a298"; 463 463 } 464 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/uz/firefox-90.0.1.tar.bz2"; 464 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/uz/firefox-90.0.2.tar.bz2"; 465 465 locale = "uz"; 466 466 arch = "linux-x86_64"; 467 - sha256 = "549956dc6ac0eab50becf7562e91a17fdc3f0244197379f03bbdb2b12f2ecaef"; 467 + sha256 = "15fc45a28194b3fe8f3aaf2a47de64693e8ffe9054e9b7e06ae72018a7c0ee5a"; 468 468 } 469 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/vi/firefox-90.0.1.tar.bz2"; 469 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/vi/firefox-90.0.2.tar.bz2"; 470 470 locale = "vi"; 471 471 arch = "linux-x86_64"; 472 - sha256 = "3e9575342f30b81bebc730c855b54120c95e385edf9273e5355f857da81d55ea"; 472 + sha256 = "69d69c341b80ca9b521607b737084297119cff0f66c4606c28bcdb47c67907dc"; 473 473 } 474 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/xh/firefox-90.0.1.tar.bz2"; 474 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/xh/firefox-90.0.2.tar.bz2"; 475 475 locale = "xh"; 476 476 arch = "linux-x86_64"; 477 - sha256 = "d2e7dd3cbd70ef34c53bcfc5b3427508ed368cad548afe0509ff7149a6472ff8"; 477 + sha256 = "9714bf46a53920a79844cf25cb7f2be2b33d4c98fc9c862edbb44ecba35c0bee"; 478 478 } 479 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/zh-CN/firefox-90.0.1.tar.bz2"; 479 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/zh-CN/firefox-90.0.2.tar.bz2"; 480 480 locale = "zh-CN"; 481 481 arch = "linux-x86_64"; 482 - sha256 = "a65f4a1002422a07083fb8566e3129f781a8083d9427ba4236812204c953a5f3"; 482 + sha256 = "fd5b352d29c37ef0c750d40b8182da3399a8e52589d325dbd85fdfc2fabb1ed8"; 483 483 } 484 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-x86_64/zh-TW/firefox-90.0.1.tar.bz2"; 484 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-x86_64/zh-TW/firefox-90.0.2.tar.bz2"; 485 485 locale = "zh-TW"; 486 486 arch = "linux-x86_64"; 487 - sha256 = "e5f1c0d36c7a4b3634858d691c5f26481018ac4ce7c5ab7a4c19e04b33810941"; 487 + sha256 = "4b79f6db1aae404d23d1dca8ed8745b1132fefe62c2c2a4e64a49aff0cbcb0ab"; 488 488 } 489 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/ach/firefox-90.0.1.tar.bz2"; 489 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/ach/firefox-90.0.2.tar.bz2"; 490 490 locale = "ach"; 491 491 arch = "linux-i686"; 492 - sha256 = "b5908565dea1f33f82d8e380bb5d648fab9ebcb4af24d602a6c71e176fee5007"; 492 + sha256 = "73f89b3c521f974f865ce35081ca23aa34288a3c2c97793031edc0c03e999f1d"; 493 493 } 494 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/af/firefox-90.0.1.tar.bz2"; 494 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/af/firefox-90.0.2.tar.bz2"; 495 495 locale = "af"; 496 496 arch = "linux-i686"; 497 - sha256 = "d40bd877e5ad156a45c0c325794537ef9dd71770a395aeebf8381075df0c74d6"; 497 + sha256 = "02c1c8be1c00405a2c2ac66486e01f761c5c6400b2f685f739cc196c130d391d"; 498 498 } 499 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/an/firefox-90.0.1.tar.bz2"; 499 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/an/firefox-90.0.2.tar.bz2"; 500 500 locale = "an"; 501 501 arch = "linux-i686"; 502 - sha256 = "c72b84b92239955c750cdc302cfed32c7ed1a1352a88b5f599b4edfaad79fdf6"; 502 + sha256 = "173b9ccad19be6b1b5b48eaa0f5f670ee97cfa28e249d36bd85846c8e52c4c87"; 503 503 } 504 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/ar/firefox-90.0.1.tar.bz2"; 504 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/ar/firefox-90.0.2.tar.bz2"; 505 505 locale = "ar"; 506 506 arch = "linux-i686"; 507 - sha256 = "25b4175421efe766e7be49591c04b636699bc685aee6459c48b19fe9aaca07db"; 507 + sha256 = "fcea5e8c3fde2d339556d4f1544d7f5f83a4c72adb129d028dd0eb342d3fc85f"; 508 508 } 509 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/ast/firefox-90.0.1.tar.bz2"; 509 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/ast/firefox-90.0.2.tar.bz2"; 510 510 locale = "ast"; 511 511 arch = "linux-i686"; 512 - sha256 = "d7919de20cf70de38f03e508b6ac5728b76ceedb626636cfed74c4698ce4dbc6"; 512 + sha256 = "79c68a84f273543a92796e725530dc8f7097801d1958052576ca5b26b8075c86"; 513 513 } 514 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/az/firefox-90.0.1.tar.bz2"; 514 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/az/firefox-90.0.2.tar.bz2"; 515 515 locale = "az"; 516 516 arch = "linux-i686"; 517 - sha256 = "addbe7fa0121dc3643afde905bf33b764d36d49a60ccf6c427ab97ac941ce9f3"; 517 + sha256 = "3aaac6897845e3884fbfca0888b1b2bb08709a4a1934aa5bf1d7a84dedf29377"; 518 518 } 519 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/be/firefox-90.0.1.tar.bz2"; 519 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/be/firefox-90.0.2.tar.bz2"; 520 520 locale = "be"; 521 521 arch = "linux-i686"; 522 - sha256 = "db52de7ce7236110b28322996303e2a07f69b88eb53393aa4ff75dd841b02aa3"; 522 + sha256 = "2bbcdf98b683420da29b8f3b09a6527a8013deefd9ad987d91947b7ac4764dd1"; 523 523 } 524 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/bg/firefox-90.0.1.tar.bz2"; 524 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/bg/firefox-90.0.2.tar.bz2"; 525 525 locale = "bg"; 526 526 arch = "linux-i686"; 527 - sha256 = "2abe8c91ce73f350e31de13807fcdc48c2621a29fe25d17ed25a2fb8052ce831"; 527 + sha256 = "693d8513e86329c3796713d9a42ecb9d844bdd3935ad377321156af233f2919e"; 528 528 } 529 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/bn/firefox-90.0.1.tar.bz2"; 529 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/bn/firefox-90.0.2.tar.bz2"; 530 530 locale = "bn"; 531 531 arch = "linux-i686"; 532 - sha256 = "2b5f6e1bd73eda0fdf69f6d8181b83206bfbcfcb5edb11be12f2a29e6ffd4a37"; 532 + sha256 = "19a2eee6ad520be48b9499bdd0308b15cc022d9767216382d8de3de24c342a46"; 533 533 } 534 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/br/firefox-90.0.1.tar.bz2"; 534 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/br/firefox-90.0.2.tar.bz2"; 535 535 locale = "br"; 536 536 arch = "linux-i686"; 537 - sha256 = "53339a26816934aa1f5edac114844c42b7107326f114ba28818700ae8ee199ca"; 537 + sha256 = "d4901f3ec5ffc0340dee345fdf381b8f38ffe36d0fe934ed2b983b5600d2f6b7"; 538 538 } 539 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/bs/firefox-90.0.1.tar.bz2"; 539 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/bs/firefox-90.0.2.tar.bz2"; 540 540 locale = "bs"; 541 541 arch = "linux-i686"; 542 - sha256 = "d49005f911a027a7628f45103ad2e43438a7ec33142f9a5ec7738a8694d071de"; 542 + sha256 = "5a40c41b8ec915b94139f82ac77480c37a2da4595b0f4066f11d33463dff9703"; 543 543 } 544 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/ca-valencia/firefox-90.0.1.tar.bz2"; 544 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/ca-valencia/firefox-90.0.2.tar.bz2"; 545 545 locale = "ca-valencia"; 546 546 arch = "linux-i686"; 547 - sha256 = "ccaa99d7eede57e43c57ab2a185a53061476cedb65f37d4659c1e765297c937a"; 547 + sha256 = "831a7712f29ccc118ca8ab9ce3796292f56c0e45596e1f2904ae899661e727a0"; 548 548 } 549 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/ca/firefox-90.0.1.tar.bz2"; 549 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/ca/firefox-90.0.2.tar.bz2"; 550 550 locale = "ca"; 551 551 arch = "linux-i686"; 552 - sha256 = "b4df85c3f723a3e8c44d249f12f37bd27eeade4ec802baccf2e82a92e9869002"; 552 + sha256 = "eb604650d0b3539c853c1709835edf05c0c60969f0065c8f6c0ed80d41f2a8ec"; 553 553 } 554 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/cak/firefox-90.0.1.tar.bz2"; 554 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/cak/firefox-90.0.2.tar.bz2"; 555 555 locale = "cak"; 556 556 arch = "linux-i686"; 557 - sha256 = "a8e1244c9904e3f5bada11c33f2f542b6dbb5ccb867f7cc6d5a2d1a99e95c48d"; 557 + sha256 = "5fe7fc105f7ae411ffc24df0e2ba8c36cdd2fc1be9077ca261a9c422dae6dfe2"; 558 558 } 559 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/cs/firefox-90.0.1.tar.bz2"; 559 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/cs/firefox-90.0.2.tar.bz2"; 560 560 locale = "cs"; 561 561 arch = "linux-i686"; 562 - sha256 = "b2cbe665a6b2482edbe29b50036922708e7bc7aaad65ef6d91b47beb4f53acbe"; 562 + sha256 = "53c39c90aed6e55b324b8ef8375ab5b8b627788d716d71ff94f33a3706b7a3c9"; 563 563 } 564 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/cy/firefox-90.0.1.tar.bz2"; 564 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/cy/firefox-90.0.2.tar.bz2"; 565 565 locale = "cy"; 566 566 arch = "linux-i686"; 567 - sha256 = "5e151c341812dcf8bdf769ba0a1ae9ec03b3e79d5f55fb18241ab0ef907538fe"; 567 + sha256 = "d12f73551705c7ad3afd9898f92d4a20080040542df5ce5fdca27f150491c83d"; 568 568 } 569 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/da/firefox-90.0.1.tar.bz2"; 569 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/da/firefox-90.0.2.tar.bz2"; 570 570 locale = "da"; 571 571 arch = "linux-i686"; 572 - sha256 = "ebcb60a77185d17114c26d58a61a3a3ef5198709c43133263efbe39c05275dcd"; 572 + sha256 = "c5016abf9337ac7f48e12e656e1aefaa572cbeed9ed4ca27717724b08c48cbb5"; 573 573 } 574 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/de/firefox-90.0.1.tar.bz2"; 574 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/de/firefox-90.0.2.tar.bz2"; 575 575 locale = "de"; 576 576 arch = "linux-i686"; 577 - sha256 = "8819ad2efc7d49946eed2adbb10280602d0004722207cb46e06f46f4fb0f80d8"; 577 + sha256 = "65a8b0830a07b3d8936cc2f266ced396481dc140433f8092d774ed9b0600bd53"; 578 578 } 579 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/dsb/firefox-90.0.1.tar.bz2"; 579 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/dsb/firefox-90.0.2.tar.bz2"; 580 580 locale = "dsb"; 581 581 arch = "linux-i686"; 582 - sha256 = "c91e40aed7b1c1c41ebe0cdf77e46cb284d7cd308c6ae66a70f46fc4dab008a0"; 582 + sha256 = "5044dc086c73ff07ee88f1987d15a432931e7ff48c045a05eea8eb1aee5e5f65"; 583 583 } 584 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/el/firefox-90.0.1.tar.bz2"; 584 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/el/firefox-90.0.2.tar.bz2"; 585 585 locale = "el"; 586 586 arch = "linux-i686"; 587 - sha256 = "f9032320f0fd0622c9e6ad048de12533e92660bf56e255d2f79fc0c2adc3356c"; 587 + sha256 = "0b4633ce3aabbd590c308e2b110db416fb0d719778c0132231e3ba94235d940f"; 588 588 } 589 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/en-CA/firefox-90.0.1.tar.bz2"; 589 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/en-CA/firefox-90.0.2.tar.bz2"; 590 590 locale = "en-CA"; 591 591 arch = "linux-i686"; 592 - sha256 = "9224c71771b26085f067acd29993e48aea66a61c7ae193bb6442569b9291677a"; 592 + sha256 = "117590c95bd4f372714ea8ea13eea03c7755c5a4442a5a35e01a7ae2900823e8"; 593 593 } 594 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/en-GB/firefox-90.0.1.tar.bz2"; 594 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/en-GB/firefox-90.0.2.tar.bz2"; 595 595 locale = "en-GB"; 596 596 arch = "linux-i686"; 597 - sha256 = "fd27cadfa31f81d7103f867aea3efb6f03f341708c4ed93df5d6d8fba601c1eb"; 597 + sha256 = "449f0e563b3fcae89e324e0c331c1a1d61ef76a54018fa02ca6a6ca6c16f2910"; 598 598 } 599 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/en-US/firefox-90.0.1.tar.bz2"; 599 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/en-US/firefox-90.0.2.tar.bz2"; 600 600 locale = "en-US"; 601 601 arch = "linux-i686"; 602 - sha256 = "1043cc2125aa682953340fb40b721b3dcffab1ad0c06184fc5a92740638d4a13"; 602 + sha256 = "6713930204c699a6b508a1885785f94672116d8ee1df3eaaab3187011b5540e7"; 603 603 } 604 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/eo/firefox-90.0.1.tar.bz2"; 604 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/eo/firefox-90.0.2.tar.bz2"; 605 605 locale = "eo"; 606 606 arch = "linux-i686"; 607 - sha256 = "1dd42f52563463c146ddef224f97b6e87f82f01249f7bea290a4cb8331dc9fde"; 607 + sha256 = "3754cf70f5a3ec935435c9b8284c1b405870f51fc3224d6c032845d641b3abef"; 608 608 } 609 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/es-AR/firefox-90.0.1.tar.bz2"; 609 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/es-AR/firefox-90.0.2.tar.bz2"; 610 610 locale = "es-AR"; 611 611 arch = "linux-i686"; 612 - sha256 = "fae114afacd99e045abad6dd5a6d4ad5669b00158431ea8458d48e43aa06d4af"; 612 + sha256 = "41f8b2cda0b52cd8d810545a240604ecec7132df3c5b2394b6407f038aa8886b"; 613 613 } 614 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/es-CL/firefox-90.0.1.tar.bz2"; 614 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/es-CL/firefox-90.0.2.tar.bz2"; 615 615 locale = "es-CL"; 616 616 arch = "linux-i686"; 617 - sha256 = "1a4b839f8b55ef758c56ce18770cc31e871278e58f378fa7e7cbf4502e3b930c"; 617 + sha256 = "8febcdbf610c842c31e57a5e0190eb62e586198710ecfbf4b4075d62a7d5f15a"; 618 618 } 619 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/es-ES/firefox-90.0.1.tar.bz2"; 619 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/es-ES/firefox-90.0.2.tar.bz2"; 620 620 locale = "es-ES"; 621 621 arch = "linux-i686"; 622 - sha256 = "cc21e66b7c7250d57067c8fc133a8b6f4a4f4020474bb7d4510c94ca02c316c6"; 622 + sha256 = "54e311e0fd76d0239618f90ce05fa8ed9dc956a0f35886ec587e316f566932b2"; 623 623 } 624 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/es-MX/firefox-90.0.1.tar.bz2"; 624 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/es-MX/firefox-90.0.2.tar.bz2"; 625 625 locale = "es-MX"; 626 626 arch = "linux-i686"; 627 - sha256 = "cfd89dd866f633359c57af8915586abc7d3bedcf2523bf60f7878d70417c09db"; 627 + sha256 = "f57bbcc4176f51aae50ee8fbe5b82e1aed6dca7db6c5bb61b90237a32e93e70d"; 628 628 } 629 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/et/firefox-90.0.1.tar.bz2"; 629 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/et/firefox-90.0.2.tar.bz2"; 630 630 locale = "et"; 631 631 arch = "linux-i686"; 632 - sha256 = "6e678eeef5ebe30b6005533e69ebbc4f096e3a1e2fc07be8c8f1cf3d1b5c1b06"; 632 + sha256 = "633581b5f19a8c271e3e3cd524b3ae7757ab9e2339d8546fd1d223b844b020ea"; 633 633 } 634 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/eu/firefox-90.0.1.tar.bz2"; 634 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/eu/firefox-90.0.2.tar.bz2"; 635 635 locale = "eu"; 636 636 arch = "linux-i686"; 637 - sha256 = "4fcab02f0a755db4baadd5e04fe9589226b0082768ef58e32680a72a86ef52f2"; 637 + sha256 = "1307bdd3214c6a36cfd860e81a1a948df37843effd21ff53525aeef8abbcd3a5"; 638 638 } 639 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/fa/firefox-90.0.1.tar.bz2"; 639 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/fa/firefox-90.0.2.tar.bz2"; 640 640 locale = "fa"; 641 641 arch = "linux-i686"; 642 - sha256 = "bd7500a850ae6c4ea9702521716336bd2809c8e3fc058ea021ee27a1b6d40aa7"; 642 + sha256 = "38fe66fdcc8105a00f5d8655585e96e65f9a1bb6c7d261cad8f7992480728627"; 643 643 } 644 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/ff/firefox-90.0.1.tar.bz2"; 644 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/ff/firefox-90.0.2.tar.bz2"; 645 645 locale = "ff"; 646 646 arch = "linux-i686"; 647 - sha256 = "76b4327258aedc72fcae8b56dc5dd0c99952f0a2021252c5d0e36d1366b68016"; 647 + sha256 = "9e7acbee5e5be85c6fd8bbd11773533f73cb5c6395efbe86d19b20e236e16c1e"; 648 648 } 649 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/fi/firefox-90.0.1.tar.bz2"; 649 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/fi/firefox-90.0.2.tar.bz2"; 650 650 locale = "fi"; 651 651 arch = "linux-i686"; 652 - sha256 = "4500cd834525149ad46b94a7b86ff776511f3173a48064ed88d6b2e67596dc68"; 652 + sha256 = "eece28ddbc746a4182a69f75366e6c2bf0f8e11da790b6bbad0dcd7fb63de0fd"; 653 653 } 654 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/fr/firefox-90.0.1.tar.bz2"; 654 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/fr/firefox-90.0.2.tar.bz2"; 655 655 locale = "fr"; 656 656 arch = "linux-i686"; 657 - sha256 = "85313248992ddcc04bc5b72802929a2c601daae07d5e6d8a11c762159caecf86"; 657 + sha256 = "6bda4541f450ccdeeab51097275e253125078bfd2f7a9454ca8fd44a31a45d6c"; 658 658 } 659 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/fy-NL/firefox-90.0.1.tar.bz2"; 659 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/fy-NL/firefox-90.0.2.tar.bz2"; 660 660 locale = "fy-NL"; 661 661 arch = "linux-i686"; 662 - sha256 = "ba0d003e88355027ccf1be545555e68e06a19e11b7090844707e0053796f2a1d"; 662 + sha256 = "aaab56b445b8cebf325dccd2f809aaa95d30ed9da1834f54b81722ac718e72c1"; 663 663 } 664 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/ga-IE/firefox-90.0.1.tar.bz2"; 664 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/ga-IE/firefox-90.0.2.tar.bz2"; 665 665 locale = "ga-IE"; 666 666 arch = "linux-i686"; 667 - sha256 = "52f94cb53101e4d2564cb4f4589cb2246a4c78314e38e3d566290adf43f40e74"; 667 + sha256 = "2f29abd19a5974d250da1aefdf06986e1b55524610e9bd493e7f94da8e6152fd"; 668 668 } 669 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/gd/firefox-90.0.1.tar.bz2"; 669 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/gd/firefox-90.0.2.tar.bz2"; 670 670 locale = "gd"; 671 671 arch = "linux-i686"; 672 - sha256 = "0998440173e3b5886ff3a356a79fd05e7ea113cab4582a9400abad44ecbf6c48"; 672 + sha256 = "fa2d7d5d462ebc4b21e4652e9e538bfdc4ff3091428454be67ad52cadc3a50b4"; 673 673 } 674 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/gl/firefox-90.0.1.tar.bz2"; 674 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/gl/firefox-90.0.2.tar.bz2"; 675 675 locale = "gl"; 676 676 arch = "linux-i686"; 677 - sha256 = "6ab3ef1a97c8382160420f563c814f14610f1a0d4565ef8f86b8c8ddbf34e162"; 677 + sha256 = "9d133d05024307c5ae30f5b737dc25afd3d9038d3d4e198924d836f61b66fd81"; 678 678 } 679 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/gn/firefox-90.0.1.tar.bz2"; 679 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/gn/firefox-90.0.2.tar.bz2"; 680 680 locale = "gn"; 681 681 arch = "linux-i686"; 682 - sha256 = "f57a5d2ed2b9eb8d35b9bbbb9f76a988409db09c7855d6cb93abf151f8e449c5"; 682 + sha256 = "edb82865a9aff2b459dcf3f26583f27989a5d9aa7eb35aa86c30d672f464e3c0"; 683 683 } 684 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/gu-IN/firefox-90.0.1.tar.bz2"; 684 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/gu-IN/firefox-90.0.2.tar.bz2"; 685 685 locale = "gu-IN"; 686 686 arch = "linux-i686"; 687 - sha256 = "eb62873a8c7e2b5b706cd0033b5042a4f4496c265f7e57e1c65f23e3fc896a6a"; 687 + sha256 = "db64823b1b4610dc4107062a51567c349600fe9e4072ca18fdea80391d7a8064"; 688 688 } 689 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/he/firefox-90.0.1.tar.bz2"; 689 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/he/firefox-90.0.2.tar.bz2"; 690 690 locale = "he"; 691 691 arch = "linux-i686"; 692 - sha256 = "6c22304604f9e93153d55251e31bb250168015a4ac6c3d93cffcdd9c64ece7e9"; 692 + sha256 = "98f7d8e0b662b7a020e8aec6a17a171740f4e162cdd2318eacdb2b18d1e84435"; 693 693 } 694 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/hi-IN/firefox-90.0.1.tar.bz2"; 694 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/hi-IN/firefox-90.0.2.tar.bz2"; 695 695 locale = "hi-IN"; 696 696 arch = "linux-i686"; 697 - sha256 = "155f425d7d9b867acc7035d1220f60148fb94c25dd51ee7049e9c2e9b096a0fd"; 697 + sha256 = "679340528df16854b4366b968f05103dd183a0983393065630d71a963ed59f60"; 698 698 } 699 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/hr/firefox-90.0.1.tar.bz2"; 699 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/hr/firefox-90.0.2.tar.bz2"; 700 700 locale = "hr"; 701 701 arch = "linux-i686"; 702 - sha256 = "96faca700f49d3f8d9337f0f4f820f8a5a6335b06348b835bd39a26619e4efdc"; 702 + sha256 = "e95335aa07145e2388a2cd6973a12ce826ea9a0c44e7669a8f0c916b9c897f3a"; 703 703 } 704 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/hsb/firefox-90.0.1.tar.bz2"; 704 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/hsb/firefox-90.0.2.tar.bz2"; 705 705 locale = "hsb"; 706 706 arch = "linux-i686"; 707 - sha256 = "42ce59b460cf94705f88b80c91705bba81142798803bb1d7a3a0bc34dd96a7e3"; 707 + sha256 = "e6450586d82c4c01a96ba5c7947e92ea7285540dbf57c15398449f33d46c20c2"; 708 708 } 709 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/hu/firefox-90.0.1.tar.bz2"; 709 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/hu/firefox-90.0.2.tar.bz2"; 710 710 locale = "hu"; 711 711 arch = "linux-i686"; 712 - sha256 = "804db507b43af04716bbb4d53525aa9b2958b1d3ff08b93812f1d78531eb01da"; 712 + sha256 = "09f33e1cb7595f1f8e7724e6e311f4c2354093839e5bfe9f598c16689d7c53ff"; 713 713 } 714 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/hy-AM/firefox-90.0.1.tar.bz2"; 714 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/hy-AM/firefox-90.0.2.tar.bz2"; 715 715 locale = "hy-AM"; 716 716 arch = "linux-i686"; 717 - sha256 = "488e6bdd3d36490a33d5794f5ede500bad29cd2014cdd50ab5edf74c829fd424"; 717 + sha256 = "fa43f2a212e3b2fb1737057dbaf55eb78cdecf1021b086c5afae67d03abd4dd5"; 718 718 } 719 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/ia/firefox-90.0.1.tar.bz2"; 719 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/ia/firefox-90.0.2.tar.bz2"; 720 720 locale = "ia"; 721 721 arch = "linux-i686"; 722 - sha256 = "fd3f22e1247b394b654c12aed384c515a390e91651bcc66f3823205c67951287"; 722 + sha256 = "ad5384348f5795bf1c14445cd58b957cf320b5202f987a55efe4d51e0437e532"; 723 723 } 724 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/id/firefox-90.0.1.tar.bz2"; 724 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/id/firefox-90.0.2.tar.bz2"; 725 725 locale = "id"; 726 726 arch = "linux-i686"; 727 - sha256 = "2a197f4f2aa069b888ad9bfaa54da1b3bc461309a2f0475c298b7e501f06e6fc"; 727 + sha256 = "9519624ef818e9baafa3918bc3972f0d176eaa8df640f6258b4425d0366316e6"; 728 728 } 729 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/is/firefox-90.0.1.tar.bz2"; 729 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/is/firefox-90.0.2.tar.bz2"; 730 730 locale = "is"; 731 731 arch = "linux-i686"; 732 - sha256 = "b215c19156d129ef30c2d5b30d723d3923e57658888736bd31d3c7fd4a30f835"; 732 + sha256 = "0e425528e760ce2c5fcfe48559a4ac7d14a0cc79c1e95610e491ea14f941acb9"; 733 733 } 734 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/it/firefox-90.0.1.tar.bz2"; 734 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/it/firefox-90.0.2.tar.bz2"; 735 735 locale = "it"; 736 736 arch = "linux-i686"; 737 - sha256 = "f94a4ddd3278993c80e776849cd52721f40a2808a41f37c74f34ef4b7deea972"; 737 + sha256 = "98a24df84e74a257d2885f78933b23804408c6bfb625b85f5015c0f69b52d338"; 738 738 } 739 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/ja/firefox-90.0.1.tar.bz2"; 739 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/ja/firefox-90.0.2.tar.bz2"; 740 740 locale = "ja"; 741 741 arch = "linux-i686"; 742 - sha256 = "4b22759406f177c98ee2496ff17de565f87a0f566e3759ce030fd757c1555e32"; 742 + sha256 = "82830708da718cb70eaabf990b503b9f62a1232ed3ff5537fa91b140e4bd0678"; 743 743 } 744 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/ka/firefox-90.0.1.tar.bz2"; 744 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/ka/firefox-90.0.2.tar.bz2"; 745 745 locale = "ka"; 746 746 arch = "linux-i686"; 747 - sha256 = "7e602c099b680f1da42030067988f818e954ec4b02ddc6ec5473e02402a06428"; 747 + sha256 = "bcf43fa1a6cf21139b7672144e6f355367d680395f32961b5915fcb6d4cd9dd5"; 748 748 } 749 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/kab/firefox-90.0.1.tar.bz2"; 749 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/kab/firefox-90.0.2.tar.bz2"; 750 750 locale = "kab"; 751 751 arch = "linux-i686"; 752 - sha256 = "92d0441b33b179d515c88711bb13684e37c748a938d818723256092930428dea"; 752 + sha256 = "c965383ee64db3f84ae1736db80f772e38b04080fdac9117953d8a59697a2998"; 753 753 } 754 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/kk/firefox-90.0.1.tar.bz2"; 754 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/kk/firefox-90.0.2.tar.bz2"; 755 755 locale = "kk"; 756 756 arch = "linux-i686"; 757 - sha256 = "50a44e34e2a12ba6357f62bc82d9de9c5250c6e3b5635c81724d0a96f5111436"; 757 + sha256 = "26e0becb0c7feaba174ff1de85585364addfdb2dc7e6f5188d81c2a83eb68383"; 758 758 } 759 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/km/firefox-90.0.1.tar.bz2"; 759 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/km/firefox-90.0.2.tar.bz2"; 760 760 locale = "km"; 761 761 arch = "linux-i686"; 762 - sha256 = "de8bddaf5a937bfc5bc21897cf95b3d40068133df4c9edfe7eb9eaf76d23e17f"; 762 + sha256 = "a25e0ddb1ecee69236bef3389641921c906f03272c8bea3a6ee17e61327fd377"; 763 763 } 764 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/kn/firefox-90.0.1.tar.bz2"; 764 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/kn/firefox-90.0.2.tar.bz2"; 765 765 locale = "kn"; 766 766 arch = "linux-i686"; 767 - sha256 = "86e88fbc62e131f6b6a599575f5c507385251e7d03a114b61e8c1b78c4a8c22f"; 767 + sha256 = "4101658f06850402957e08578cec7fc730b9eee24e0e59d0b083e3814f13c713"; 768 768 } 769 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/ko/firefox-90.0.1.tar.bz2"; 769 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/ko/firefox-90.0.2.tar.bz2"; 770 770 locale = "ko"; 771 771 arch = "linux-i686"; 772 - sha256 = "10e0169e337cbef4a33e227ea57ff517ec570997fc471509ff95f098cfb52b12"; 772 + sha256 = "c72b19e5928c7f3cb2bf3c681620865c292e02cf88859b13785527598b1b5610"; 773 773 } 774 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/lij/firefox-90.0.1.tar.bz2"; 774 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/lij/firefox-90.0.2.tar.bz2"; 775 775 locale = "lij"; 776 776 arch = "linux-i686"; 777 - sha256 = "3e054180575b29c5afb286f6d7e8453bc8d4bfaf1ff5d8ac5fc53757b9dc48f1"; 777 + sha256 = "9741436304db85da8b2ff9aaf7254c6304cd8703fc612a906cabbb1bbfa6b1be"; 778 778 } 779 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/lt/firefox-90.0.1.tar.bz2"; 779 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/lt/firefox-90.0.2.tar.bz2"; 780 780 locale = "lt"; 781 781 arch = "linux-i686"; 782 - sha256 = "79685f8b0d646dc6fb446a85808e22107760343a63be429551866a22581106da"; 782 + sha256 = "cc6ad73885caa3780a22a70ef3a2a321d948fee71a0b9f9e6512c724be5e80d4"; 783 783 } 784 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/lv/firefox-90.0.1.tar.bz2"; 784 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/lv/firefox-90.0.2.tar.bz2"; 785 785 locale = "lv"; 786 786 arch = "linux-i686"; 787 - sha256 = "4df1044be63e35775c89005cddba209760b169be29a3e49d3d29bc370b11dacc"; 787 + sha256 = "6043b8a53d92d3ee9d2eced77e664e15585f38acd2c9bc69ab6c6ddee4e11fa9"; 788 788 } 789 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/mk/firefox-90.0.1.tar.bz2"; 789 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/mk/firefox-90.0.2.tar.bz2"; 790 790 locale = "mk"; 791 791 arch = "linux-i686"; 792 - sha256 = "8040fd3637b5e25215e1e50cb74b6f25736f78d610cc862eef08b5a7e4905f2c"; 792 + sha256 = "f722688ebc78a9c0647f8562a7d333d15a6f0a23be2e41881cd3395ce9af492b"; 793 793 } 794 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/mr/firefox-90.0.1.tar.bz2"; 794 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/mr/firefox-90.0.2.tar.bz2"; 795 795 locale = "mr"; 796 796 arch = "linux-i686"; 797 - sha256 = "49b9eddd2dff87a631ad143e66019d52574ea16b136956e4da473fcee4b810ef"; 797 + sha256 = "e375938caf127ff1ef5f71bafb7df48d8d0f7ae7dbb5c664c99530e2401b08ed"; 798 798 } 799 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/ms/firefox-90.0.1.tar.bz2"; 799 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/ms/firefox-90.0.2.tar.bz2"; 800 800 locale = "ms"; 801 801 arch = "linux-i686"; 802 - sha256 = "629d480a6cc207b558cc2aff169225ec636c3d5656b0d04d34b60f8235151bc2"; 802 + sha256 = "cf927622a682ba18b69134da056c09217950085f14d3abb828b78cc2318e71d0"; 803 803 } 804 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/my/firefox-90.0.1.tar.bz2"; 804 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/my/firefox-90.0.2.tar.bz2"; 805 805 locale = "my"; 806 806 arch = "linux-i686"; 807 - sha256 = "25b330fa564734cd9ead80a58a770a6453d64483cd448dc8ac93e70a2a06a04b"; 807 + sha256 = "dab06f8c4daf9f2287ccfcbf567e830cf2c1154e4a0db403d4c9bb1a5d509c88"; 808 808 } 809 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/nb-NO/firefox-90.0.1.tar.bz2"; 809 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/nb-NO/firefox-90.0.2.tar.bz2"; 810 810 locale = "nb-NO"; 811 811 arch = "linux-i686"; 812 - sha256 = "4d2a0b7101197a603c136b7476e6887d6d9731bbb62e5176ad9876039cc7e166"; 812 + sha256 = "19eaf7c9fedcb79d134304f16c804dd24a1adcddeb48e4f5cd26459556b905e3"; 813 813 } 814 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/ne-NP/firefox-90.0.1.tar.bz2"; 814 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/ne-NP/firefox-90.0.2.tar.bz2"; 815 815 locale = "ne-NP"; 816 816 arch = "linux-i686"; 817 - sha256 = "74c9685da27d362a2729303ddf451f684be097d3ca74bf3596585a869921a881"; 817 + sha256 = "049f573cc57b4ac37417a8674b6a535643cd563f0806a69f5ce769c67d8bcb79"; 818 818 } 819 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/nl/firefox-90.0.1.tar.bz2"; 819 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/nl/firefox-90.0.2.tar.bz2"; 820 820 locale = "nl"; 821 821 arch = "linux-i686"; 822 - sha256 = "a10dc5b62f058d71b3dbd8cb12083fc583528b1642d4f2bccce0f1a422147c7f"; 822 + sha256 = "95d99572d07502ca39dfbce3f4f5e046247e1bcbfc8ca14cd1404744a9665731"; 823 823 } 824 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/nn-NO/firefox-90.0.1.tar.bz2"; 824 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/nn-NO/firefox-90.0.2.tar.bz2"; 825 825 locale = "nn-NO"; 826 826 arch = "linux-i686"; 827 - sha256 = "479c022dbadf9b10b2c37577199c3f4df714501502bc894c63efde9358b59745"; 827 + sha256 = "cc7466ce958d97c7ab13235745199631f4cd2c2713ce2d4017c337d5415b3d1b"; 828 828 } 829 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/oc/firefox-90.0.1.tar.bz2"; 829 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/oc/firefox-90.0.2.tar.bz2"; 830 830 locale = "oc"; 831 831 arch = "linux-i686"; 832 - sha256 = "3b702fcd7972cc48151498783e8d0129766fa7adef311369acdba7902bd08f19"; 832 + sha256 = "c24083b7a4d85d97c8b25b34229115558b94db56d3bc95fb510672be6a693f3d"; 833 833 } 834 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/pa-IN/firefox-90.0.1.tar.bz2"; 834 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/pa-IN/firefox-90.0.2.tar.bz2"; 835 835 locale = "pa-IN"; 836 836 arch = "linux-i686"; 837 - sha256 = "69727d81e5dd911bfa426f3f66385caed061e3b22825eeea270925e6d7997a03"; 837 + sha256 = "ae4eaebf65657401c2177dcb3085cf1b463d75d47e0863bf8017beaa5bc4bdf8"; 838 838 } 839 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/pl/firefox-90.0.1.tar.bz2"; 839 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/pl/firefox-90.0.2.tar.bz2"; 840 840 locale = "pl"; 841 841 arch = "linux-i686"; 842 - sha256 = "29d59a753381aed8fd4838cf6da0a43389b1dd408988ffd4e97ec3262c1ec75a"; 842 + sha256 = "1f7f4f477fc42a87038555b3375ec84995fee73a0465f7cdf973cc5498f802ca"; 843 843 } 844 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/pt-BR/firefox-90.0.1.tar.bz2"; 844 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/pt-BR/firefox-90.0.2.tar.bz2"; 845 845 locale = "pt-BR"; 846 846 arch = "linux-i686"; 847 - sha256 = "6ca5bf042fc2a94dd229303cec352ec797e8494ca58b12a337997b8289dff78a"; 847 + sha256 = "ca8ff807c9292c5105114ee2093a0e38b33c8ca57db3d21766c5d3d2456efd26"; 848 848 } 849 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/pt-PT/firefox-90.0.1.tar.bz2"; 849 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/pt-PT/firefox-90.0.2.tar.bz2"; 850 850 locale = "pt-PT"; 851 851 arch = "linux-i686"; 852 - sha256 = "50e682cf9bff2b4202ee4c9e64d5efcca66acbcb74d4074ae5d571875cd0f509"; 852 + sha256 = "f3b17fa92fc078fd4c394bfd5763a1fd5b513696fb20547104286527f833be66"; 853 853 } 854 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/rm/firefox-90.0.1.tar.bz2"; 854 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/rm/firefox-90.0.2.tar.bz2"; 855 855 locale = "rm"; 856 856 arch = "linux-i686"; 857 - sha256 = "983c8fb011f348b6de1665b1347cdbda23fe130ea33c7c58a49cd417d0419cff"; 857 + sha256 = "820bc076e2286052b36349170969a42bc76fa196f75f140985ddd5ddc5b4943a"; 858 858 } 859 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/ro/firefox-90.0.1.tar.bz2"; 859 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/ro/firefox-90.0.2.tar.bz2"; 860 860 locale = "ro"; 861 861 arch = "linux-i686"; 862 - sha256 = "1f2ff5fe5d65f5f143e89e258a247291d10c25ee2270607250817187353bafa7"; 862 + sha256 = "1991ad5ecda302b3c9253239452da490c5fd0ec765c464d95a2a682167402bc1"; 863 863 } 864 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/ru/firefox-90.0.1.tar.bz2"; 864 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/ru/firefox-90.0.2.tar.bz2"; 865 865 locale = "ru"; 866 866 arch = "linux-i686"; 867 - sha256 = "3a2f872bcdd7736c1e528d306cb9409826c4958d1e8aea627ef0e2c26b7d8889"; 867 + sha256 = "a7f87bdbb023a8daa498befb586fe08015062defc2998433ccc77d6c03ff9807"; 868 868 } 869 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/si/firefox-90.0.1.tar.bz2"; 869 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/si/firefox-90.0.2.tar.bz2"; 870 870 locale = "si"; 871 871 arch = "linux-i686"; 872 - sha256 = "cfb67ee121130d9ea92af43e33751c31f778f9ff6f9beca2dc609ef5340f09b9"; 872 + sha256 = "7f659c6d46f7499c317bbbfe0f35d0db104c9baf46d9daa1145e7a6ab7dfd86a"; 873 873 } 874 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/sk/firefox-90.0.1.tar.bz2"; 874 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/sk/firefox-90.0.2.tar.bz2"; 875 875 locale = "sk"; 876 876 arch = "linux-i686"; 877 - sha256 = "c045f5c48e3f3f9b20229e744b85920e47e3858f97262ab4d3a8fd61db80da40"; 877 + sha256 = "40a2ffd2a5270715c40375ccef2ed0287ca97b277c7968636222d288cf282fce"; 878 878 } 879 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/sl/firefox-90.0.1.tar.bz2"; 879 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/sl/firefox-90.0.2.tar.bz2"; 880 880 locale = "sl"; 881 881 arch = "linux-i686"; 882 - sha256 = "ae3bf5e327c4f4fb7a36b8367539de466acf8f60f40e9deee3bd4928959f0111"; 882 + sha256 = "7614af91d89ec3273836d663becd0e215729fc203f8d384c5f42508fbd6dbf81"; 883 883 } 884 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/son/firefox-90.0.1.tar.bz2"; 884 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/son/firefox-90.0.2.tar.bz2"; 885 885 locale = "son"; 886 886 arch = "linux-i686"; 887 - sha256 = "a7d7f7d1ffdc9126f04f8f96001bce26d21de0e0c65dd1fd00f6f85f75976ba8"; 887 + sha256 = "3225134a36d53ee5fb0f3ca9651ea214f42e74d02ad0efb72cc7090280de1e70"; 888 888 } 889 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/sq/firefox-90.0.1.tar.bz2"; 889 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/sq/firefox-90.0.2.tar.bz2"; 890 890 locale = "sq"; 891 891 arch = "linux-i686"; 892 - sha256 = "2982b315ab29ab375d77b1093c53a4a207f36a2d9a40b34aed3376ce96ce5dbe"; 892 + sha256 = "f6c06b96cce4971b02ebca69af7dbf8e8b596dc45b57c0ceda4b7fec071d747d"; 893 893 } 894 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/sr/firefox-90.0.1.tar.bz2"; 894 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/sr/firefox-90.0.2.tar.bz2"; 895 895 locale = "sr"; 896 896 arch = "linux-i686"; 897 - sha256 = "0a2a702216adf7c98ddb19cebfea886b5d0582523ca64f2d7c8656ec663aaf6e"; 897 + sha256 = "7ee70f3e386587b4a09bffb2005eda9c2335adb559d05b3e9c72f64c49ea7c0f"; 898 898 } 899 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/sv-SE/firefox-90.0.1.tar.bz2"; 899 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/sv-SE/firefox-90.0.2.tar.bz2"; 900 900 locale = "sv-SE"; 901 901 arch = "linux-i686"; 902 - sha256 = "dded767dd98cc3725044c988354842086768bf9a35eb316111df96368a95900e"; 902 + sha256 = "b735af09cf9a0adee055c4f383852f68f0bf15ac5034287ff56fd4e63d93f851"; 903 903 } 904 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/szl/firefox-90.0.1.tar.bz2"; 904 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/szl/firefox-90.0.2.tar.bz2"; 905 905 locale = "szl"; 906 906 arch = "linux-i686"; 907 - sha256 = "4ab8b5112cdfdc051a65b5cd562015bf85e11d5ccc0773111439cd469e175c33"; 907 + sha256 = "9cc37dacd4f13ef6d9af99d24eecf42fc4254b52e42ee4b18c52bf830c9a6b45"; 908 908 } 909 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/ta/firefox-90.0.1.tar.bz2"; 909 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/ta/firefox-90.0.2.tar.bz2"; 910 910 locale = "ta"; 911 911 arch = "linux-i686"; 912 - sha256 = "0240cb3f5357a213f622f1c708e2116db4a4271f4b36135d6614bacdee88f00c"; 912 + sha256 = "badec8d86c4b824bded63fa9a7d49acab7c79a25b7cdc4715a805d6e825efd04"; 913 913 } 914 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/te/firefox-90.0.1.tar.bz2"; 914 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/te/firefox-90.0.2.tar.bz2"; 915 915 locale = "te"; 916 916 arch = "linux-i686"; 917 - sha256 = "83b5ed844b16f6b9108432a692bc0895d733de03701ab800bb330d06796176bd"; 917 + sha256 = "68ba99a66bbaddf277fec5f97ca311368e915ff4090121f06daa04847bdc108f"; 918 918 } 919 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/th/firefox-90.0.1.tar.bz2"; 919 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/th/firefox-90.0.2.tar.bz2"; 920 920 locale = "th"; 921 921 arch = "linux-i686"; 922 - sha256 = "faedac7df604ed9cd321a655d27ebf313c08b085c4eeecc310a94c3afd979b6f"; 922 + sha256 = "d43d2be9347cbe576a9e141110efe1b68d211593bbfaac130f3c2b876718fb9b"; 923 923 } 924 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/tl/firefox-90.0.1.tar.bz2"; 924 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/tl/firefox-90.0.2.tar.bz2"; 925 925 locale = "tl"; 926 926 arch = "linux-i686"; 927 - sha256 = "5abdce18c7b0e53f5efd00aa0381c6e90f669c51dcb4c021128a0e7a0a86223e"; 927 + sha256 = "8251186670a3e82c6f10d93a3c6ff5563537011aa6c599fd21cefd434342a4b8"; 928 928 } 929 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/tr/firefox-90.0.1.tar.bz2"; 929 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/tr/firefox-90.0.2.tar.bz2"; 930 930 locale = "tr"; 931 931 arch = "linux-i686"; 932 - sha256 = "92fd9bb4aef9b723b00cb84ffd253b81d5c86b2bfcefad93e948e443d871bd95"; 932 + sha256 = "3021d700b183c6748d61c0dd104e732e3e373465ee0ac4607f3e31584fb69389"; 933 933 } 934 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/trs/firefox-90.0.1.tar.bz2"; 934 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/trs/firefox-90.0.2.tar.bz2"; 935 935 locale = "trs"; 936 936 arch = "linux-i686"; 937 - sha256 = "291c64e95d8accc64fd83738a9b7060122e713786cbb360acbd26b5ed0dc3793"; 937 + sha256 = "bff8d09f8170abf515b28c8fe8492f4b5125cd54a50518d145b86e70b15fbadd"; 938 938 } 939 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/uk/firefox-90.0.1.tar.bz2"; 939 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/uk/firefox-90.0.2.tar.bz2"; 940 940 locale = "uk"; 941 941 arch = "linux-i686"; 942 - sha256 = "163de4dd52684912f794c1f9c35b003f9cd38acf1be3bc68f42b2da9c1e13fce"; 942 + sha256 = "36310b3c0272c1592560bbcf2801e7358d0b3583f832d522e38e09c926594549"; 943 943 } 944 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/ur/firefox-90.0.1.tar.bz2"; 944 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/ur/firefox-90.0.2.tar.bz2"; 945 945 locale = "ur"; 946 946 arch = "linux-i686"; 947 - sha256 = "72ebffebcaf8848c5a9cfbc6c9e33cd1a7bfd62b7689f938065730249506a6eb"; 947 + sha256 = "e48d260743ec015816036088f913cdaa9740751854d56c0ad12013c8fe24d5f7"; 948 948 } 949 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/uz/firefox-90.0.1.tar.bz2"; 949 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/uz/firefox-90.0.2.tar.bz2"; 950 950 locale = "uz"; 951 951 arch = "linux-i686"; 952 - sha256 = "f9c56e6adfa9a0e7289e2a80f88869ebb1556843c940574cfcba4295aac464c0"; 952 + sha256 = "f4079a9c0a439357e97c4838ef6c4caf8969a21569b2d84b1f0f3f2405981a4b"; 953 953 } 954 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/vi/firefox-90.0.1.tar.bz2"; 954 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/vi/firefox-90.0.2.tar.bz2"; 955 955 locale = "vi"; 956 956 arch = "linux-i686"; 957 - sha256 = "f15136e2e432ae999df5efda82d44c2c61cd680995436cda094bd2fd705e541b"; 957 + sha256 = "6e2f66c5fe236080ad9c8e72461667d7ba98260d038deaf6d4abbd73afe72719"; 958 958 } 959 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/xh/firefox-90.0.1.tar.bz2"; 959 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/xh/firefox-90.0.2.tar.bz2"; 960 960 locale = "xh"; 961 961 arch = "linux-i686"; 962 - sha256 = "360623cac6e11c9179f9c08f2f7f3eb844c3671b8f26a2680e097e1c84896b06"; 962 + sha256 = "7c75f694933e4998496cf4c1895afdc2940aedf9fd2151c2f2946551cbbcf5da"; 963 963 } 964 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/zh-CN/firefox-90.0.1.tar.bz2"; 964 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/zh-CN/firefox-90.0.2.tar.bz2"; 965 965 locale = "zh-CN"; 966 966 arch = "linux-i686"; 967 - sha256 = "f69c7f0fad2bbefbe477ed7ee5414dab2c9ab14e1009970eca07092357cfc7ba"; 967 + sha256 = "74787fb0d2674a2e34f6cbd556bd13f9ea7d83c640aa7c8cc6fe79b58870dbd0"; 968 968 } 969 - { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.1/linux-i686/zh-TW/firefox-90.0.1.tar.bz2"; 969 + { url = "http://archive.mozilla.org/pub/firefox/releases/90.0.2/linux-i686/zh-TW/firefox-90.0.2.tar.bz2"; 970 970 locale = "zh-TW"; 971 971 arch = "linux-i686"; 972 - sha256 = "612abc1a9b8b116753ee1417d774fc2ea2f2f931248c57ea93c32ee1c534f9c0"; 972 + sha256 = "df3493d9cf02a0a3c88bb06b6c755658b7638cc6bfe07df193fa19db870fa991"; 973 973 } 974 974 ]; 975 975 }
+2 -2
pkgs/applications/networking/browsers/firefox/packages.nix
··· 7 7 rec { 8 8 firefox = common rec { 9 9 pname = "firefox"; 10 - ffversion = "90.0.1"; 10 + ffversion = "90.0.2"; 11 11 src = fetchurl { 12 12 url = "mirror://mozilla/firefox/releases/${ffversion}/source/firefox-${ffversion}.source.tar.xz"; 13 - sha512 = "9f87c3f3dad33e42a7a9d2161d7f23ff2e7184b2274f9081511c7982957ae9954784bd844a2348ff4744231415aac195d1f12971392db90be0375b4738acb590"; 13 + sha512 = "4fda0b1e666fb0b1d846708fad2b48a5b53d48e7fc2a5da1f234b5b839c55265b41f6509e6b506d5e8a7455f816dfa5ab538589bc9e83b7e3846f0f72210513e"; 14 14 }; 15 15 16 16 meta = {
+4 -4
pkgs/applications/networking/cluster/argocd/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "argocd"; 5 - version = "2.0.4"; 6 - commit = "0842d448107eb1397b251e63ec4d4bc1b4efdd6e"; 5 + version = "2.0.5"; 6 + commit = "4c94d886f56bcb2f9d5b3251fdc049c2d1354b88"; 7 7 tag = "v${version}"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "argoproj"; 11 11 repo = "argo-cd"; 12 12 rev = tag; 13 - sha256 = "sha256-SKSAJtp20f6A+CvrsBEmbcNJAKI5b4Wm4K0cr/lGo64="; 13 + sha256 = "sha256-8YymSR15e+6gGGqr5CH4ERHN8RO3wd9NJkM9K7InlFU="; 14 14 }; 15 15 16 - vendorSha256 = "sha256-RbEqivzTpXVQp4zl0zZWAh6qCr2KZSJ6Bj2pZaClQaQ="; 16 + vendorSha256 = "sha256-9dVkGl0gjjMehG2nt1eNpNT5fD9GbJ1mNMzYS8FTm08="; 17 17 18 18 nativeBuildInputs = [ packr makeWrapper installShellFiles ]; 19 19
+24 -28
pkgs/applications/networking/cluster/k3s/default.nix
··· 44 44 # Those pieces of software we entirely ignore upstream's handling of, and just 45 45 # make sure they're in the path if desired. 46 46 let 47 - k3sVersion = "1.21.2+k3s1"; # k3s git tag 48 - k3sCommit = "5a67e8dc473f8945e8e181f6f0b0dbbc387f6fca"; # k3s git commit at the above version 47 + k3sVersion = "1.21.3+k3s1"; # k3s git tag 48 + k3sCommit = "1d1f220fbee9cdeb5416b76b707dde8c231121f2"; # k3s git commit at the above version 49 49 50 50 traefikChartVersion = "9.18.2"; # taken from ./scripts/download at TRAEFIK_VERSION 51 - k3sRootVersion = "0.8.1"; # taken from ./scripts/download at ROOT_VERSION 51 + k3sRootVersion = "0.9.1"; # taken from ./scripts/download at ROOT_VERSION 52 52 k3sCNIVersion = "0.8.6-k3s1"; # taken from ./scripts/version.sh at VERSION_CNIPLUGINS 53 + 54 + baseMeta = { 55 + description = "A lightweight Kubernetes distribution"; 56 + license = licenses.asl20; 57 + homepage = "https://k3s.io"; 58 + maintainers = with maintainers; [ euank superherointj ]; 59 + platforms = platforms.linux; 60 + }; 61 + 53 62 # bundled into the k3s binary 54 63 traefikChart = fetchurl { 55 64 url = "https://helm.traefik.io/traefik/traefik-${traefikChartVersion}.tgz"; ··· 67 76 k3sRoot = fetchzip { 68 77 # Note: marked as apache 2.0 license 69 78 url = "https://github.com/k3s-io/k3s-root/releases/download/v${k3sRootVersion}/k3s-root-amd64.tar"; 70 - sha256 = "sha256-r3Nkzl9ccry7cgD3YWlHvEWOsWnnFGIkyRH9sx12gks="; 79 + sha256 = "sha256-qI84KYJKY/T6pqWZW9lOTq5NzZiu//v1zrMzUCiRTGQ="; 71 80 stripRoot = false; 72 81 }; 73 82 k3sPlugins = buildGoPackage rec { ··· 84 93 sha256 = "sha256-uAy17eRRAXPCcnh481KxFMvFQecnnBs24jn5YnVNfY4="; 85 94 }; 86 95 87 - meta = { 96 + meta = baseMeta // { 88 97 description = "CNI plugins, as patched by rancher for k3s"; 89 - license = licenses.asl20; 90 - homepage = "https://k3s.io"; 91 - maintainers = [ maintainers.euank ]; 92 - platforms = platforms.linux; 93 98 }; 94 99 }; 95 100 # Grab this separately from a build because it's used by both stages of the ··· 97 102 k3sRepo = fetchgit { 98 103 url = "https://github.com/k3s-io/k3s"; 99 104 rev = "v${k3sVersion}"; 100 - sha256 = "sha256-ZRkdHQ4RJ6XqE+DKE6wwpxetuKDG3k/4HaHyFxHev1U="; 105 + sha256 = "sha256-K4HVXFp5cpByEO4dUwmpzOuhsGh1k7X6k5aShCorTjg="; 101 106 }; 102 107 # Stage 1 of the k3s build: 103 108 # Let's talk about how k3s is structured. ··· 161 166 popd 162 167 ''; 163 168 164 - meta = { 169 + meta = baseMeta // { 165 170 description = "The various binaries that get packaged into the final k3s binary"; 166 - license = licenses.asl20; 167 - homepage = "https://k3s.io"; 168 - maintainers = [ maintainers.euank ]; 169 - platforms = platforms.linux; 170 171 }; 171 172 }; 172 173 k3sBin = buildGoPackage rec { ··· 228 229 popd 229 230 ''; 230 231 231 - meta = { 232 + meta = baseMeta // { 232 233 description = "The k3s go binary which is used by the final wrapped output below"; 233 - license = licenses.asl20; 234 - homepage = "https://k3s.io"; 235 - maintainers = [ maintainers.euank ]; 236 - platforms = platforms.linux; 237 234 }; 238 235 }; 239 236 in ··· 241 238 pname = "k3s"; 242 239 version = k3sVersion; 243 240 244 - # Important utilities used by the kubelet, see 241 + # Important utilities used by the kubelet, see 245 242 # https://github.com/kubernetes/kubernetes/issues/26093#issuecomment-237202494 246 243 # Note the list in that issue is stale and some aren't relevant for k3s. 247 244 k3sRuntimeDeps = [ ··· 279 276 runHook postInstall 280 277 ''; 281 278 282 - meta = { 283 - description = "A lightweight Kubernetes distribution"; 284 - license = licenses.asl20; 285 - homepage = "https://k3s.io"; 286 - maintainers = [ maintainers.euank ]; 287 - platforms = platforms.linux; 288 - }; 279 + doInstallCheck = true; 280 + installCheckPhase = '' 281 + $out/bin/k3s --version | grep v${k3sVersion} > /dev/null 282 + ''; 283 + 284 + meta = baseMeta; 289 285 }
+8 -8
pkgs/applications/office/libreoffice/src-fresh/download.nix
··· 161 161 md5name = "e61677e8799ce6e55b25afc11aa5339113f6a49cff031f336e32fa58635b1a4a-libetonyek-0.1.9.tar.xz"; 162 162 } 163 163 { 164 - name = "expat-2.2.8.tar.bz2"; 165 - url = "https://dev-www.libreoffice.org/src/expat-2.2.8.tar.bz2"; 166 - sha256 = "9a130948b05a82da34e4171d5f5ae5d321d9630277af02c8fa51e431f6475102"; 164 + name = "expat-2.4.1.tar.bz2"; 165 + url = "https://dev-www.libreoffice.org/src/expat-2.4.1.tar.bz2"; 166 + sha256 = "2f9b6a580b94577b150a7d5617ad4643a4301a6616ff459307df3e225bcfbf40"; 167 167 md5 = ""; 168 - md5name = "9a130948b05a82da34e4171d5f5ae5d321d9630277af02c8fa51e431f6475102-expat-2.2.8.tar.bz2"; 168 + md5name = "2f9b6a580b94577b150a7d5617ad4643a4301a6616ff459307df3e225bcfbf40-expat-2.4.1.tar.bz2"; 169 169 } 170 170 { 171 171 name = "Firebird-3.0.0.32483-0.tar.bz2"; ··· 567 567 md5name = "2d84360b03042178def1d9ff538acacaed2b3a27411db7b2874f1612ed71abc8-xmlsec1-1.2.30.tar.gz"; 568 568 } 569 569 { 570 - name = "libxml2-2.9.10.tar.gz"; 571 - url = "https://dev-www.libreoffice.org/src/libxml2-2.9.10.tar.gz"; 572 - sha256 = "aafee193ffb8fe0c82d4afef6ef91972cbaf5feea100edc2f262750611b4be1f"; 570 + name = "libxml2-2.9.12.tar.gz"; 571 + url = "https://dev-www.libreoffice.org/src/libxml2-2.9.12.tar.gz"; 572 + sha256 = "c8d6681e38c56f172892c85ddc0852e1fd4b53b4209e7f4ebf17f7e2eae71d92"; 573 573 md5 = ""; 574 - md5name = "aafee193ffb8fe0c82d4afef6ef91972cbaf5feea100edc2f262750611b4be1f-libxml2-2.9.10.tar.gz"; 574 + md5name = "c8d6681e38c56f172892c85ddc0852e1fd4b53b4209e7f4ebf17f7e2eae71d92-libxml2-2.9.12.tar.gz"; 575 575 } 576 576 { 577 577 name = "libxslt-1.1.34.tar.gz";
+4 -4
pkgs/applications/office/libreoffice/src-fresh/primary.nix
··· 8 8 9 9 major = "7"; 10 10 minor = "1"; 11 - patch = "4"; 11 + patch = "5"; 12 12 tweak = "2"; 13 13 14 14 subdir = "${major}.${minor}.${patch}"; ··· 17 17 18 18 src = fetchurl { 19 19 url = "https://download.documentfoundation.org/libreoffice/src/${subdir}/libreoffice-${version}.tar.xz"; 20 - sha256 = "1jsskhnlyra7q6d12kkc8dxq5fgrnd8grl32bdck7j9hkwv6d13m"; 20 + sha256 = "1kl54ddpvmrcs4r1vd4dfzg5a8im0kijhaqdg37zvgb5fqv31bxf"; 21 21 }; 22 22 23 23 # FIXME rename 24 24 translations = fetchSrc { 25 25 name = "translations"; 26 - sha256 = "0cslzhp5ic1w7hnl6wbyxrxhczdmap1g1hh1nj9sgpw9iqdryqj7"; 26 + sha256 = "0nf5s012l7mkpd1srvijl9q6x8f7svm6i84bj75dwyvipkg40rxq"; 27 27 }; 28 28 29 29 # the "dictionaries" archive is not used for LO build because we already build hunspellDicts packages from ··· 31 31 32 32 help = fetchSrc { 33 33 name = "help"; 34 - sha256 = "091yhm1qkxgvv130a1yzmmikchvxvp8109mcdrlpybp4gc276l8q"; 34 + sha256 = "1m1hxbhrkaynpcps77rym1d0kwl380jv1p7b6ibfl4by0ii2j16a"; 35 35 }; 36 36 }
+26
pkgs/applications/science/machine-learning/nengo-gui/default.nix
··· 1 + { lib, fetchFromGitHub, python3Packages }: 2 + 3 + python3Packages.buildPythonPackage rec { 4 + pname = "nengo-gui"; 5 + version = "0.4.8"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "nengo"; 9 + repo = "nengo-gui"; 10 + rev = "v${version}"; 11 + sha256 = "1awb0h2l6yifb77zah7a4qzxqvkk4ac5fynangalidr10sk9rzk3"; 12 + }; 13 + 14 + propagatedBuildInputs = with python3Packages; [ nengo ]; 15 + 16 + # checks req missing: 17 + # pyimgur 18 + doCheck = false; 19 + 20 + meta = with lib; { 21 + description = "Nengo interactive visualizer"; 22 + homepage = "https://nengo.ai/"; 23 + license = licenses.unfreeRedistributable; 24 + maintainers = with maintainers; [ arjix ]; 25 + }; 26 + }
+1 -4
pkgs/applications/version-management/fossil/default.nix
··· 18 18 version = "2.15.1"; 19 19 20 20 src = fetchurl { 21 - urls = 22 - [ 23 - "https://www.fossil-scm.org/index.html/uv/fossil-src-${version}.tar.gz" 24 - ]; 21 + url = "https://www.fossil-scm.org/index.html/uv/fossil-src-${version}.tar.gz"; 25 22 name = "${pname}-${version}.tar.gz"; 26 23 sha256 = "sha256-gNJ5I8ZjsqLHEPiujNVJhi4E+MBChXBidMNK48jKF9E="; 27 24 };
+16 -1
pkgs/applications/version-management/git-and-tools/git-machete/default.nix
··· 1 1 { lib, buildPythonApplication, fetchPypi 2 2 , installShellFiles, pbr 3 - , flake8, mock, pycodestyle, pylint, tox }: 3 + , flake8, mock, pycodestyle, pylint, tox 4 + , nix-update-script 5 + , testVersion, git-machete 6 + }: 4 7 5 8 buildPythonApplication rec { 6 9 pname = "git-machete"; ··· 22 25 installShellCompletion --bash --name git-machete completion/git-machete.completion.bash 23 26 installShellCompletion --zsh --name _git-machete completion/git-machete.completion.zsh 24 27 ''; 28 + 29 + passthru = { 30 + updateScript = nix-update-script { 31 + attrPath = pname; 32 + }; 33 + 34 + tests = { 35 + version = testVersion { 36 + package = git-machete; 37 + }; 38 + }; 39 + }; 25 40 26 41 meta = with lib; { 27 42 homepage = "https://github.com/VirtusLab/git-machete";
+2 -2
pkgs/data/themes/matcha/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "matcha-gtk-theme"; 5 - version = "2021-07-08"; 5 + version = "2021-07-20"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "vinceliuice"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-iTwPN31JvpFlCBWikOeSTda2wBEtg6ygy8o6ovqHPCw="; 11 + sha256 = "0shdkwpqj3fw5qr99ww4z5dyrpa2pq79s0i02p9j3v6w6aca2gic"; 12 12 }; 13 13 14 14 buildInputs = [ gdk-pixbuf librsvg ];
+3 -5
pkgs/development/libraries/agda/cubical/default.nix
··· 1 1 { lib, mkDerivation, fetchFromGitHub, ghc, glibcLocales }: 2 2 3 3 mkDerivation rec { 4 - 5 - # Version 0.2 is meant to be used with the Agda 2.6.1 compiler. 6 4 pname = "cubical"; 7 - version = "0.2"; 5 + version = "0.3pred5030a9"; 8 6 9 7 src = fetchFromGitHub { 10 8 repo = pname; 11 9 owner = "agda"; 12 - rev = "v${version}"; 13 - sha256 = "07qlp2f189jvzbn3aqvpqk2zxpkmkxhhkjsn62iq436kxqj3z6c2"; 10 + rev = "d5030a9c89070255fc575add4e9f37b97e6a0c0c"; 11 + sha256 = "18achbxap4ikydigmz3m3xjfn3i9dw4rn8yih82vrlc01j02nqpi"; 14 12 }; 15 13 16 14 LC_ALL = "en_US.UTF-8";
+2 -2
pkgs/development/libraries/armadillo/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "armadillo"; 5 - version = "10.5.3"; 5 + version = "10.6.1"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://sourceforge/arma/armadillo-${version}.tar.xz"; 9 - sha256 = "sha256-5sUdjVKm94ucZFn2mGE1CT4O5wWmdDBxEPYXXyzV7jc="; 9 + sha256 = "sha256-HQbDI31lx7xGHqEvT9/YtaabapZbSQCucJYM6SCIF58="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/development/libraries/fcft/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "fcft"; 9 - version = "2.4.3"; 9 + version = "2.4.4"; 10 10 11 11 src = fetchzip { 12 12 url = "https://codeberg.org/dnkl/fcft/archive/${version}.tar.gz"; 13 - sha256 = "0hxvd6xbvgq1rk8851gswffmvh3fv41lyvz4fhwzln7m12759yw8"; 13 + sha256 = "0ycc2xy9jhxcxwbfk9d4jdxgf2zsc664phbf859kshb822m3jf57"; 14 14 }; 15 15 16 16 depsBuildBuild = [ pkg-config ];
+2 -2
pkgs/development/libraries/intel-media-driver/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "intel-media-driver"; 9 - version = "21.2.3"; 9 + version = "21.3.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "intel"; 13 13 repo = "media-driver"; 14 14 rev = "intel-media-${version}"; 15 - sha256 = "0nldd1yfyvwnpkh0v3ni09z2zwmj84px0pcd1w50brvny36r814c"; 15 + sha256 = "1byliq1c80xfklm3d2d910j1i7s7pfi3i3c6baigag1kzgc0apd0"; 16 16 }; 17 17 18 18 cmakeFlags = [
+1
pkgs/development/libraries/libmwaw/default.nix
··· 21 21 src = fetchurl { 22 22 inherit (s) url sha256; 23 23 }; 24 + enableParallelBuilding = true; 24 25 meta = { 25 26 inherit (s) version; 26 27 description = "Import library for some old mac text documents";
+2 -2
pkgs/development/libraries/pipewire/default.nix
··· 48 48 49 49 self = stdenv.mkDerivation rec { 50 50 pname = "pipewire"; 51 - version = "0.3.31"; 51 + version = "0.3.32"; 52 52 53 53 outputs = [ 54 54 "out" ··· 66 66 owner = "pipewire"; 67 67 repo = "pipewire"; 68 68 rev = version; 69 - sha256 = "1dirz69ami7bcgy6hhh0ffi9gzwcy9idg94nvknwvwkjw4zm8m79"; 69 + sha256 = "0f5hkypiy1qjqj3frzz128668hzbi0fqmj0j21z7rp51y62dapnp"; 70 70 }; 71 71 72 72 patches = [
+2 -2
pkgs/development/python-modules/aiorecollect/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "aiorecollect"; 15 - version = "1.0.5"; 15 + version = "1.0.6"; 16 16 format = "pyproject"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "bachya"; 20 20 repo = pname; 21 21 rev = version; 22 - sha256 = "0h76l0pahnmls0radknzm8dw79qx9dv0xhxqnn6011j9fwyviyqm"; 22 + sha256 = "0vm19rcy14fdsfddjskxh0nlph10jrj3qh6xqwv73wgcmbdpr91i"; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+27 -7
pkgs/development/python-modules/gast/default.nix
··· 1 - { lib, fetchPypi, buildPythonPackage, astunparse }: 1 + { lib 2 + , fetchFromGitHub 3 + , fetchpatch 4 + , buildPythonPackage 5 + , astunparse 6 + }: 2 7 3 8 buildPythonPackage rec { 4 9 pname = "gast"; 5 - version = "0.5.0"; 6 - src = fetchPypi { 7 - inherit pname version; 8 - sha256 = "8109cbe7aa0f7bf7e4348379da05b8137ea1f059f073332c3c1cedd57db8541f"; 10 + version = "0.5.0"; 11 + 12 + # TODO: remove this patch on the next release, this fixes a bug with parsing 13 + # assignment expressions e.g., `x := 1`. 14 + patches = [ 15 + (fetchpatch { 16 + url = "https://github.com/serge-sans-paille/gast/commit/3cc9b4d05a80e4bb42882de00df314aaa1e6e591.patch"; 17 + sha256 = "0ylpn0x0a4y6139vd048blsh77yd08npjcn4b5ydf89xnji5mlm1"; 18 + }) 19 + ]; 20 + 21 + src = fetchFromGitHub { 22 + owner = "serge-sans-paille"; 23 + repo = "gast"; 24 + rev = version; 25 + sha256 = "0qsg36knv0k2ppzbr5m4w6spxxw7a77lw88y8vjx7m176bajnsbw"; 9 26 }; 10 - checkInputs = [ astunparse ] ; 27 + 28 + checkInputs = [ astunparse ]; 29 + 11 30 meta = with lib; { 12 31 description = "GAST provides a compatibility layer between the AST of various Python versions, as produced by ast.parse from the standard ast module."; 32 + homepage = "https://github.com/serge-sans-paille/gast/"; 13 33 license = licenses.bsd3; 14 - maintainers = with maintainers; [ jyp ]; 34 + maintainers = with maintainers; [ jyp cpcloud ]; 15 35 }; 16 36 }
+31
pkgs/development/python-modules/graphqlclient/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , six 5 + }: 6 + 7 + buildPythonPackage rec { 8 + pname = "graphqlclient"; 9 + version = "0.2.4"; 10 + 11 + src = fetchPypi { 12 + inherit pname version; 13 + sha256 = "0b6r3ng78qsn7c9zksx4rgdkmp5296d40kbmjn8q614cz0ymyc5k"; 14 + }; 15 + 16 + propagatedBuildInputs = [ 17 + six 18 + ]; 19 + 20 + # Project has no tests 21 + doCheck = false; 22 + 23 + pythonImportsCheck = [ "graphqlclient" ]; 24 + 25 + meta = with lib; { 26 + description = "Simple GraphQL client for Python"; 27 + homepage = "https://github.com/prisma-labs/python-graphql-client"; 28 + license = licenses.mit; 29 + maintainers = with maintainers; [ lde ]; 30 + }; 31 + }
+2 -2
pkgs/development/python-modules/holidays/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "holidays"; 15 - version = "0.11.1"; 15 + version = "0.11.2"; 16 16 disabled = pythonOlder "3.6"; 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - sha256 = "sha256-f6/YRvZ/Drfh+cGcOPSnlnvweu1d7S3XqKovk3sOoBs="; 20 + sha256 = "0nqxan6nr3jp63i3sbb9s1v5dlig22bl927a6pl1ahks8cnr7rkn"; 21 21 }; 22 22 23 23 propagatedBuildInputs = [
+24
pkgs/development/python-modules/leb128/default.nix
··· 1 + { buildPythonPackage, fetchFromGitHub, pytestCheckHook, lib }: 2 + 3 + buildPythonPackage rec { 4 + pname = "leb128"; 5 + version = "1.0.4"; 6 + 7 + # fetchPypi doesn't include files required for tests 8 + src = fetchFromGitHub { 9 + owner = "mohanson"; 10 + repo = "leb128"; 11 + rev = "v${version}"; 12 + sha256 = "040l6fxyzqal841kirf783kk1840gcy1gjd374jfr46v96qc8scm"; 13 + }; 14 + 15 + checkInputs = [ pytestCheckHook ]; 16 + pythonImportsCheck = [ "leb128" ]; 17 + 18 + meta = with lib; { 19 + description = "A utility to encode and decode Little Endian Base 128"; 20 + homepage = "https://github.com/mohanson/leb128"; 21 + license = licenses.mit; 22 + maintainers = with maintainers; [ urlordjames ]; 23 + }; 24 + }
+2 -2
pkgs/development/python-modules/nexia/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "nexia"; 12 - version = "0.9.9"; 12 + version = "0.9.10"; 13 13 disabled = pythonOlder "3.5"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "bdraco"; 17 17 repo = pname; 18 18 rev = version; 19 - sha256 = "sha256-OamQ6p8o23lVeOB/KyNQI7G8xZaAaVNYacoRfbNKJtk="; 19 + sha256 = "0k97i243ap1sap5smvfmpsjqzkx5adjvi14awv82pcp52ckzkbi9"; 20 20 }; 21 21 22 22 propagatedBuildInputs = [
+1 -6
pkgs/development/python-modules/poppler-qt5/default.nix
··· 1 - { stdenv 2 - , lib 1 + { lib 3 2 , buildPythonPackage 4 3 , isPy3k 5 4 , fetchPypi 6 - , pythonPackages 7 5 , sip 8 6 , qtbase 9 7 , qmake ··· 42 40 43 41 postPatch = '' 44 42 cat <<EOF >> pyproject.toml 45 - sip-include-dirs = ["${pyqt5}/share/sip/PyQt5"] 46 - 47 43 [tool.sip.bindings.Poppler-Qt5] 48 44 include-dirs = ["${poppler.dev}/include/poppler"] 49 - tags = ["${sip.platform_tag}"] 50 45 EOF 51 46 ''; 52 47
+2 -2
pkgs/development/python-modules/pylitterbot/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "pylitterbot"; 14 - version = "2021.5.0"; 14 + version = "2021.7.2"; 15 15 disabled = pythonOlder "3.6"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "natekspencer"; 19 19 repo = pname; 20 20 rev = version; 21 - sha256 = "sha256-EiHdyjGYddtvciiwu2kpIBfUGvIJr38/8oJLFVzoRKE="; 21 + sha256 = "0hnjqj9n2sq1jhiwdrw2aayhyz94cwjxniiak2h1nxh2q0nzigh3"; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+2
pkgs/development/python-modules/pyls-isort/default.nix
··· 16 16 # no tests 17 17 doCheck = false; 18 18 19 + pythonImportsCheck = [ "pyls_isort" ]; 20 + 19 21 propagatedBuildInputs = [ 20 22 isort python-lsp-server 21 23 ];
+23 -1
pkgs/development/python-modules/werkzeug/1.nix
··· 17 17 propagatedBuildInputs = [ itsdangerous ]; 18 18 checkInputs = [ pytestCheckHook requests hypothesis pytest-timeout ]; 19 19 20 - disabledTests = lib.optionals stdenv.isDarwin [ 20 + disabledTests = [ 21 + "test_save_to_pathlib_dst" 22 + "test_cookie_maxsize" 23 + "test_cookie_samesite_attribute" 24 + "test_cookie_samesite_invalid" 25 + "test_range_parsing" 26 + "test_content_range_parsing" 27 + "test_http_date_lt_1000" 28 + "test_best_match_works" 29 + "test_date_to_unix" 30 + "test_easteregg" 31 + 32 + # Seems to be a problematic test-case: 33 + # 34 + # > warnings.warn(pytest.PytestUnraisableExceptionWarning(msg)) 35 + # E pytest.PytestUnraisableExceptionWarning: Exception ignored in: <_io.FileIO [closed]> 36 + # E 37 + # E Traceback (most recent call last): 38 + # 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 39 + # E return Headers(result) 40 + # E ResourceWarning: unclosed file <_io.FileIO name=11 mode='rb+' closefd=True> 41 + "TestMultiPart" 42 + ] ++ lib.optionals stdenv.isDarwin [ 21 43 "test_get_machine_id" 22 44 ]; 23 45
+2 -2
pkgs/development/tools/analysis/tfsec/default.nix
··· 5 5 6 6 buildGoPackage rec { 7 7 pname = "tfsec"; 8 - version = "0.50.7"; 8 + version = "0.51.2"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "aquasecurity"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "0rklv9wj8gf95ar345k3ghpg9hxjpbsi693239wdfarzbsjrlcla"; 14 + sha256 = "18qblimn78w17gydy7h9sjl9ri1wkvzi5phsqz1dkk43i3ryjg3s"; 15 15 }; 16 16 17 17 goPackagePath = "github.com/aquasecurity/tfsec";
+2 -2
pkgs/development/tools/efm-langserver/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "efm-langserver"; 5 - version = "0.0.32"; 5 + version = "0.0.36"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "mattn"; 9 9 repo = "efm-langserver"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-zjjzdHlWEDDmPaDPuyk1ZoXwEFBogf51KjOmRmhFAdc="; 11 + sha256 = "sha256-X2z49KmJiKh1QtcDBZcqNiMhq5deVamS47w6gyVq7Oo="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-tca+1SRrFyvU8ttHmfMFiGXd1A8rQSEWm1Mc2qp0EfI=";
+1 -4
pkgs/development/tools/fdroidserver/default.nix
··· 16 16 17 17 postPatch = '' 18 18 substituteInPlace fdroidserver/common.py --replace "FDROID_PATH = os.path.realpath(os.path.join(os.path.dirname(__file__), '..'))" "FDROID_PATH = '$out/bin'" 19 - substituteInPlace setup.py --replace "pyasn1-modules >= 0.2.1, < 0.3" "pyasn1-modules" 20 19 ''; 21 20 22 21 preConfigure = '' ··· 33 32 androguard 34 33 clint 35 34 defusedxml 36 - docker 37 - docker-py 38 35 GitPython 39 36 libcloud 40 37 mwclient ··· 59 56 homepage = "https://f-droid.org"; 60 57 description = "Server and tools for F-Droid, the Free Software repository system for Android"; 61 58 license = licenses.agpl3; 62 - maintainers = [ lib.maintainers.pmiddend ]; 59 + maintainers = [ lib.maintainers.obfusk ]; 63 60 }; 64 61 65 62 }
+64
pkgs/games/gnonograms/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , vala 5 + , meson 6 + , ninja 7 + , pkg-config 8 + , desktop-file-utils 9 + , appstream 10 + , python3 11 + , shared-mime-info 12 + , wrapGAppsHook 13 + , gtk3 14 + , pantheon 15 + , libgee 16 + }: 17 + 18 + stdenv.mkDerivation rec { 19 + pname = "gnonograms"; 20 + version = "1.4.5"; 21 + 22 + src = fetchFromGitHub { 23 + owner = "jeremypw"; 24 + repo = "gnonograms"; 25 + rev = "v${version}"; 26 + sha256 = "1ly3inp6dvjrixdysz5hdfwlhbs49ks0lf8062z2iq6gaf8ivkb2"; 27 + }; 28 + 29 + postPatch = '' 30 + patchShebangs meson/post_install.py 31 + ''; 32 + 33 + nativeBuildInputs = [ 34 + vala 35 + meson 36 + ninja 37 + pkg-config 38 + desktop-file-utils 39 + appstream 40 + python3 41 + shared-mime-info 42 + wrapGAppsHook 43 + ]; 44 + 45 + buildInputs = [ 46 + gtk3 47 + pantheon.granite 48 + libgee 49 + ]; 50 + 51 + meta = with lib; { 52 + description = "Nonograms puzzle game"; 53 + longDescription = '' 54 + An implementation of the Japanese logic puzzle "Nonograms" written in 55 + Vala, allowing the user to: 56 + * Draw puzzles 57 + * Generate random puzzles of chosen difficulty 58 + ''; 59 + license = licenses.gpl3Plus; 60 + maintainers = with maintainers; [ fgaz ]; 61 + homepage = "https://github.com/jeremypw/gnonograms"; 62 + platforms = platforms.all; 63 + }; 64 + }
+55
pkgs/misc/emulators/bsnes-hd/default.nix
··· 1 + { lib, stdenv, fetchFromGitHub 2 + , pkg-config 3 + , libX11, libXv 4 + , udev 5 + , SDL2 6 + , gtk2, gtksourceview 7 + , alsa-lib, libao, openal, libpulseaudio 8 + , libicns, Cocoa, OpenAL 9 + }: 10 + 11 + stdenv.mkDerivation { 12 + pname = "bsnes-hd"; 13 + version = "10.6-beta"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "DerKoun"; 17 + repo = "bsnes-hd"; 18 + rev = "beta_10_6"; 19 + sha256 = "0f3cd89fd0lqskzj98cc1pzmdbscq0psdjckp86w94rbchx7iw4h"; 20 + }; 21 + 22 + patches = [ 23 + # Replace invocation of `sips` with an equivalent invocation of `png2icns` 24 + # while assembling the .app directory hierarchy in the macos build. The 25 + # `sips` executable isn't in our environment during the build, but 26 + # `png2icns` is available by way of the dependency on libicns. 27 + ./macos-replace-sips-with-png2icns.patch 28 + 29 + # During `make install` on macos the Makefile wants to move the .app into 30 + # the current user's home directory. This patches the Makefile such that 31 + # the .app ends up in $(prefix)/Applications. The $(prefix) variable will 32 + # be set to $out, so this will result in the .app ending up in the 33 + # Applications directory in the current nix profile. 34 + ./macos-copy-app-to-prefix.patch 35 + ]; 36 + 37 + nativeBuildInputs = [ pkg-config ] 38 + ++ lib.optionals stdenv.isDarwin [ libicns ]; 39 + 40 + buildInputs = [ SDL2 libao ] 41 + ++ lib.optionals stdenv.isLinux [ libX11 libXv udev gtk2 gtksourceview alsa-lib openal libpulseaudio ] 42 + ++ lib.optionals stdenv.isDarwin [ Cocoa OpenAL ]; 43 + 44 + enableParallelBuilding = true; 45 + 46 + makeFlags = [ "-C" "bsnes" "prefix=$(out)" ]; 47 + 48 + meta = with lib; { 49 + description = "A fork of bsnes that adds HD video features"; 50 + homepage = "https://github.com/DerKoun/bsnes-hd"; 51 + license = licenses.gpl3Only; 52 + maintainers = with maintainers; [ stevebob ]; 53 + platforms = platforms.unix; 54 + }; 55 + }
+18
pkgs/misc/emulators/bsnes-hd/macos-copy-app-to-prefix.patch
··· 1 + diff --git a/bsnes/target-bsnes/GNUmakefile b/bsnes/target-bsnes/GNUmakefile 2 + index 7a3ab9f..ec8a1a4 100644 3 + --- a/bsnes/target-bsnes/GNUmakefile 4 + +++ b/bsnes/target-bsnes/GNUmakefile 5 + @@ -43,11 +43,8 @@ ifeq ($(platform),windows) 6 + else ifeq ($(shell id -un),root) 7 + $(error "make install should not be run as root") 8 + else ifeq ($(platform),macos) 9 + - mkdir -p ~/Library/Application\ Support/$(name)/ 10 + - mkdir -p ~/Library/Application\ Support/$(name)/Database/ 11 + - mkdir -p ~/Library/Application\ Support/$(name)/Firmware/ 12 + - mkdir -p ~/Library/Application\ Support/$(name)/Shaders/ 13 + - cp -R out/$(name).app /Applications/$(name).app 14 + + mkdir -p $(prefix)/Applications 15 + + cp -R out/$(name).app $(prefix)/Applications 16 + else ifneq ($(filter $(platform),linux bsd),) 17 + mkdir -p $(prefix)/bin/ 18 + mkdir -p $(prefix)/share/applications/
+13
pkgs/misc/emulators/bsnes-hd/macos-replace-sips-with-png2icns.patch
··· 1 + diff --git a/bsnes/target-bsnes/GNUmakefile b/bsnes/target-bsnes/GNUmakefile 2 + index 4c67bde..7a3ab9f 100644 3 + --- a/bsnes/target-bsnes/GNUmakefile 4 + +++ b/bsnes/target-bsnes/GNUmakefile 5 + @@ -33,7 +33,7 @@ ifeq ($(platform),macos) 6 + cp Database/* out/$(name).app/Contents/MacOS/Database/ 7 + cp -r ../shaders/* out/$(name).app/Contents/macOS/Shaders/ 8 + cp $(ui)/resource/$(name).plist out/$(name).app/Contents/Info.plist 9 + - sips -s format icns $(ui)/resource/$(name).png --out out/$(name).app/Contents/Resources/$(name).icns 10 + + png2icns out/$(name).app/Contents/Resources/$(name).icns $(ui)/resource/$(name).png 11 + endif 12 + 13 + verbose: hiro.verbose ruby.verbose nall.verbose all;
+2 -2
pkgs/misc/emulators/yuzu/default.nix
··· 16 16 }; 17 17 early-access = libsForQt5.callPackage ./base.nix rec { 18 18 pname = "yuzu-ea"; 19 - version = "1855"; 19 + version = "1874"; 20 20 branchName = branch; 21 21 src = fetchFromGitHub { 22 22 owner = "pineappleEA"; 23 23 repo = "pineapple-src"; 24 24 rev = "EA-${version}"; 25 - sha256 = "0civ63zi23cym3kii4v3aiqrsg2zzj0w6sp6sa14ixysagqxsd4a"; 25 + sha256 = "0ryrz7dl1sg30vvd7wrf05pjj8swah86055fn7qm6mr2bfslww0h"; 26 26 }; 27 27 }; 28 28 }.${branch}
-41
pkgs/os-specific/linux/ofp/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook 2 - , openssl, libpcap, odp-dpdk, dpdk 3 - }: 4 - 5 - stdenv.mkDerivation rec { 6 - pname = "ofp"; 7 - version = "2.0.0"; 8 - 9 - src = fetchFromGitHub { 10 - owner = "OpenFastPath"; 11 - repo = "ofp"; 12 - rev = version; 13 - sha256 = "05902593fycgkwzk5g7wzgk0k40nrrgybplkdka3rqnlj6aydhqf"; 14 - }; 15 - 16 - nativeBuildInputs = [ pkg-config autoreconfHook ]; 17 - buildInputs = [ openssl libpcap odp-dpdk dpdk ]; 18 - 19 - dontDisableStatic = true; 20 - 21 - postPatch = '' 22 - substituteInPlace configure.ac --replace m4_esyscmd m4_esyscmd_s 23 - substituteInPlace scripts/git_hash.sh --replace /bin/bash ${stdenv.shell} 24 - echo ${version} > .scmversion 25 - ''; 26 - 27 - configureFlags = [ 28 - "--with-odp=${odp-dpdk}" 29 - "--with-odp-lib=odp-dpdk" 30 - "--disable-shared" 31 - ]; 32 - 33 - meta = with lib; { 34 - description = "High performance TCP/IP stack"; 35 - homepage = "http://www.openfastpath.org"; 36 - license = licenses.bsd3; 37 - platforms = [ "x86_64-linux" ]; 38 - maintainers = [ maintainers.abuibrahim ]; 39 - broken = true; 40 - }; 41 - }
+20 -20
pkgs/servers/grocy/0001-Define-configs-with-env-vars.patch
··· 1 - From 7ed6c641cc501246931721700b73f40dce7e8f4b Mon Sep 17 00:00:00 2001 1 + From 035709eeac697945a26276cc17b996c1a0678ddc Mon Sep 17 00:00:00 2001 2 2 From: Maximilian Bosch <maximilian@mbosch.me> 3 3 Date: Tue, 22 Dec 2020 15:38:56 +0100 4 - Subject: [PATCH 1/2] Define configs with env vars 4 + Subject: [PATCH] Define configs with env vars 5 5 6 6 --- 7 7 app.php | 4 ++-- ··· 11 11 4 files changed, 5 insertions(+), 6 deletions(-) 12 12 13 13 diff --git a/app.php b/app.php 14 - index 8176ebe..04432ba 100644 14 + index 17ba6a99..89f48089 100644 15 15 --- a/app.php 16 16 +++ b/app.php 17 - @@ -10,7 +10,7 @@ use Slim\Factory\AppFactory; 17 + @@ -11,7 +11,7 @@ use Slim\Views\Blade; 18 18 require_once __DIR__ . '/vendor/autoload.php'; 19 19 20 20 // Load config files 21 21 -require_once GROCY_DATAPATH . '/config.php'; 22 22 +require_once getenv('GROCY_CONFIG_FILE'); 23 23 require_once __DIR__ . '/config-dist.php'; // For not in own config defined values we use the default ones 24 + require_once __DIR__ . '/helpers/ConfigurationValidator.php'; 24 25 25 - // Definitions for dev/demo/prerelease mode 26 - @@ -37,7 +37,7 @@ $app = AppFactory::create(); 26 + @@ -62,7 +62,7 @@ $app = AppFactory::create(); 27 27 28 28 $container = $app->getContainer(); 29 29 $container->set('view', function (Container $container) { 30 - - return new Slim\Views\Blade(__DIR__ . '/views', GROCY_DATAPATH . '/viewcache'); 31 - + return new Slim\Views\Blade(__DIR__ . '/views', getenv('GROCY_CACHE_DIR')); 30 + - return new Blade(__DIR__ . '/views', GROCY_DATAPATH . '/viewcache'); 31 + + return new Blade(__DIR__ . '/views', getenv('GROCY_CACHE_DIR')); 32 32 }); 33 + 33 34 $container->set('UrlManager', function (Container $container) { 34 - return new UrlManager(GROCY_BASE_URL); 35 35 diff --git a/services/DatabaseService.php b/services/DatabaseService.php 36 - index d1080b0..8bc4ee1 100644 36 + index dfcd5d4b..bc8d1a1d 100644 37 37 --- a/services/DatabaseService.php 38 38 +++ b/services/DatabaseService.php 39 - @@ -105,6 +105,6 @@ class DatabaseService 39 + @@ -107,6 +107,6 @@ class DatabaseService 40 40 return GROCY_DATAPATH . '/grocy_' . $dbSuffix . '.db'; 41 41 } 42 42 ··· 45 45 } 46 46 } 47 47 diff --git a/services/FilesService.php b/services/FilesService.php 48 - index 8c1483e..8f74b4b 100644 48 + index 7d070350..fba2e923 100644 49 49 --- a/services/FilesService.php 50 50 +++ b/services/FilesService.php 51 - @@ -70,7 +70,7 @@ class FilesService extends BaseService 52 - { 53 - parent::__construct(); 51 + @@ -103,7 +103,7 @@ class FilesService extends BaseService 54 52 55 - - $this->StoragePath = GROCY_DATAPATH . '/storage'; 53 + public function GetFilePath($group, $fileName) 54 + { 55 + - $groupFolderPath = $this->StoragePath . '/' . $group; 56 56 + $this->StoragePath = getenv('GROCY_STORAGE_DIR'); 57 57 58 - if (!file_exists($this->StoragePath)) 58 + if (!file_exists($groupFolderPath)) 59 59 { 60 60 diff --git a/services/StockService.php b/services/StockService.php 61 - index 4741b4b..6d4e748 100644 61 + index f73ac5bd..6b6e693a 100644 62 62 --- a/services/StockService.php 63 63 +++ b/services/StockService.php 64 - @@ -1374,8 +1374,7 @@ class StockService extends BaseService 64 + @@ -1589,8 +1589,7 @@ class StockService extends BaseService 65 65 throw new \Exception('No barcode lookup plugin defined'); 66 66 } 67 67 ··· 72 72 { 73 73 require_once $path; 74 74 -- 75 - 2.29.2 75 + 2.31.1 76 76
+2 -2
pkgs/servers/grocy/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "grocy"; 5 - version = "3.0.1"; 5 + version = "3.1.0"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/grocy/grocy/releases/download/v${version}/grocy_${version}.zip"; 9 - sha256 = "sha256-Yjxv0LcLNtpYs4ntBano9NUxwdWgF5etA/M6hUVzOa8="; 9 + sha256 = "sha256-ohviTI2np6z+SjV2CDScouI8Lh2Ru4+CE00KlgT40i8="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ unzip ];
+2 -2
pkgs/servers/monitoring/prometheus/openldap-exporter.nix
··· 2 2 3 3 buildGoPackage rec { 4 4 pname = "openldap_exporter"; 5 - version = "2.1"; 5 + version = "2.1.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "tomcz"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-Di1GiyVp/hGCFhqxhlqJSucGZK7f/FDDUFtJRaiAZu4="; 11 + sha256 = "sha256-G4bTYFm1Zh+7gfSIZnfrPyQ15967ebEzl33pgZu23D4="; 12 12 }; 13 13 14 14 buildFlagsArray = ''
+1 -1
pkgs/tools/security/metasploit/Gemfile
··· 1 1 # frozen_string_literal: true 2 2 source "https://rubygems.org" 3 3 4 - gem "metasploit-framework", git: "https://github.com/rapid7/metasploit-framework", ref: "refs/tags/6.0.53" 4 + gem "metasploit-framework", git: "https://github.com/rapid7/metasploit-framework", ref: "refs/tags/6.0.54"
+11 -11
pkgs/tools/security/metasploit/Gemfile.lock
··· 1 1 GIT 2 2 remote: https://github.com/rapid7/metasploit-framework 3 - revision: b7cef30d11f0509b7e27334030dae6b8cb34e7f2 4 - ref: refs/tags/6.0.53 3 + revision: 0d6c0cfe63f494a04b46700a4317d52484f3a398 4 + ref: refs/tags/6.0.54 5 5 specs: 6 - metasploit-framework (6.0.53) 6 + metasploit-framework (6.0.54) 7 7 actionpack (~> 5.2.2) 8 8 activerecord (~> 5.2.2) 9 9 activesupport (~> 5.2.2) ··· 31 31 metasploit-concern (~> 3.0.0) 32 32 metasploit-credential (~> 4.0.0) 33 33 metasploit-model (~> 3.1.0) 34 - metasploit-payloads (= 2.0.47) 34 + metasploit-payloads (= 2.0.48) 35 35 metasploit_data_models (~> 4.1.0) 36 36 metasploit_payloads-mettle (= 1.0.10) 37 37 mqtt ··· 127 127 arel-helpers (2.12.0) 128 128 activerecord (>= 3.1.0, < 7) 129 129 aws-eventstream (1.1.1) 130 - aws-partitions (1.478.0) 130 + aws-partitions (1.479.0) 131 131 aws-sdk-core (3.117.0) 132 132 aws-eventstream (~> 1, >= 1.0.2) 133 133 aws-partitions (~> 1, >= 1.239.0) 134 134 aws-sigv4 (~> 1.1) 135 135 jmespath (~> 1.0) 136 - aws-sdk-ec2 (1.249.0) 136 + aws-sdk-ec2 (1.251.0) 137 137 aws-sdk-core (~> 3, >= 3.112.0) 138 138 aws-sigv4 (~> 1.1) 139 - aws-sdk-iam (1.56.0) 139 + aws-sdk-iam (1.57.0) 140 140 aws-sdk-core (~> 3, >= 3.112.0) 141 141 aws-sigv4 (~> 1.1) 142 142 aws-sdk-kms (1.44.0) 143 143 aws-sdk-core (~> 3, >= 3.112.0) 144 144 aws-sigv4 (~> 1.1) 145 - aws-sdk-s3 (1.96.1) 145 + aws-sdk-s3 (1.96.2) 146 146 aws-sdk-core (~> 3, >= 3.112.0) 147 147 aws-sdk-kms (~> 1) 148 148 aws-sigv4 (~> 1.1) ··· 232 232 activemodel (~> 5.2.2) 233 233 activesupport (~> 5.2.2) 234 234 railties (~> 5.2.2) 235 - metasploit-payloads (2.0.47) 235 + metasploit-payloads (2.0.48) 236 236 metasploit_data_models (4.1.4) 237 237 activerecord (~> 5.2.2) 238 238 activesupport (~> 5.2.2) ··· 332 332 rex-arch 333 333 rex-ole (0.1.7) 334 334 rex-text 335 - rex-powershell (0.1.91) 335 + rex-powershell (0.1.92) 336 336 rex-random_identifier 337 337 rex-text 338 338 ruby-rc4 339 - rex-random_identifier (0.1.5) 339 + rex-random_identifier (0.1.7) 340 340 rex-text 341 341 rex-registry (0.1.4) 342 342 rex-rop_builder (0.1.4)
+2 -2
pkgs/tools/security/metasploit/default.nix
··· 8 8 }; 9 9 in stdenv.mkDerivation rec { 10 10 pname = "metasploit-framework"; 11 - version = "6.0.53"; 11 + version = "6.0.54"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "rapid7"; 15 15 repo = "metasploit-framework"; 16 16 rev = version; 17 - sha256 = "sha256-0tg2FSRtwo1LRxA5jNQ1Pxx54TPs3ZwErXim8uj24VI="; 17 + sha256 = "sha256-Aoj0KTp8WiY5a5YxssGjvFlVkVHb6ERVFGhyHS7GZ7o="; 18 18 }; 19 19 20 20 nativeBuildInputs = [ makeWrapper ];
+17 -17
pkgs/tools/security/metasploit/gemset.nix
··· 114 114 platforms = []; 115 115 source = { 116 116 remotes = ["https://rubygems.org"]; 117 - sha256 = "0vsxqayzh04gxxan5i8vvfxh0n238dc9305bc89xs2mx2x1pw167"; 117 + sha256 = "090s6b7lz9wz6rclklshxbksgvdf4wji7yy2vha6cz8vg6lbz1xh"; 118 118 type = "gem"; 119 119 }; 120 - version = "1.478.0"; 120 + version = "1.479.0"; 121 121 }; 122 122 aws-sdk-core = { 123 123 groups = ["default"]; ··· 134 134 platforms = []; 135 135 source = { 136 136 remotes = ["https://rubygems.org"]; 137 - sha256 = "1n6yl7qbzmjlxp3rzm3a62vinzdg9a8rqspq7xdaa9sxrf4zsamf"; 137 + sha256 = "0vs4k390h8sqv6zcmrgixsc8z1smpglrxvnzl1ci522w9jcn6az7"; 138 138 type = "gem"; 139 139 }; 140 - version = "1.249.0"; 140 + version = "1.251.0"; 141 141 }; 142 142 aws-sdk-iam = { 143 143 groups = ["default"]; 144 144 platforms = []; 145 145 source = { 146 146 remotes = ["https://rubygems.org"]; 147 - sha256 = "0d30abab908434nmfi5j97vmv63466bmcvhvaknma27qc04s53ph"; 147 + sha256 = "0nmd4g0cdvb38z9mpx13z6mwgbyyn84vj8wn0yf5y4kfzmi47q4y"; 148 148 type = "gem"; 149 149 }; 150 - version = "1.56.0"; 150 + version = "1.57.0"; 151 151 }; 152 152 aws-sdk-kms = { 153 153 groups = ["default"]; ··· 164 164 platforms = []; 165 165 source = { 166 166 remotes = ["https://rubygems.org"]; 167 - sha256 = "0q28bdmpm2c2fw9wh00zhqxnb8p2nzdfi5l6wwa6bl63fm28816h"; 167 + sha256 = "1qgr1x2ykkbbfh6krv4wb97ihjq6w785gh21qrk77s9xjq4lcfqw"; 168 168 type = "gem"; 169 169 }; 170 - version = "1.96.1"; 170 + version = "1.96.2"; 171 171 }; 172 172 aws-sigv4 = { 173 173 groups = ["default"]; ··· 594 594 platforms = []; 595 595 source = { 596 596 fetchSubmodules = false; 597 - rev = "b7cef30d11f0509b7e27334030dae6b8cb34e7f2"; 598 - sha256 = "0lp1yvlg59kqml29rpgc6ghpj71z6pa8qf8h8x5qvhkd4hakdn6j"; 597 + rev = "0d6c0cfe63f494a04b46700a4317d52484f3a398"; 598 + sha256 = "1fk7qqp1swk82ial9s6va68mandwlg0v4ccndcwjcnkw78lz9202"; 599 599 type = "git"; 600 600 url = "https://github.com/rapid7/metasploit-framework"; 601 601 }; 602 - version = "6.0.53"; 602 + version = "6.0.54"; 603 603 }; 604 604 metasploit-model = { 605 605 groups = ["default"]; ··· 616 616 platforms = []; 617 617 source = { 618 618 remotes = ["https://rubygems.org"]; 619 - sha256 = "0jxa9q8jzfy91i4khnzmd36p3g2sq7df34csgwbmv6caarzs7732"; 619 + sha256 = "0jg96v1a7q3ypq33jaflnfvpqm6cz0ihaiilag2y6qvd0ypv297d"; 620 620 type = "gem"; 621 621 }; 622 - version = "2.0.47"; 622 + version = "2.0.48"; 623 623 }; 624 624 metasploit_data_models = { 625 625 groups = ["default"]; ··· 1106 1106 platforms = []; 1107 1107 source = { 1108 1108 remotes = ["https://rubygems.org"]; 1109 - sha256 = "0zrc0pr1pla0amw6hagllj82hyq8pyy6wb38xry2cxg7q70ghfq7"; 1109 + sha256 = "02gpfw43r0pkzp7jj3n0lwn4lgbgkgadrn4p33x7b0xh1dalzgj1"; 1110 1110 type = "gem"; 1111 1111 }; 1112 - version = "0.1.91"; 1112 + version = "0.1.92"; 1113 1113 }; 1114 1114 rex-random_identifier = { 1115 1115 groups = ["default"]; 1116 1116 platforms = []; 1117 1117 source = { 1118 1118 remotes = ["https://rubygems.org"]; 1119 - sha256 = "0pqd8pfcxqd44ql8dawk59k9s5jnhx7inc8wnpjhkbx0y0sldq8q"; 1119 + sha256 = "1zaqndyy04c4fn021ibh05xim3wr7l2i71713amz6pvhgs2939r3"; 1120 1120 type = "gem"; 1121 1121 }; 1122 - version = "0.1.5"; 1122 + version = "0.1.7"; 1123 1123 }; 1124 1124 rex-registry = { 1125 1125 groups = ["default"];
+2 -2
pkgs/tools/security/terrascan/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "terrascan"; 8 - version = "1.8.0"; 8 + version = "1.8.1"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "accurics"; ··· 14 14 sha256 = "sha256-eCkinYJtZNf5Fo+LXu01cHRInA9CfDONvt1OIs3XJSk="; 15 15 }; 16 16 17 - vendorSha256 = "sha256-eez/g0Np/vnSO6uvUA8vtqR3DEaKlBo6lyd9t25LE7s="; 17 + vendorSha256 = "1fqk9dpbfz97jwx1m54a8q67g95n5w7m1bxb7g9gkzk98f1zzv3r"; 18 18 19 19 # Tests want to download a vulnerable Terraform project 20 20 doCheck = false;
+3 -3
pkgs/tools/system/natscli/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "natscli"; 8 - version = "0.0.24"; 8 + version = "0.0.25"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "nats-io"; 12 12 repo = pname; 13 13 rev = version; 14 - sha256 = "11rpgvcnd2m4g0jnv6g0zdvnhs37jwn1c4hc86xgnk2vipvy0nw2"; 14 + sha256 = "180511x3sciqs0njz80qc1a785m84ks9l338qi3liv7bcd541xcr"; 15 15 }; 16 16 17 - vendorSha256 = "0nrgbwc10pp7adj0w1jjj6677y2dpqq969ij7i0pmvr08ni95sxw"; 17 + vendorSha256 = "1j2a6wmyb9akndiwq79jqy5lz84bz2k01xp505j60ynsflim7shq"; 18 18 19 19 meta = with lib; { 20 20 description = "NATS Command Line Interface";
+3 -3
pkgs/tools/text/mdbook-mermaid/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "mdbook-mermaid"; 5 - version = "0.8.1"; 5 + version = "0.8.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "badboy"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-UMYWRQeSQwWVJla/+RPlAXPMuFVnxqDtYDxLKmbMw4g="; 11 + sha256 = "sha256-maYFOlWNqKFmyDM2nDF25rzYnUXMlV9Ry9TMoXReUUg="; 12 12 }; 13 13 14 - cargoSha256 = "sha256-nhJS2QZUyGeNRMS9D+P+QPMDHK2PqVK/H2AKaP7EECw="; 14 + cargoSha256 = "sha256-GL5Z4KfRu0zQAzVCWRIhaYtG5FrDdQabsbyFX7SjZvg="; 15 15 16 16 buildInputs = lib.optionals stdenv.isDarwin [ CoreServices ]; 17 17
+1
pkgs/top-level/aliases.nix
··· 529 529 oauth2_proxy = oauth2-proxy; # added 2021-04-18 530 530 opencascade_oce = opencascade; # added 2018-04-25 531 531 oblogout = throw "oblogout has been removed from nixpkgs, as it's archived upstream."; # added 2019-12-10 532 + ofp = throw "ofp is not compatible with odp-dpdk"; 532 533 opencl-icd = ocl-icd; # added 2017-01-20 533 534 openconnect_pa = throw "openconnect_pa fork has been discontinued, support for GlobalProtect is now available in openconnect"; # added 2021-05-21 534 535 openexr_ctl = ctl; # added 2018-04-25
+16 -3
pkgs/top-level/all-packages.nix
··· 2851 2851 2852 2852 gping = callPackage ../tools/networking/gping { }; 2853 2853 2854 + gpu-burn = callPackage ../applications/misc/gpu-burn { }; 2855 + 2854 2856 greg = callPackage ../applications/audio/greg { 2855 2857 pythonPackages = python3Packages; 2856 2858 }; ··· 21625 21627 21626 21628 odroid-xu3-bootloader = callPackage ../tools/misc/odroid-xu3-bootloader { }; 21627 21629 21628 - ofp = callPackage ../os-specific/linux/ofp { }; 21629 - 21630 21630 ofono = callPackage ../tools/networking/ofono { }; 21631 21631 21632 21632 openpam = callPackage ../development/libraries/openpam { }; ··· 23589 23589 infobar = callPackage ../applications/audio/deadbeef/plugins/infobar.nix { }; 23590 23590 lyricbar = callPackage ../applications/audio/deadbeef/plugins/lyricbar.nix { }; 23591 23591 mpris2 = callPackage ../applications/audio/deadbeef/plugins/mpris2.nix { }; 23592 + statusnotifier = callPackage ../applications/audio/deadbeef/plugins/statusnotifier.nix { }; 23592 23593 }; 23593 23594 23594 23595 deadbeef-with-plugins = callPackage ../applications/audio/deadbeef/wrapper.nix { ··· 27530 27531 27531 27532 tut = callPackage ../applications/misc/tut { }; 27532 27533 27533 - tuxguitar = callPackage ../applications/editors/music/tuxguitar { }; 27534 + tuxguitar = callPackage ../applications/editors/music/tuxguitar { 27535 + jre = jre8; 27536 + swt = swt_jdk8; 27537 + }; 27534 27538 27535 27539 twister = callPackage ../applications/networking/p2p/twister { }; 27536 27540 ··· 29005 29009 29006 29010 gmad = callPackage ../games/gmad { }; 29007 29011 29012 + gnonograms = callPackage ../games/gnonograms { }; 29013 + 29008 29014 gnubg = callPackage ../games/gnubg { }; 29009 29015 29010 29016 gnuchess = callPackage ../games/gnuchess { }; ··· 30083 30089 bwa = callPackage ../applications/science/biology/bwa { }; 30084 30090 30085 30091 ### SCIENCE/MACHINE LEARNING 30092 + 30093 + nengo-gui = callPackage ../applications/science/machine-learning/nengo-gui { }; 30086 30094 30087 30095 sc2-headless = callPackage ../applications/science/machine-learning/sc2-headless { }; 30088 30096 ··· 32129 32137 higan = callPackage ../misc/emulators/higan { 32130 32138 inherit (gnome2) gtksourceview; 32131 32139 inherit (darwin.apple_sdk.frameworks) Carbon Cocoa OpenGL OpenAL; 32140 + }; 32141 + 32142 + bsnes-hd = callPackage ../misc/emulators/bsnes-hd { 32143 + inherit (gnome2) gtksourceview; 32144 + inherit (darwin.apple_sdk.frameworks) Cocoa OpenAL; 32132 32145 }; 32133 32146 32134 32147 yapesdl = callPackage ../misc/emulators/yapesdl { };
+4
pkgs/top-level/python-packages.nix
··· 3102 3102 3103 3103 graphene = callPackage ../development/python-modules/graphene { }; 3104 3104 3105 + graphqlclient= callPackage ../development/python-modules/graphqlclient { }; 3106 + 3105 3107 graphql-core = callPackage ../development/python-modules/graphql-core { }; 3106 3108 3107 3109 graphql-relay = callPackage ../development/python-modules/graphql-relay { }; ··· 3978 3980 ldaptor = callPackage ../development/python-modules/ldaptor { }; 3979 3981 3980 3982 leather = callPackage ../development/python-modules/leather { }; 3983 + 3984 + leb128 = callPackage ../development/python-modules/leb128 { }; 3981 3985 3982 3986 ledger_agent = callPackage ../development/python-modules/ledger_agent { }; 3983 3987