Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
fa42e187 104abaeb

+780 -436
+6
maintainers/maintainer-list.nix
··· 11080 githubId = 10110; 11081 name = "Travis B. Hartwell"; 11082 }; 11083 TredwellGit = { 11084 email = "tredwell@tutanota.com"; 11085 github = "TredwellGit";
··· 11080 githubId = 10110; 11081 name = "Travis B. Hartwell"; 11082 }; 11083 + travisdavis-ops = { 11084 + email = "travisdavismedia@gmail.com"; 11085 + github = "travisdavis-ops"; 11086 + githubId = 52011418; 11087 + name = "Travis Davis"; 11088 + }; 11089 TredwellGit = { 11090 email = "tredwell@tutanota.com"; 11091 github = "TredwellGit";
+9
maintainers/team-list.nix
··· 178 scope = "Maintain the ecosystem around Matrix, a decentralized messenger."; 179 }; 180 181 pantheon = { 182 members = [ 183 davidak
··· 178 scope = "Maintain the ecosystem around Matrix, a decentralized messenger."; 179 }; 180 181 + openstack = { 182 + members = [ 183 + angustrau 184 + superherointj 185 + supersandro2000 186 + ]; 187 + scope = "Maintain the ecosystem around OpenStack"; 188 + }; 189 + 190 pantheon = { 191 members = [ 192 davidak
+11
nixos/doc/manual/from_md/release-notes/rl-2111.section.xml
··· 37 PostgreSQL now defaults to major version 13. 38 </para> 39 </listitem> 40 </itemizedlist> 41 </section> 42 <section xml:id="sec-release-21.11-new-services">
··· 37 PostgreSQL now defaults to major version 13. 38 </para> 39 </listitem> 40 + <listitem> 41 + <para> 42 + Activation scripts can now opt int to be run when running 43 + <literal>nixos-rebuild dry-activate</literal> and detect the 44 + dry activation by reading <literal>$NIXOS_ACTION</literal>. 45 + This allows activation scripts to output what they would 46 + change if the activation was really run. The users/modules 47 + activation script supports this and outputs some of is 48 + actions. 49 + </para> 50 + </listitem> 51 </itemizedlist> 52 </section> 53 <section xml:id="sec-release-21.11-new-services">
+4
nixos/doc/manual/release-notes/rl-2111.section.md
··· 14 15 - PostgreSQL now defaults to major version 13. 16 17 ## New Services {#sec-release-21.11-new-services} 18 19 - [btrbk](https://digint.ch/btrbk/index.html), a backup tool for btrfs subvolumes, taking advantage of btrfs specific capabilities to create atomic snapshots and transfer them incrementally to your backup locations. Available as [services.btrbk](options.html#opt-services.brtbk.instances).
··· 14 15 - PostgreSQL now defaults to major version 13. 16 17 + - Activation scripts can now opt int to be run when running `nixos-rebuild dry-activate` and detect the dry activation by reading `$NIXOS_ACTION`. 18 + This allows activation scripts to output what they would change if the activation was really run. 19 + The users/modules activation script supports this and outputs some of is actions. 20 + 21 ## New Services {#sec-release-21.11-new-services} 22 23 - [btrbk](https://digint.ch/btrbk/index.html), a backup tool for btrfs subvolumes, taking advantage of btrfs specific capabilities to create atomic snapshots and transfer them incrementally to your backup locations. Available as [services.btrbk](options.html#opt-services.brtbk.instances).
+11 -7
nixos/modules/services/network-filesystems/ipfs.nix
··· 12 (optionalString (cfg.defaultMode == "norouting") "--routing=none") 13 ] ++ cfg.extraFlags); 14 15 splitMulitaddr = addrRaw: lib.tail (lib.splitString "/" addrRaw); 16 17 multiaddrToListenStream = addrRaw: ··· 236 environment.IPFS_PATH = cfg.dataDir; 237 238 preStart = '' 239 - if [[ ! -f ${cfg.dataDir}/config ]]; then 240 - ipfs init ${optionalString cfg.emptyRepo "-e"} \ 241 - ${optionalString (! cfg.localDiscovery) "--profile=server"} 242 else 243 - ${if cfg.localDiscovery 244 - then "ipfs --offline config profile apply local-discovery" 245 - else "ipfs --offline config profile apply server" 246 - } 247 fi 248 '' + optionalString cfg.autoMount '' 249 ipfs --offline config Mounts.FuseAllowOther --json true
··· 12 (optionalString (cfg.defaultMode == "norouting") "--routing=none") 13 ] ++ cfg.extraFlags); 14 15 + profile = 16 + if cfg.localDiscovery 17 + then "local-discovery" 18 + else "server"; 19 + 20 splitMulitaddr = addrRaw: lib.tail (lib.splitString "/" addrRaw); 21 22 multiaddrToListenStream = addrRaw: ··· 241 environment.IPFS_PATH = cfg.dataDir; 242 243 preStart = '' 244 + if [[ ! -f "$IPFS_PATH/config" ]]; then 245 + ipfs init ${optionalString cfg.emptyRepo "-e"} --profile=${profile} 246 else 247 + # After an unclean shutdown this file may exist which will cause the config command to attempt to talk to the daemon. This will hang forever if systemd is holding our sockets open. 248 + rm -vf "$IPFS_PATH/api" 249 + 250 + ipfs --offline config profile apply ${profile} 251 fi 252 '' + optionalString cfg.autoMount '' 253 ipfs --offline config Mounts.FuseAllowOther --json true
+18 -6
pkgs/applications/blockchains/chia/default.nix
··· 5 , python3Packages 6 }: 7 8 - python3Packages.buildPythonApplication rec { 9 pname = "chia"; 10 - version = "1.2.3"; 11 12 src = fetchFromGitHub { 13 owner = "Chia-Network"; 14 repo = "chia-blockchain"; 15 rev = version; 16 fetchSubmodules = true; 17 - sha256 = "sha256-nK/Zk2zgIdrRtw3+VkUXQWfI9j29XFDOR95Dvbn07eA="; 18 }; 19 20 patches = [ ··· 45 clvm 46 clvm-rs 47 clvm-tools 48 colorlog 49 concurrent-log-handler 50 cryptography 51 dnspython 52 keyrings-cryptfile 53 pyyaml 54 setproctitle 55 setuptools # needs pkg_resources at runtime 56 sortedcontainers 57 websockets 58 ]; 59 ··· 61 pytestCheckHook 62 ]; 63 64 disabledTests = [ 65 "test_spend_through_n" 66 "test_spend_zero_coin" 67 ]; 68 69 postPatch = '' ··· 72 --replace "aiohttp==3.7.4" "aiohttp>=3.7.4" \ 73 --replace "sortedcontainers==2.3.0" "sortedcontainers>=2.3.0" \ 74 --replace "click==7.1.2" "click>=7.1.2" \ 75 - --replace "clvm_rs==0.1.8" "clvm_rs>=0.1.8" \ 76 --replace "clvm==0.9.7" "clvm>=0.9.7" \ 77 - --replace "bitstring==3.1.7" "bitstring>=3.1.9" \ 78 79 ln -sf ${cacert}/etc/ssl/certs/ca-bundle.crt mozilla-ca/cacert.pem 80 ''; ··· 83 export HOME=`mktemp -d` 84 ''; 85 86 meta = with lib; { 87 homepage = "https://www.chia.net/"; 88 description = "Chia is a modern cryptocurrency built from scratch, designed to be efficient, decentralized, and secure."; ··· 90 maintainers = teams.chia.members; 91 platforms = platforms.all; 92 }; 93 - }
··· 5 , python3Packages 6 }: 7 8 + let chia = python3Packages.buildPythonApplication rec { 9 pname = "chia"; 10 + version = "1.2.6"; 11 12 src = fetchFromGitHub { 13 owner = "Chia-Network"; 14 repo = "chia-blockchain"; 15 rev = version; 16 fetchSubmodules = true; 17 + sha256 = "sha256-Y+cRfx5WE+hb31E975xquuSmNgqr2AvaQnCE70sW91w="; 18 }; 19 20 patches = [ ··· 45 clvm 46 clvm-rs 47 clvm-tools 48 + colorama 49 colorlog 50 concurrent-log-handler 51 cryptography 52 dnspython 53 + fasteners 54 keyrings-cryptfile 55 pyyaml 56 setproctitle 57 setuptools # needs pkg_resources at runtime 58 sortedcontainers 59 + watchdog 60 websockets 61 ]; 62 ··· 64 pytestCheckHook 65 ]; 66 67 + # Testsuite is expensive and non-deterministic, so it is available in 68 + # passthru.tests instead. 69 + doCheck = false; 70 + 71 disabledTests = [ 72 "test_spend_through_n" 73 "test_spend_zero_coin" 74 + "test_default_cached_master_passphrase" 75 + "test_using_legacy_keyring" 76 ]; 77 78 postPatch = '' ··· 81 --replace "aiohttp==3.7.4" "aiohttp>=3.7.4" \ 82 --replace "sortedcontainers==2.3.0" "sortedcontainers>=2.3.0" \ 83 --replace "click==7.1.2" "click>=7.1.2" \ 84 --replace "clvm==0.9.7" "clvm>=0.9.7" \ 85 86 ln -sf ${cacert}/etc/ssl/certs/ca-bundle.crt mozilla-ca/cacert.pem 87 ''; ··· 90 export HOME=`mktemp -d` 91 ''; 92 93 + passthru.tests = { 94 + chiaWithTests = chia.overrideAttrs (_: { doCheck = true; }); 95 + }; 96 + 97 meta = with lib; { 98 homepage = "https://www.chia.net/"; 99 description = "Chia is a modern cryptocurrency built from scratch, designed to be efficient, decentralized, and secure."; ··· 101 maintainers = teams.chia.members; 102 platforms = platforms.all; 103 }; 104 + }; 105 + in chia
+17 -11
pkgs/applications/editors/emacs/elisp-packages/apheleia/default.nix
··· 1 - { stdenv, fetchFromGitHub, emacs, lib }: 2 3 - stdenv.mkDerivation { 4 pname = "apheleia"; 5 - version = "2021-05-23"; 6 7 src = fetchFromGitHub { 8 owner = "raxod502"; 9 - repo = "apheleia"; 10 - rev = "f865c165dac606187a66b2b25a57d5099b452120"; 11 - sha256 = "sha256-n37jJsNOGhSjUtQysG3NVIjjayhbOa52iTXBc8SyKXE="; 12 }; 13 14 - buildInputs = [ emacs ]; 15 16 buildPhase = '' 17 runHook preBuild ··· 26 runHook postInstall 27 ''; 28 29 - meta = { 30 - description = "Reformat buffer stably"; 31 homepage = "https://github.com/raxod502/apheleia"; 32 - license = lib.licenses.mit; 33 - maintainers = with lib.maintainers; [ leungbk ]; 34 platforms = emacs.meta.platforms; 35 }; 36 }
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , emacs 5 + }: 6 7 + stdenv.mkDerivation rec { 8 pname = "apheleia"; 9 + version = "0.0.0+unstable=2021-08-08"; 10 11 src = fetchFromGitHub { 12 owner = "raxod502"; 13 + repo = pname; 14 + rev = "8e022c67fea4248f831c678b31c19646cbcbbf6f"; 15 + hash = "sha256-Put/BBQ7V423C18UIVfaM17T+TDWtAxRZi7WI8doPJw="; 16 }; 17 18 + buildInputs = [ 19 + emacs 20 + ]; 21 22 buildPhase = '' 23 runHook preBuild ··· 32 runHook postInstall 33 ''; 34 35 + meta = with lib; { 36 homepage = "https://github.com/raxod502/apheleia"; 37 + description = "Asynchronous buffer reformat"; 38 + license = licenses.mit; 39 + maintainers = with maintainers; [ AndersonTorres leungbk ]; 40 platforms = emacs.meta.platforms; 41 }; 42 }
+13 -7
pkgs/applications/editors/emacs/elisp-packages/git-undo/default.nix
··· 1 - { stdenv, fetchFromGitHub, emacs, lib }: 2 3 stdenv.mkDerivation { 4 pname = "git-undo"; 5 - version = "2019-10-13"; 6 7 src = fetchFromGitHub { 8 owner = "jwiegley"; ··· 11 sha256 = "sha256-cVkK9EF6qQyVV3uVqnBEjF8e9nEx/8ixnM8PvxqCyYE="; 12 }; 13 14 - buildInputs = [ emacs ]; 15 16 buildPhase = '' 17 runHook preBuild ··· 26 runHook postInstall 27 ''; 28 29 - meta = { 30 - description = "Revert region to most recent Git-historical version"; 31 homepage = "https://github.com/jwiegley/git-undo-el"; 32 - license = lib.licenses.gpl2Plus; 33 - maintainers = with lib.maintainers; [ leungbk ]; 34 platforms = emacs.meta.platforms; 35 }; 36 }
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , emacs 5 + }: 6 7 stdenv.mkDerivation { 8 pname = "git-undo"; 9 + version = "0.0.0+unstable=2019-12-21"; 10 11 src = fetchFromGitHub { 12 owner = "jwiegley"; ··· 15 sha256 = "sha256-cVkK9EF6qQyVV3uVqnBEjF8e9nEx/8ixnM8PvxqCyYE="; 16 }; 17 18 + buildInputs = [ 19 + emacs 20 + ]; 21 22 buildPhase = '' 23 runHook preBuild ··· 32 runHook postInstall 33 ''; 34 35 + meta = with lib; { 36 homepage = "https://github.com/jwiegley/git-undo-el"; 37 + description = "Revert region to most recent Git-historical version"; 38 + license = licenses.gpl2Plus; 39 + maintainers = with maintainers; [ leungbk ]; 40 platforms = emacs.meta.platforms; 41 }; 42 }
+15 -9
pkgs/applications/editors/emacs/elisp-packages/isearch-plus/default.nix
··· 1 - { stdenv, fetchFromGitHub, emacs, lib }: 2 3 stdenv.mkDerivation { 4 pname = "isearch-plus"; 5 - version = "2021-01-01"; 6 7 src = fetchFromGitHub { 8 owner = "emacsmirror"; 9 repo = "isearch-plus"; 10 - rev = "376a8f9f8a9666d7e61d125abcdb645847cb8619"; 11 - sha256 = "sha256-Kd5vpu+mI1tJPcsu7EpnnBcPVdVAijkAeTz+bLB3WlQ="; 12 }; 13 14 - buildInputs = [ emacs ]; 15 16 buildPhase = '' 17 runHook preBuild ··· 26 runHook postInstall 27 ''; 28 29 - meta = { 30 description = "Extensions to isearch"; 31 - homepage = "https://www.emacswiki.org/emacs/download/isearch%2b.el"; 32 - license = lib.licenses.gpl2Plus; 33 - maintainers = with lib.maintainers; [ leungbk ]; 34 platforms = emacs.meta.platforms; 35 }; 36 }
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , emacs 5 + }: 6 7 stdenv.mkDerivation { 8 pname = "isearch-plus"; 9 + version = "3434+unstable=2021-08-23"; 10 11 src = fetchFromGitHub { 12 owner = "emacsmirror"; 13 repo = "isearch-plus"; 14 + rev = "93088ea0ac4d51bdb76c4c32ea53172f6c435852"; 15 + hash = "sha256-kD+Fyps3fc5YK6ATU1nrkKHazGMYJnU2gRcpQZf6A1E="; 16 }; 17 18 + buildInputs = [ 19 + emacs 20 + ]; 21 22 buildPhase = '' 23 runHook preBuild ··· 32 runHook postInstall 33 ''; 34 35 + meta = with lib; { 36 + homepage = "https://www.emacswiki.org/emacs/IsearchPlus"; 37 description = "Extensions to isearch"; 38 + license = licenses.gpl2Plus; 39 + maintainers = with maintainers; [ leungbk AndersonTorres ]; 40 platforms = emacs.meta.platforms; 41 }; 42 }
+14 -8
pkgs/applications/editors/emacs/elisp-packages/isearch-prop/default.nix
··· 1 - { stdenv, fetchFromGitHub, emacs, lib }: 2 3 stdenv.mkDerivation { 4 pname = "isearch-prop"; 5 - version = "2019-05-01"; 6 7 src = fetchFromGitHub { 8 owner = "emacsmirror"; 9 repo = "isearch-prop"; 10 rev = "4a2765f835dd115d472142da05215c4c748809f4"; 11 - sha256 = "sha256-A1Kt4nm7iRV9J5yaLupwiNL5g7ddZvQs79dggmqZ7Rk="; 12 }; 13 14 - buildInputs = [ emacs ]; 15 16 buildPhase = '' 17 runHook preBuild ··· 26 runHook postInstall 27 ''; 28 29 - meta = { 30 description = "Search text- or overlay-property contexts"; 31 - homepage = "https://www.emacswiki.org/emacs/download/isearch-prop.el"; 32 - license = lib.licenses.gpl3Plus; 33 - maintainers = with lib.maintainers; [ leungbk ]; 34 platforms = emacs.meta.platforms; 35 }; 36 }
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , emacs 5 + }: 6 7 stdenv.mkDerivation { 8 pname = "isearch-prop"; 9 + version = "0.0.0+unstable=2019-05-01"; 10 11 src = fetchFromGitHub { 12 owner = "emacsmirror"; 13 repo = "isearch-prop"; 14 rev = "4a2765f835dd115d472142da05215c4c748809f4"; 15 + hash = "sha256-A1Kt4nm7iRV9J5yaLupwiNL5g7ddZvQs79dggmqZ7Rk="; 16 }; 17 18 + buildInputs = [ 19 + emacs 20 + ]; 21 22 buildPhase = '' 23 runHook preBuild ··· 32 runHook postInstall 33 ''; 34 35 + meta = with lib; { 36 + homepage = "https://www.emacswiki.org/emacs/IsearchPlus"; 37 description = "Search text- or overlay-property contexts"; 38 + license = licenses.gpl3Plus; 39 + maintainers = with maintainers; [ leungbk ]; 40 platforms = emacs.meta.platforms; 41 }; 42 }
+8 -2
pkgs/applications/editors/emacs/elisp-packages/manual-packages.nix
··· 125 }; 126 }; 127 128 - git-undo = callPackage ./git-undo { }; 129 - 130 haskell-unicode-input-method = let 131 rev = "d8d168148c187ed19350bb7a1a190217c2915a63"; 132 in melpaBuild { ··· 260 261 # Packages made the classical callPackage way 262 263 ebuild-mode = callPackage ./ebuild-mode { }; 264 265 emacspeak = callPackage ./emacspeak { }; ··· 267 ess-R-object-popup = callPackage ./ess-R-object-popup { }; 268 269 font-lock-plus = callPackage ./font-lock-plus { }; 270 271 helm-words = callPackage ./helm-words { }; 272 273 jam-mode = callPackage ./jam-mode { }; 274
··· 125 }; 126 }; 127 128 haskell-unicode-input-method = let 129 rev = "d8d168148c187ed19350bb7a1a190217c2915a63"; 130 in melpaBuild { ··· 258 259 # Packages made the classical callPackage way 260 261 + apheleia = callPackage ./apheleia { }; 262 + 263 ebuild-mode = callPackage ./ebuild-mode { }; 264 265 emacspeak = callPackage ./emacspeak { }; ··· 267 ess-R-object-popup = callPackage ./ess-R-object-popup { }; 268 269 font-lock-plus = callPackage ./font-lock-plus { }; 270 + 271 + git-undo = callPackage ./git-undo { }; 272 273 helm-words = callPackage ./helm-words { }; 274 + 275 + isearch-plus = callPackage ./isearch-plus { }; 276 + 277 + isearch-prop = callPackage ./isearch-prop { }; 278 279 jam-mode = callPackage ./jam-mode { }; 280
+3 -3
pkgs/applications/editors/emacs/elisp-packages/sunrise-commander/default.nix
··· 6 7 stdenv.mkDerivation rec { 8 pname = "sunrise-commander"; 9 - version = "0.0.0-unstable=2021-04-23"; 10 11 src = fetchFromGitHub { 12 owner = pname; 13 repo = pname; 14 - rev = "db880fbea03d2db00db1398c91918c3c6f0392e3"; 15 - hash = "sha256-IGHCKYQaGUapaA9vxq0xO58KCpBPOiQpHqrEaHK0usE="; 16 }; 17 18 buildInputs = [
··· 6 7 stdenv.mkDerivation rec { 8 pname = "sunrise-commander"; 9 + version = "0.0.0+unstable=2021-07-22"; 10 11 src = fetchFromGitHub { 12 owner = pname; 13 repo = pname; 14 + rev = "7662f635c372224e2356d745185db1e718fb7ee4"; 15 + hash = "sha256-NYUqJ2rDidVchX2B0+ApNbQeZFxxCnKRYXb6Ia+NzLI="; 16 }; 17 18 buildInputs = [
+2 -2
pkgs/applications/misc/anytype/default.nix
··· 2 3 let 4 pname = "anytype"; 5 - version = "0.18.59"; 6 name = "Anytype-${version}"; 7 nameExecutable = pname; 8 src = fetchurl { 9 url = "https://at9412003.fra1.digitaloceanspaces.com/Anytype-${version}.AppImage"; 10 name = "Anytype-${version}.AppImage"; 11 - sha256 = "sha256-HDhDd23kXhIFXg+QKPNpR2R6QC4oJCnut+gD//qMK1Y="; 12 }; 13 appimageContents = appimageTools.extractType2 { inherit name src; }; 14 in
··· 2 3 let 4 pname = "anytype"; 5 + version = "0.18.68"; 6 name = "Anytype-${version}"; 7 nameExecutable = pname; 8 src = fetchurl { 9 url = "https://at9412003.fra1.digitaloceanspaces.com/Anytype-${version}.AppImage"; 10 name = "Anytype-${version}.AppImage"; 11 + sha256 = "sha256-VZYFMUgflc3LEk/nN7eoQbinGQS1AnPHmb8WgKzhGRM="; 12 }; 13 appimageContents = appimageTools.extractType2 { inherit name src; }; 14 in
+26
pkgs/applications/misc/nhentai/default.nix
···
··· 1 + { lib, python3Packages }: 2 + 3 + python3Packages.buildPythonApplication rec { 4 + pname = "nhentai"; 5 + version = "0.4.16"; 6 + src = python3Packages.fetchPypi { 7 + inherit pname version; 8 + sha256 = "sha256-2lzrQqUx3lPM+OAUO/SwT+fAuG7kWmUnTACNUiP7d1M="; 9 + }; 10 + 11 + propagatedBuildInputs = with python3Packages; [ 12 + requests 13 + iso8601 14 + beautifulsoup4 15 + soupsieve 16 + tabulate 17 + future 18 + ]; 19 + 20 + meta = with lib; { 21 + homepage = "https://github.com/RicterZ/nhentai"; 22 + description = "nHentai is a CLI tool for downloading doujinshi from <http://nhentai.net>"; 23 + license = licenses.mit; 24 + maintainers = with maintainers; [ travisdavis-ops ]; 25 + }; 26 + }
+3 -3
pkgs/applications/misc/senv/default.nix
··· 2 3 buildGoModule rec { 4 pname = "senv"; 5 - version = "0.5.0"; 6 7 src = fetchFromGitHub { 8 owner = "SpectralOps"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "014422sdks2xlpsgvynwibz25jg1fj5s8dcf8b1j6djgq5glhfaf"; 12 }; 13 14 - vendorSha256 = "05n55yf75r7i9kl56kw9x6hgmyf5bva5dzp9ni2ws0lb1389grfc"; 15 16 subPackages = [ "." ]; 17
··· 2 3 buildGoModule rec { 4 pname = "senv"; 5 + version = "0.7.0"; 6 7 src = fetchFromGitHub { 8 owner = "SpectralOps"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-TjlIX8FPNiPDQo41pIt04cki/orc+v30pV3o2bQQhAQ="; 12 }; 13 14 + vendorSha256 = "sha256-zOWX0AiLAs1FtOn+VtRexfn6oOmJT1PoTPHkcpwvxRY="; 15 16 subPackages = [ "." ]; 17
+3 -3
pkgs/applications/networking/cluster/temporal/default.nix
··· 2 3 buildGoModule rec { 4 pname = "temporal"; 5 - version = "1.11.4"; 6 7 src = fetchFromGitHub { 8 owner = "temporalio"; 9 repo = "temporal"; 10 rev = "v${version}"; 11 - sha256 = "sha256-JVwFNhWAoZk3ZRl180KgE94DQPbowRya9irwwJQyN3g="; 12 }; 13 14 - vendorSha256 = "sha256-eO/23MQpdXQNPCIzMC9nxvrgUFuEPABJ7vkBZKv+XZI="; 15 16 # Errors: 17 # > === RUN TestNamespaceHandlerGlobalNamespaceDisabledSuite
··· 2 3 buildGoModule rec { 4 pname = "temporal"; 5 + version = "1.12.0"; 6 7 src = fetchFromGitHub { 8 owner = "temporalio"; 9 repo = "temporal"; 10 rev = "v${version}"; 11 + sha256 = "1gdks7pzaqrsdihh2m3v597x0dw2qww95jlznj0h112jgicanimj"; 12 }; 13 14 + vendorSha256 = "sha256-dGmd6tCUKoK4uwhB5kXGOpXemtLn0VssabDE4iQWEAw="; 15 16 # Errors: 17 # > === RUN TestNamespaceHandlerGlobalNamespaceDisabledSuite
+261 -261
pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix
··· 1 { 2 - version = "91.0.3"; 3 sources = [ 4 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/af/thunderbird-91.0.3.tar.bz2"; 5 locale = "af"; 6 arch = "linux-x86_64"; 7 - sha256 = "e9fa155cb5f1a2c4530cb568fbb2c4074f12232fa9949c2d5cdffb0d29c105d2"; 8 } 9 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/ar/thunderbird-91.0.3.tar.bz2"; 10 locale = "ar"; 11 arch = "linux-x86_64"; 12 - sha256 = "23264b0c80c0da6bbd4f10403c8a51429a36dd5befac65c6506d0b87ad18168e"; 13 } 14 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/ast/thunderbird-91.0.3.tar.bz2"; 15 locale = "ast"; 16 arch = "linux-x86_64"; 17 - sha256 = "3028d99c36c899ce52306d11b9c26e85266e6793b306627f2c4d4f2eae280024"; 18 } 19 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/be/thunderbird-91.0.3.tar.bz2"; 20 locale = "be"; 21 arch = "linux-x86_64"; 22 - sha256 = "0ca92e3875ea62e50449f576dfb7bb0e892bccd9093d623dc577262a3a386dec"; 23 } 24 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/bg/thunderbird-91.0.3.tar.bz2"; 25 locale = "bg"; 26 arch = "linux-x86_64"; 27 - sha256 = "7c4289991f83cc2b8f6bd57e1f81ca9f49635a7582aba1935737f7dd81fad795"; 28 } 29 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/br/thunderbird-91.0.3.tar.bz2"; 30 locale = "br"; 31 arch = "linux-x86_64"; 32 - sha256 = "d34baf04a9daa69bcb83d8f312faf0436142c2b5850790764628327677c956ee"; 33 } 34 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/ca/thunderbird-91.0.3.tar.bz2"; 35 locale = "ca"; 36 arch = "linux-x86_64"; 37 - sha256 = "ba561ffd34db81a6401754d80f6987da62ff043987a228842b4c4cf2e2008efe"; 38 } 39 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/cak/thunderbird-91.0.3.tar.bz2"; 40 locale = "cak"; 41 arch = "linux-x86_64"; 42 - sha256 = "ec086e9a2709d953df3953d69eae2fe72b219b0191a04e9c8837ae16b6729adb"; 43 } 44 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/cs/thunderbird-91.0.3.tar.bz2"; 45 locale = "cs"; 46 arch = "linux-x86_64"; 47 - sha256 = "960eafc572d6d45f549f295ae861fe6d95c98da159147bc8ef180177261c70bc"; 48 } 49 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/cy/thunderbird-91.0.3.tar.bz2"; 50 locale = "cy"; 51 arch = "linux-x86_64"; 52 - sha256 = "ed664202a59d8f2de0fd8a9e1eb89b55af790316e03b4432a83f0d8356a0d115"; 53 } 54 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/da/thunderbird-91.0.3.tar.bz2"; 55 locale = "da"; 56 arch = "linux-x86_64"; 57 - sha256 = "914f30fe4b271ee3f9842636286411c0d2ceaaa7cd93dab139c45db3090fd9df"; 58 } 59 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/de/thunderbird-91.0.3.tar.bz2"; 60 locale = "de"; 61 arch = "linux-x86_64"; 62 - sha256 = "1d0cecb39dd7e9361cef22705e2d8590d25afc6f0b23c9058a2f19c4a8dccc48"; 63 } 64 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/dsb/thunderbird-91.0.3.tar.bz2"; 65 locale = "dsb"; 66 arch = "linux-x86_64"; 67 - sha256 = "5d857231f6d061b0b7f508801dbbabd872e7048b91b9fb685fa53c211003d0c8"; 68 } 69 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/el/thunderbird-91.0.3.tar.bz2"; 70 locale = "el"; 71 arch = "linux-x86_64"; 72 - sha256 = "4b8353aae1f416acfc39dd8dd62a121bfb4e722da3907e7be433af294e87680a"; 73 } 74 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/en-CA/thunderbird-91.0.3.tar.bz2"; 75 locale = "en-CA"; 76 arch = "linux-x86_64"; 77 - sha256 = "68e404576c3fd4a619a3965298e5198bd507a6f6206c2723eebbb41063163e06"; 78 } 79 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/en-GB/thunderbird-91.0.3.tar.bz2"; 80 locale = "en-GB"; 81 arch = "linux-x86_64"; 82 - sha256 = "06aa97bc593ae38d9cceed6ad91db90edee7d73a0f36310b9cc67b274fa7120b"; 83 } 84 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/en-US/thunderbird-91.0.3.tar.bz2"; 85 locale = "en-US"; 86 arch = "linux-x86_64"; 87 - sha256 = "e16e01e5dfc6f9da50809ee063d3873f9039f68e975a70ecec8de2de07893712"; 88 } 89 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/es-AR/thunderbird-91.0.3.tar.bz2"; 90 locale = "es-AR"; 91 arch = "linux-x86_64"; 92 - sha256 = "313f2ac3b4dad0fb6952d9717cfd957efcd676771f4fca0c89848185bd1b4f9b"; 93 } 94 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/es-ES/thunderbird-91.0.3.tar.bz2"; 95 locale = "es-ES"; 96 arch = "linux-x86_64"; 97 - sha256 = "e6b2b53c901051602f4d1f8827b3daad1783dce24bee856cea8aa7ae4a536ca9"; 98 } 99 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/et/thunderbird-91.0.3.tar.bz2"; 100 locale = "et"; 101 arch = "linux-x86_64"; 102 - sha256 = "4f5801287495d738b7757c85a150e6ac8cb5ef22b056e899b74a26425a2ba165"; 103 } 104 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/eu/thunderbird-91.0.3.tar.bz2"; 105 locale = "eu"; 106 arch = "linux-x86_64"; 107 - sha256 = "b90304636198df5b90965073aee3f333e6f69686ba6ebb2b87f4f8ea57bae123"; 108 } 109 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/fi/thunderbird-91.0.3.tar.bz2"; 110 locale = "fi"; 111 arch = "linux-x86_64"; 112 - sha256 = "0548dd85e75c60e4d6aa46054d548ff2d826ec669607c3f35a4c2010ca2c661b"; 113 } 114 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/fr/thunderbird-91.0.3.tar.bz2"; 115 locale = "fr"; 116 arch = "linux-x86_64"; 117 - sha256 = "1fca39902328c4808e7851f3596ca894d8f9c43c12a4f8795802f325f58b62d5"; 118 } 119 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/fy-NL/thunderbird-91.0.3.tar.bz2"; 120 locale = "fy-NL"; 121 arch = "linux-x86_64"; 122 - sha256 = "1120b79a6ce2a926c8b539aad09e6d574d103880ed0623f6e13ba0013c606310"; 123 } 124 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/ga-IE/thunderbird-91.0.3.tar.bz2"; 125 locale = "ga-IE"; 126 arch = "linux-x86_64"; 127 - sha256 = "67d912e2b4d70b553ff9ad2106beab3cf9495fd24a5e947659dd900f576c515f"; 128 } 129 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/gd/thunderbird-91.0.3.tar.bz2"; 130 locale = "gd"; 131 arch = "linux-x86_64"; 132 - sha256 = "5ce277a93edb95dcb9e645f353d9b48181db8b491303ba24241e9833f9d52a8c"; 133 } 134 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/gl/thunderbird-91.0.3.tar.bz2"; 135 locale = "gl"; 136 arch = "linux-x86_64"; 137 - sha256 = "b57d5a4fb9c14fbdbb6de402d0469d681b2f5fc5a7f8ed51b1defc0da672cb8b"; 138 } 139 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/he/thunderbird-91.0.3.tar.bz2"; 140 locale = "he"; 141 arch = "linux-x86_64"; 142 - sha256 = "cf4fdcce74dcb24ad180f45b31e8165e23ebcedaf28c867fc74e4ac8b79da5dd"; 143 } 144 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/hr/thunderbird-91.0.3.tar.bz2"; 145 locale = "hr"; 146 arch = "linux-x86_64"; 147 - sha256 = "8d26131d28ee06df1ce63eb21db285f752dac4d3ae71d5c2349c76630e6ebd13"; 148 } 149 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/hsb/thunderbird-91.0.3.tar.bz2"; 150 locale = "hsb"; 151 arch = "linux-x86_64"; 152 - sha256 = "7d38fee7c4a897d01f0e2254c5094962a7ae1908f071b32510bae408d3647bbd"; 153 } 154 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/hu/thunderbird-91.0.3.tar.bz2"; 155 locale = "hu"; 156 arch = "linux-x86_64"; 157 - sha256 = "7271548b70d0d378fb191ca2932b7382d9f5dcc4072eae9c4db0e3260558a97d"; 158 } 159 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/hy-AM/thunderbird-91.0.3.tar.bz2"; 160 locale = "hy-AM"; 161 arch = "linux-x86_64"; 162 - sha256 = "06d9de4a86cb0791f2c3ea683a637ec5965f9014c656b142601e9c3753231067"; 163 } 164 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/id/thunderbird-91.0.3.tar.bz2"; 165 locale = "id"; 166 arch = "linux-x86_64"; 167 - sha256 = "51ae3415517df352525750a4926e4587f5edce09f88294670a7cc5c5fa830ef4"; 168 } 169 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/is/thunderbird-91.0.3.tar.bz2"; 170 locale = "is"; 171 arch = "linux-x86_64"; 172 - sha256 = "d7e9406a3a782bf0e4b80caeb42c1607fa3d45e9982550dd17ed1b7cb7279950"; 173 } 174 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/it/thunderbird-91.0.3.tar.bz2"; 175 locale = "it"; 176 arch = "linux-x86_64"; 177 - sha256 = "7d6005c6017f87e0374833106de045f9115cbc3ec1825429315a928f3ad19db1"; 178 } 179 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/ja/thunderbird-91.0.3.tar.bz2"; 180 locale = "ja"; 181 arch = "linux-x86_64"; 182 - sha256 = "7930323cecd2002b37baabf771f1f9a4be304d7b84ce9dac4bab6856d7f9f1d3"; 183 } 184 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/ka/thunderbird-91.0.3.tar.bz2"; 185 locale = "ka"; 186 arch = "linux-x86_64"; 187 - sha256 = "10a9e2a23bcde3c94f72701849e3ca0833cc9dbcb821eea65bf412a5feab5ddb"; 188 } 189 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/kab/thunderbird-91.0.3.tar.bz2"; 190 locale = "kab"; 191 arch = "linux-x86_64"; 192 - sha256 = "12e1ccc30b98bb9a363ab824187c5504fd2c14cf0891455681730968cb7e8126"; 193 } 194 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/kk/thunderbird-91.0.3.tar.bz2"; 195 locale = "kk"; 196 arch = "linux-x86_64"; 197 - sha256 = "3de1bbb675ceeff35e1a8e581e8c6a200dd68e97bb9e363e5d6b42fd6a9420c9"; 198 } 199 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/ko/thunderbird-91.0.3.tar.bz2"; 200 locale = "ko"; 201 arch = "linux-x86_64"; 202 - sha256 = "a7b011c57df5ee00dd80a6ff9df50f957190c14156e8e3557480177a73ac2379"; 203 } 204 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/lt/thunderbird-91.0.3.tar.bz2"; 205 locale = "lt"; 206 arch = "linux-x86_64"; 207 - sha256 = "fc59f081a579f837afed05b394a8f503f8c24a10c282aaacc522f3fc873281e1"; 208 } 209 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/lv/thunderbird-91.0.3.tar.bz2"; 210 locale = "lv"; 211 arch = "linux-x86_64"; 212 - sha256 = "c2e43c9f3bcd1889f40917238b6da71919c4ed248ab507bb71d74882d7ea2e27"; 213 } 214 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/ms/thunderbird-91.0.3.tar.bz2"; 215 locale = "ms"; 216 arch = "linux-x86_64"; 217 - sha256 = "6bf1c022f9384894e4047d7d96e3236cf92427ba6de99a0d650e3da985ff7698"; 218 } 219 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/nb-NO/thunderbird-91.0.3.tar.bz2"; 220 locale = "nb-NO"; 221 arch = "linux-x86_64"; 222 - sha256 = "82797bc5227b429a51801f60edf485b62c774be19c9befc055d695f9e4ba4e47"; 223 } 224 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/nl/thunderbird-91.0.3.tar.bz2"; 225 locale = "nl"; 226 arch = "linux-x86_64"; 227 - sha256 = "0e07d3cea432f914d17016998d5a6cebfe43549e1fb4599f0a92cc73c265fde4"; 228 } 229 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/nn-NO/thunderbird-91.0.3.tar.bz2"; 230 locale = "nn-NO"; 231 arch = "linux-x86_64"; 232 - sha256 = "70dc2d1d427bc93105fc6cba79c27e9f5062a6a9572c5adbe55bad737e359bbc"; 233 } 234 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/pa-IN/thunderbird-91.0.3.tar.bz2"; 235 locale = "pa-IN"; 236 arch = "linux-x86_64"; 237 - sha256 = "2e07c0661e29e35bc42360894dbc5d4ca0313a3da9f2b96ddcc82936665339e2"; 238 } 239 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/pl/thunderbird-91.0.3.tar.bz2"; 240 locale = "pl"; 241 arch = "linux-x86_64"; 242 - sha256 = "5f16cafaa287f67dd33eebd2f0cd3d128b0d0c7119c0721de8e5434be4dbecd0"; 243 } 244 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/pt-BR/thunderbird-91.0.3.tar.bz2"; 245 locale = "pt-BR"; 246 arch = "linux-x86_64"; 247 - sha256 = "6e1eb47c6c794f27d7cbb442954450fafc5d22a17c6c4e53dad80d38e8e4a885"; 248 } 249 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/pt-PT/thunderbird-91.0.3.tar.bz2"; 250 locale = "pt-PT"; 251 arch = "linux-x86_64"; 252 - sha256 = "606df5acad3221f4f9eaf9da7c0b6ad30bd8b87ea71dae30b93796342315ea51"; 253 } 254 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/rm/thunderbird-91.0.3.tar.bz2"; 255 locale = "rm"; 256 arch = "linux-x86_64"; 257 - sha256 = "efe31e78f7e6a6351366186e608c680533c89c7947575792b05ecf706727af89"; 258 } 259 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/ro/thunderbird-91.0.3.tar.bz2"; 260 locale = "ro"; 261 arch = "linux-x86_64"; 262 - sha256 = "a9c829b1e367ea7ce0176901fd07e6c5f67c8d5d178a7e998f01859c53f59ecf"; 263 } 264 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/ru/thunderbird-91.0.3.tar.bz2"; 265 locale = "ru"; 266 arch = "linux-x86_64"; 267 - sha256 = "94c4dc9fbacb07942978decabd0f9e26fe5183c671f865c6a93e906aebbc0254"; 268 } 269 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/sk/thunderbird-91.0.3.tar.bz2"; 270 locale = "sk"; 271 arch = "linux-x86_64"; 272 - sha256 = "3a52978887a7c52d37704f264f8ec640f6110ea64b568995794ce62b6ae86228"; 273 } 274 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/sl/thunderbird-91.0.3.tar.bz2"; 275 locale = "sl"; 276 arch = "linux-x86_64"; 277 - sha256 = "c2b3b28c3bdfa969af465a9aa5dc75334f7372a6317df6075ba7d594f52c0294"; 278 } 279 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/sq/thunderbird-91.0.3.tar.bz2"; 280 locale = "sq"; 281 arch = "linux-x86_64"; 282 - sha256 = "5524ce37c39018b9b60034ca06b3cd5f862149b7885733af8f840e1b39f13865"; 283 } 284 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/sr/thunderbird-91.0.3.tar.bz2"; 285 locale = "sr"; 286 arch = "linux-x86_64"; 287 - sha256 = "8cbfac96a6ce6d35dd68d6d4cf9fcafc146e69a81bc8144f6407621fe992fc1a"; 288 } 289 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/sv-SE/thunderbird-91.0.3.tar.bz2"; 290 locale = "sv-SE"; 291 arch = "linux-x86_64"; 292 - sha256 = "6887854f7efa083f25a21874becd7e34c4b57a35b3898a790ad9988415f143e2"; 293 } 294 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/th/thunderbird-91.0.3.tar.bz2"; 295 locale = "th"; 296 arch = "linux-x86_64"; 297 - sha256 = "0e220caaf692550e8424c64bafbc3b9f5efb608fa8dc54f007c9e378e1bc9ec6"; 298 } 299 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/tr/thunderbird-91.0.3.tar.bz2"; 300 locale = "tr"; 301 arch = "linux-x86_64"; 302 - sha256 = "7c0d780968a1dab36372320ca47ea812e2b522074ba124f29472026d5ee88f73"; 303 } 304 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/uk/thunderbird-91.0.3.tar.bz2"; 305 locale = "uk"; 306 arch = "linux-x86_64"; 307 - sha256 = "34c1e098b7746bfeb531886463114479278d98de450136d49c594f30f537a07e"; 308 } 309 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/uz/thunderbird-91.0.3.tar.bz2"; 310 locale = "uz"; 311 arch = "linux-x86_64"; 312 - sha256 = "edeee2d40fe634bc34733511895f1345d8b4e0eed49fa5ef8f5598245884c20d"; 313 } 314 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/vi/thunderbird-91.0.3.tar.bz2"; 315 locale = "vi"; 316 arch = "linux-x86_64"; 317 - sha256 = "2d51311b5e8811254a1a8b68236f60029e3ac8f3528c5d46bef0040917b520f6"; 318 } 319 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/zh-CN/thunderbird-91.0.3.tar.bz2"; 320 locale = "zh-CN"; 321 arch = "linux-x86_64"; 322 - sha256 = "23a97b03c84ba34164a2ea3a80444040da404bcbf702c171e45a12bf1220623f"; 323 } 324 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-x86_64/zh-TW/thunderbird-91.0.3.tar.bz2"; 325 locale = "zh-TW"; 326 arch = "linux-x86_64"; 327 - sha256 = "66e3a359752d1a1dabb881189e9a898729f273b420c57c94c5bfa459967cb364"; 328 } 329 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/af/thunderbird-91.0.3.tar.bz2"; 330 locale = "af"; 331 arch = "linux-i686"; 332 - sha256 = "369393b32dd642c757c86f793be6acbf5d9b2cb4e8b893e76cbc422964ef5df2"; 333 } 334 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/ar/thunderbird-91.0.3.tar.bz2"; 335 locale = "ar"; 336 arch = "linux-i686"; 337 - sha256 = "c1cf67bf674031da9c0d6d9aa76c86acb89a6227b029f9b0b80f555d6bb46a4f"; 338 } 339 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/ast/thunderbird-91.0.3.tar.bz2"; 340 locale = "ast"; 341 arch = "linux-i686"; 342 - sha256 = "7eb25e0238fcbcd779bd1c0ccb6193750f88aae4eec8544b0ca98734c9253259"; 343 } 344 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/be/thunderbird-91.0.3.tar.bz2"; 345 locale = "be"; 346 arch = "linux-i686"; 347 - sha256 = "8ae8e53c28005eefd99ea21109fd100359a7a157a72558882781b4fa28420adb"; 348 } 349 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/bg/thunderbird-91.0.3.tar.bz2"; 350 locale = "bg"; 351 arch = "linux-i686"; 352 - sha256 = "ea01a55258e25c897bf5792f0001bfc332aabefbc09ef24d5cc145831ab3a48a"; 353 } 354 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/br/thunderbird-91.0.3.tar.bz2"; 355 locale = "br"; 356 arch = "linux-i686"; 357 - sha256 = "cdef12d70df4a407adbb8c9f370daed965d20b243433942cabffecdb3a225737"; 358 } 359 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/ca/thunderbird-91.0.3.tar.bz2"; 360 locale = "ca"; 361 arch = "linux-i686"; 362 - sha256 = "01864d608a98d179cdd2d67480c650c4764d883b4b6a6d9d73256112d5eccffe"; 363 } 364 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/cak/thunderbird-91.0.3.tar.bz2"; 365 locale = "cak"; 366 arch = "linux-i686"; 367 - sha256 = "968fdc7d1feb0247f159489e6600a8e18ef1715c355418e7341de193da418d26"; 368 } 369 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/cs/thunderbird-91.0.3.tar.bz2"; 370 locale = "cs"; 371 arch = "linux-i686"; 372 - sha256 = "fbd819e3f5a3be0d0624472b902af1f29c18cf3c9e524826882efacedc6965fe"; 373 } 374 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/cy/thunderbird-91.0.3.tar.bz2"; 375 locale = "cy"; 376 arch = "linux-i686"; 377 - sha256 = "f2ed1bc1544046b30ecffaeb62ec09328da115eb7d5da9ae1bada33960624917"; 378 } 379 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/da/thunderbird-91.0.3.tar.bz2"; 380 locale = "da"; 381 arch = "linux-i686"; 382 - sha256 = "f1b7fcb4b904bab9b1e669505d477225b5178dcf3b0ab7ebae5d45092284b04b"; 383 } 384 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/de/thunderbird-91.0.3.tar.bz2"; 385 locale = "de"; 386 arch = "linux-i686"; 387 - sha256 = "8f8c81448ec9c82d18d764ba323577687381d67b839a804eec6a48709866a334"; 388 } 389 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/dsb/thunderbird-91.0.3.tar.bz2"; 390 locale = "dsb"; 391 arch = "linux-i686"; 392 - sha256 = "8ff175908da6d2032f47d0a74c58576b1552c0e9bf304b678c66c43f9e282289"; 393 } 394 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/el/thunderbird-91.0.3.tar.bz2"; 395 locale = "el"; 396 arch = "linux-i686"; 397 - sha256 = "da644e9386ff3526a9332869a240ed07b15f40c57a90eaa0678f1d5cad58bc79"; 398 } 399 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/en-CA/thunderbird-91.0.3.tar.bz2"; 400 locale = "en-CA"; 401 arch = "linux-i686"; 402 - sha256 = "fa5fbc0e60a93ec657a9c8a8140c1318423c5a58e1a6df70706095347a150780"; 403 } 404 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/en-GB/thunderbird-91.0.3.tar.bz2"; 405 locale = "en-GB"; 406 arch = "linux-i686"; 407 - sha256 = "db11e5ce13b48cb2d8456c2c542eb24adc51fb6d0151b49459b894266fb62b4d"; 408 } 409 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/en-US/thunderbird-91.0.3.tar.bz2"; 410 locale = "en-US"; 411 arch = "linux-i686"; 412 - sha256 = "b76a3db6b41ed843471fdec8394b58ddfd231d6ff7575ebe650f0c5fa91535e7"; 413 } 414 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/es-AR/thunderbird-91.0.3.tar.bz2"; 415 locale = "es-AR"; 416 arch = "linux-i686"; 417 - sha256 = "f1182cbc6f3760555ba41a4d2db415519f2a2f2c6c7c6abde94f6c72b5864a52"; 418 } 419 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/es-ES/thunderbird-91.0.3.tar.bz2"; 420 locale = "es-ES"; 421 arch = "linux-i686"; 422 - sha256 = "19e538e90ee435ee29e347720fea42eca5533e4025ef285820c18c62e981023a"; 423 } 424 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/et/thunderbird-91.0.3.tar.bz2"; 425 locale = "et"; 426 arch = "linux-i686"; 427 - sha256 = "c3ca7abbd340306b30ed4a60c8f238d18d06be11fe3ffaa9b1bb917f629bdd31"; 428 } 429 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/eu/thunderbird-91.0.3.tar.bz2"; 430 locale = "eu"; 431 arch = "linux-i686"; 432 - sha256 = "27c4d06f073e52c631a46174eff52b4dbc8db509f08e1e394a46552a56a8798b"; 433 } 434 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/fi/thunderbird-91.0.3.tar.bz2"; 435 locale = "fi"; 436 arch = "linux-i686"; 437 - sha256 = "57ef2dff097e9cb32ffd4540925c798e13174ee3f6d08473c745952cc2efcf71"; 438 } 439 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/fr/thunderbird-91.0.3.tar.bz2"; 440 locale = "fr"; 441 arch = "linux-i686"; 442 - sha256 = "3e4bf7cef09c1c2f787ff37f07fb3284b03d5b579330b6cb0fd1a3d9f5ac137f"; 443 } 444 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/fy-NL/thunderbird-91.0.3.tar.bz2"; 445 locale = "fy-NL"; 446 arch = "linux-i686"; 447 - sha256 = "867e4f64830ddd7918fd6f1e1f5a4814b174d4ac21ce1755691493b852732742"; 448 } 449 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/ga-IE/thunderbird-91.0.3.tar.bz2"; 450 locale = "ga-IE"; 451 arch = "linux-i686"; 452 - sha256 = "6e5bc42c2e923d37c843b1b971a8afccdaf1de3b271bdde003f58aa2c43c09c2"; 453 } 454 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/gd/thunderbird-91.0.3.tar.bz2"; 455 locale = "gd"; 456 arch = "linux-i686"; 457 - sha256 = "d0138ebe2ae5550f5d911d6ca8f0a27aa27338de7cd948b0665ec3e0cdee0947"; 458 } 459 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/gl/thunderbird-91.0.3.tar.bz2"; 460 locale = "gl"; 461 arch = "linux-i686"; 462 - sha256 = "233b0fc6394a3dd6c96fa3fd800e4254c5cff026bc6d91e53d872f46de06895a"; 463 } 464 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/he/thunderbird-91.0.3.tar.bz2"; 465 locale = "he"; 466 arch = "linux-i686"; 467 - sha256 = "73b9546fb5b7a98be1f4431b374e0ebe59557a765747e04688b0a0319b30c845"; 468 } 469 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/hr/thunderbird-91.0.3.tar.bz2"; 470 locale = "hr"; 471 arch = "linux-i686"; 472 - sha256 = "c500cf6adb60131010054d5f99976559ac2f7f2e83799715c5de0e62765df71c"; 473 } 474 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/hsb/thunderbird-91.0.3.tar.bz2"; 475 locale = "hsb"; 476 arch = "linux-i686"; 477 - sha256 = "e67b1e15c968334476ec5775e68893dcffd1dae7ce012ef95a9c97edd506be3b"; 478 } 479 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/hu/thunderbird-91.0.3.tar.bz2"; 480 locale = "hu"; 481 arch = "linux-i686"; 482 - sha256 = "7b452c3dcf394c04f534c03f55f5fd0cad1c4026a818676e85ac57a988f6ca3f"; 483 } 484 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/hy-AM/thunderbird-91.0.3.tar.bz2"; 485 locale = "hy-AM"; 486 arch = "linux-i686"; 487 - sha256 = "36b89d8d88a80fc1964eb56895df0da4e75ec64837fdca3cfd0681ec14375889"; 488 } 489 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/id/thunderbird-91.0.3.tar.bz2"; 490 locale = "id"; 491 arch = "linux-i686"; 492 - sha256 = "f91517767696f5b248cdea262dfaf7b7a2fb6a0542481cb1ceba6360c0aa5497"; 493 } 494 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/is/thunderbird-91.0.3.tar.bz2"; 495 locale = "is"; 496 arch = "linux-i686"; 497 - sha256 = "427f4e82a60587ebfe30987c21731840010dcb92471814501237ed5efe78e866"; 498 } 499 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/it/thunderbird-91.0.3.tar.bz2"; 500 locale = "it"; 501 arch = "linux-i686"; 502 - sha256 = "92f3e2bda56bdd4fccf431103ecfbfd897959e3bc2c15ef64fb1bafe3f8ff15c"; 503 } 504 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/ja/thunderbird-91.0.3.tar.bz2"; 505 locale = "ja"; 506 arch = "linux-i686"; 507 - sha256 = "9fb9f0f323246dc94045c6bb09c74d98bfba1005b8b0e68bca843ef34d363b73"; 508 } 509 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/ka/thunderbird-91.0.3.tar.bz2"; 510 locale = "ka"; 511 arch = "linux-i686"; 512 - sha256 = "5b4d7c8a6d8818fb9e336e0b595139138be5a4fedcbafa0895a62aceb8ef6007"; 513 } 514 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/kab/thunderbird-91.0.3.tar.bz2"; 515 locale = "kab"; 516 arch = "linux-i686"; 517 - sha256 = "7661d1af8b25f727219f75ddc0e9c5c75f36d2a84b2af27ac09b548767f01c5b"; 518 } 519 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/kk/thunderbird-91.0.3.tar.bz2"; 520 locale = "kk"; 521 arch = "linux-i686"; 522 - sha256 = "a0db8097caceb8f3d58e4c77ee137790b087c569587a06c78cbd5aa2d9b2819d"; 523 } 524 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/ko/thunderbird-91.0.3.tar.bz2"; 525 locale = "ko"; 526 arch = "linux-i686"; 527 - sha256 = "5352f1d9fdff63913c137aa54b5d16893a374c0f1ca245f6de3a4f17ed7d8f47"; 528 } 529 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/lt/thunderbird-91.0.3.tar.bz2"; 530 locale = "lt"; 531 arch = "linux-i686"; 532 - sha256 = "a3bc0caeb2c1c3f81e3d705186ccc83e831c2f094742e93304483cc61666e3ad"; 533 } 534 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/lv/thunderbird-91.0.3.tar.bz2"; 535 locale = "lv"; 536 arch = "linux-i686"; 537 - sha256 = "4bf8b846a0ffa95a3e74a9dc7a05f5283abdb907529dac2ea346570d7e5e4d97"; 538 } 539 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/ms/thunderbird-91.0.3.tar.bz2"; 540 locale = "ms"; 541 arch = "linux-i686"; 542 - sha256 = "4d0678116562ab28a7a4bd1ca39b94f87e2f09d79acf2baac51b69c179cf8207"; 543 } 544 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/nb-NO/thunderbird-91.0.3.tar.bz2"; 545 locale = "nb-NO"; 546 arch = "linux-i686"; 547 - sha256 = "4f3e467cb652e2c92631723ce599716f6e1b6ba9137aa2fd51bfdda2016b75b8"; 548 } 549 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/nl/thunderbird-91.0.3.tar.bz2"; 550 locale = "nl"; 551 arch = "linux-i686"; 552 - sha256 = "522186f15b6ff574e8b5a7c64d7f376d2bfcd148fb54b5faddb5647a23703076"; 553 } 554 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/nn-NO/thunderbird-91.0.3.tar.bz2"; 555 locale = "nn-NO"; 556 arch = "linux-i686"; 557 - sha256 = "3dc1dadd4cb1af7bb11b4c77ebab20a7c43bd75639a866fcdc3a51099e078b0c"; 558 } 559 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/pa-IN/thunderbird-91.0.3.tar.bz2"; 560 locale = "pa-IN"; 561 arch = "linux-i686"; 562 - sha256 = "586e6a3fd41903dd4eef357207839d195c1eb7e40b152baa2394880db539499a"; 563 } 564 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/pl/thunderbird-91.0.3.tar.bz2"; 565 locale = "pl"; 566 arch = "linux-i686"; 567 - sha256 = "2a064b763ae9b0b11d266cf413cec98f00ab6d350f44469a2dea4713ba17521a"; 568 } 569 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/pt-BR/thunderbird-91.0.3.tar.bz2"; 570 locale = "pt-BR"; 571 arch = "linux-i686"; 572 - sha256 = "a897c43eccb7c91732e1fa623ff675877de014a176119ea049e9eadc579e59e9"; 573 } 574 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/pt-PT/thunderbird-91.0.3.tar.bz2"; 575 locale = "pt-PT"; 576 arch = "linux-i686"; 577 - sha256 = "4aa4f70dad8116e2f6fe4dbd6c7bf7cf3c090b6f0e776dfde34c594bc785f33b"; 578 } 579 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/rm/thunderbird-91.0.3.tar.bz2"; 580 locale = "rm"; 581 arch = "linux-i686"; 582 - sha256 = "f437ac48a9888abc4c63aa14c1e5561ea06a3e0287596fdae10f0f3dd071b0e6"; 583 } 584 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/ro/thunderbird-91.0.3.tar.bz2"; 585 locale = "ro"; 586 arch = "linux-i686"; 587 - sha256 = "dfc376eb4baac472c634b4b25c43f6eaebb27c98bbda68a5fbe905b545bcf858"; 588 } 589 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/ru/thunderbird-91.0.3.tar.bz2"; 590 locale = "ru"; 591 arch = "linux-i686"; 592 - sha256 = "3707b961d3b42b23a3883ebf091f7456521257f16fbf906aeda436e85019679e"; 593 } 594 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/sk/thunderbird-91.0.3.tar.bz2"; 595 locale = "sk"; 596 arch = "linux-i686"; 597 - sha256 = "6361c53e1908c308929054a87a276e5a43d2eefda75edc4991e845e4055a59c7"; 598 } 599 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/sl/thunderbird-91.0.3.tar.bz2"; 600 locale = "sl"; 601 arch = "linux-i686"; 602 - sha256 = "de5d84cacd50edd00184316d9122e881217017e78f0a73a79b745b130c58fb6d"; 603 } 604 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/sq/thunderbird-91.0.3.tar.bz2"; 605 locale = "sq"; 606 arch = "linux-i686"; 607 - sha256 = "2ab70162fd53943f6a46c1c9459dadcd6e7ca5ee19c1bca161368739c74068b1"; 608 } 609 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/sr/thunderbird-91.0.3.tar.bz2"; 610 locale = "sr"; 611 arch = "linux-i686"; 612 - sha256 = "4baaa9d43c1f4c9db85b2a12fa52cbe2d2807b5781ac5c7287901153c1b6c81f"; 613 } 614 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/sv-SE/thunderbird-91.0.3.tar.bz2"; 615 locale = "sv-SE"; 616 arch = "linux-i686"; 617 - sha256 = "6151beb596c9742345ee749239e1fcf983feaa8bebc06908fbfefbe169d8cb3e"; 618 } 619 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/th/thunderbird-91.0.3.tar.bz2"; 620 locale = "th"; 621 arch = "linux-i686"; 622 - sha256 = "e063338beec45e1d4ec69ac4c3502df243d98802dd1ce0df28634e003e5a0477"; 623 } 624 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/tr/thunderbird-91.0.3.tar.bz2"; 625 locale = "tr"; 626 arch = "linux-i686"; 627 - sha256 = "38be40e163b0b0426318d20dca127f257861441e29b9d282f2fa352cfa2c2ccc"; 628 } 629 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/uk/thunderbird-91.0.3.tar.bz2"; 630 locale = "uk"; 631 arch = "linux-i686"; 632 - sha256 = "ac1bdb90a15bc245b55e0dcda57e381ce9521d0fbcac240a55806c5ee859d90f"; 633 } 634 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/uz/thunderbird-91.0.3.tar.bz2"; 635 locale = "uz"; 636 arch = "linux-i686"; 637 - sha256 = "584cd95cc34193c868949d9aac3213a779cdedde14f6f3088657ab61d32197c7"; 638 } 639 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/vi/thunderbird-91.0.3.tar.bz2"; 640 locale = "vi"; 641 arch = "linux-i686"; 642 - sha256 = "1725bbed0bba4e6c3fa7a44df700c4a04b47eaffda3189b8b6efff33d6e30c3a"; 643 } 644 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/zh-CN/thunderbird-91.0.3.tar.bz2"; 645 locale = "zh-CN"; 646 arch = "linux-i686"; 647 - sha256 = "9afeaf173047c708595e0e58cbd6cdbd8a55b390420e100f4aea33597803c01a"; 648 } 649 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.0.3/linux-i686/zh-TW/thunderbird-91.0.3.tar.bz2"; 650 locale = "zh-TW"; 651 arch = "linux-i686"; 652 - sha256 = "60367168ee3e92774b040f82b5ec733be00c958ac6c2fa07f7821020a571158f"; 653 } 654 ]; 655 }
··· 1 { 2 + version = "91.1.0"; 3 sources = [ 4 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/af/thunderbird-91.1.0.tar.bz2"; 5 locale = "af"; 6 arch = "linux-x86_64"; 7 + sha256 = "6b355e9b1e5c467b51aecf697d776014f52a4b71c3b67afae34e64cb8af4155c"; 8 } 9 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/ar/thunderbird-91.1.0.tar.bz2"; 10 locale = "ar"; 11 arch = "linux-x86_64"; 12 + sha256 = "1fa1acd3b21db46e70ad0295ed95be4b3839b8029de09a42d11a8523df0e4573"; 13 } 14 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/ast/thunderbird-91.1.0.tar.bz2"; 15 locale = "ast"; 16 arch = "linux-x86_64"; 17 + sha256 = "aa3c7ba15bd18ab420c028571fa472b25d4ffc11f5789e4330d49a787442a2f9"; 18 } 19 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/be/thunderbird-91.1.0.tar.bz2"; 20 locale = "be"; 21 arch = "linux-x86_64"; 22 + sha256 = "24a39668aaadec7a77bd75dbb9174d4865776d55c33d3b6a8fd63cb6589a176c"; 23 } 24 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/bg/thunderbird-91.1.0.tar.bz2"; 25 locale = "bg"; 26 arch = "linux-x86_64"; 27 + sha256 = "aed38cd5384c6e7df097fca8b37e866e0e432ea37f636c2306d2c1534b1013a7"; 28 } 29 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/br/thunderbird-91.1.0.tar.bz2"; 30 locale = "br"; 31 arch = "linux-x86_64"; 32 + sha256 = "6e8558c74d7bd0fc827bae6fc948d20a8bf3a8cd1b60784bc9e45c101b781bf2"; 33 } 34 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/ca/thunderbird-91.1.0.tar.bz2"; 35 locale = "ca"; 36 arch = "linux-x86_64"; 37 + sha256 = "35f23617e5a62dbb2732688add158818c9f33d1c38555c1035ebdf1511a58ba4"; 38 } 39 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/cak/thunderbird-91.1.0.tar.bz2"; 40 locale = "cak"; 41 arch = "linux-x86_64"; 42 + sha256 = "6029b2ec2581997916575e73e88c01068f48a6b72e606882936be5ee4d6bb69a"; 43 } 44 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/cs/thunderbird-91.1.0.tar.bz2"; 45 locale = "cs"; 46 arch = "linux-x86_64"; 47 + sha256 = "6e7d2c6fdf864c7a9951f805a867c8d2b300d31f011e8e36e7f914c269ace27f"; 48 } 49 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/cy/thunderbird-91.1.0.tar.bz2"; 50 locale = "cy"; 51 arch = "linux-x86_64"; 52 + sha256 = "7933796c5db473ca10f3633ca8f4d7d8fc6b8042e5fab2c18e45a0f1cfe542cd"; 53 } 54 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/da/thunderbird-91.1.0.tar.bz2"; 55 locale = "da"; 56 arch = "linux-x86_64"; 57 + sha256 = "fbce1763012fbb3395668cc88cd9562ca7cb19ecaa0f4eee81def9983106b97d"; 58 } 59 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/de/thunderbird-91.1.0.tar.bz2"; 60 locale = "de"; 61 arch = "linux-x86_64"; 62 + sha256 = "8e62c8f447cf509b31f4f54bd8537d8ff9e525ba065e225a1e1c0acdadff0d3e"; 63 } 64 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/dsb/thunderbird-91.1.0.tar.bz2"; 65 locale = "dsb"; 66 arch = "linux-x86_64"; 67 + sha256 = "4c3064d94f70ed5d80ee091127de862f700904c7ea267a9f225d3e770472d0cc"; 68 } 69 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/el/thunderbird-91.1.0.tar.bz2"; 70 locale = "el"; 71 arch = "linux-x86_64"; 72 + sha256 = "5307684da1676cec690ecbd47159d99f8034f4f1dd7f2785bbd673b4bde88760"; 73 } 74 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/en-CA/thunderbird-91.1.0.tar.bz2"; 75 locale = "en-CA"; 76 arch = "linux-x86_64"; 77 + sha256 = "a411b006a7589c7798cf6e23d32c1096c8587904b8dec0c77c59a4864d94d077"; 78 } 79 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/en-GB/thunderbird-91.1.0.tar.bz2"; 80 locale = "en-GB"; 81 arch = "linux-x86_64"; 82 + sha256 = "430b01b92d52940bfc37f5d6179da4cddf36884b3b26ece298a24b7743f72833"; 83 } 84 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/en-US/thunderbird-91.1.0.tar.bz2"; 85 locale = "en-US"; 86 arch = "linux-x86_64"; 87 + sha256 = "d19eb0214c17b9738124fd196cfc64e8c98df092d7777e59ebff2fd6304ccdad"; 88 } 89 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/es-AR/thunderbird-91.1.0.tar.bz2"; 90 locale = "es-AR"; 91 arch = "linux-x86_64"; 92 + sha256 = "1614a42f7cff6e7c8d82cb7be3cbb13b056242206fb4e9b4765576d1a048c764"; 93 } 94 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/es-ES/thunderbird-91.1.0.tar.bz2"; 95 locale = "es-ES"; 96 arch = "linux-x86_64"; 97 + sha256 = "36fa6d30f6a743fba64cb3c7087143d9ba270b75b9c68e2bd9f305c0dba72a36"; 98 } 99 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/et/thunderbird-91.1.0.tar.bz2"; 100 locale = "et"; 101 arch = "linux-x86_64"; 102 + sha256 = "c3ccde17967aca822bf70ad836c412315c4f8315126d000369344e19d3f5e4f5"; 103 } 104 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/eu/thunderbird-91.1.0.tar.bz2"; 105 locale = "eu"; 106 arch = "linux-x86_64"; 107 + sha256 = "799a10b1d0d59087dcbc36ea584e7b5bd0bf6e824b8b54fd4805693a86d8a5eb"; 108 } 109 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/fi/thunderbird-91.1.0.tar.bz2"; 110 locale = "fi"; 111 arch = "linux-x86_64"; 112 + sha256 = "9d4ff3871c76453ee24ecca614c2b3ee74ccec34653758cb0d6814c6cb880cf2"; 113 } 114 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/fr/thunderbird-91.1.0.tar.bz2"; 115 locale = "fr"; 116 arch = "linux-x86_64"; 117 + sha256 = "8ecd58d5e078b3764805962a5b79c34cd967b671e83bf1d4eb986dbb6a0ce01f"; 118 } 119 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/fy-NL/thunderbird-91.1.0.tar.bz2"; 120 locale = "fy-NL"; 121 arch = "linux-x86_64"; 122 + sha256 = "0f06c52b5acb30787df11994c816bacbb639d52f69490ce0d14f1dcea3393522"; 123 } 124 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/ga-IE/thunderbird-91.1.0.tar.bz2"; 125 locale = "ga-IE"; 126 arch = "linux-x86_64"; 127 + sha256 = "ed49900c65dcc82db483f6ed25aa84d8df4ac2ef961857e2e04581a39fd2614c"; 128 } 129 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/gd/thunderbird-91.1.0.tar.bz2"; 130 locale = "gd"; 131 arch = "linux-x86_64"; 132 + sha256 = "a5c60e5ec859ec7b3f3c5415e2aadbe0d934808c3ed2fd05832bdba9100f3906"; 133 } 134 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/gl/thunderbird-91.1.0.tar.bz2"; 135 locale = "gl"; 136 arch = "linux-x86_64"; 137 + sha256 = "952b19e3c2b228102340803095c5c3854f1e726bf3bde05a5a5706cd536f6dfb"; 138 } 139 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/he/thunderbird-91.1.0.tar.bz2"; 140 locale = "he"; 141 arch = "linux-x86_64"; 142 + sha256 = "33121f9612d938b8f8dc040cfff99c6e76db956bf5cbd8823e8ec5488d6fb154"; 143 } 144 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/hr/thunderbird-91.1.0.tar.bz2"; 145 locale = "hr"; 146 arch = "linux-x86_64"; 147 + sha256 = "62060cc1b62831543bab9d8d6e63d8cc8ec755e51b463adf3823987828037196"; 148 } 149 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/hsb/thunderbird-91.1.0.tar.bz2"; 150 locale = "hsb"; 151 arch = "linux-x86_64"; 152 + sha256 = "24f8af584f7f882a2a6e80ef704e58fdf1893c4690eaa9b9a6cc03fc786c6865"; 153 } 154 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/hu/thunderbird-91.1.0.tar.bz2"; 155 locale = "hu"; 156 arch = "linux-x86_64"; 157 + sha256 = "33b17c2920312de96f9e7158b9659ab5afe8fdd09454b535b2b84f72e9797669"; 158 } 159 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/hy-AM/thunderbird-91.1.0.tar.bz2"; 160 locale = "hy-AM"; 161 arch = "linux-x86_64"; 162 + sha256 = "608cbb5ce32eef21489000f92857ac45e73adbf618f44e7fc36d8d323432504c"; 163 } 164 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/id/thunderbird-91.1.0.tar.bz2"; 165 locale = "id"; 166 arch = "linux-x86_64"; 167 + sha256 = "29e8a54b74a6ea8e8eed88b00c833bd6b6e90c9da62090a7162642627c04cd25"; 168 } 169 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/is/thunderbird-91.1.0.tar.bz2"; 170 locale = "is"; 171 arch = "linux-x86_64"; 172 + sha256 = "5d8fc62ba40847027b9dc497294fd4a6a1ca34b1aadb934388d32942f0e47b47"; 173 } 174 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/it/thunderbird-91.1.0.tar.bz2"; 175 locale = "it"; 176 arch = "linux-x86_64"; 177 + sha256 = "f5f0b1101e4ac664af9b4acf63d40d9cd1109653ce4f397a22f0d61f13576261"; 178 } 179 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/ja/thunderbird-91.1.0.tar.bz2"; 180 locale = "ja"; 181 arch = "linux-x86_64"; 182 + sha256 = "7be97e12f05418cb82d86731130f0c2ebfc0c8aacc7f4120be2ec11d53b5980d"; 183 } 184 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/ka/thunderbird-91.1.0.tar.bz2"; 185 locale = "ka"; 186 arch = "linux-x86_64"; 187 + sha256 = "47438a6fa2bad17d57f90fb083f70ec023d65a9a344fd4ffa137cec9ceb1b29d"; 188 } 189 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/kab/thunderbird-91.1.0.tar.bz2"; 190 locale = "kab"; 191 arch = "linux-x86_64"; 192 + sha256 = "0037b1e8514c25fcbd05fb8dbb66880cbbf22d2bee443d14cca4acb3ef994982"; 193 } 194 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/kk/thunderbird-91.1.0.tar.bz2"; 195 locale = "kk"; 196 arch = "linux-x86_64"; 197 + sha256 = "749e22fb529f7d710a6a2ebeae9eb5019fad8cfda8f6678da9749bb2709fccd5"; 198 } 199 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/ko/thunderbird-91.1.0.tar.bz2"; 200 locale = "ko"; 201 arch = "linux-x86_64"; 202 + sha256 = "d69205bc220de204535569d058230b9888d58cae8f8c44ff1fcec78a6443223a"; 203 } 204 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/lt/thunderbird-91.1.0.tar.bz2"; 205 locale = "lt"; 206 arch = "linux-x86_64"; 207 + sha256 = "8d670513f40d04e73cab28bf2cbed5865c11c9ca22abd7b0c7f8e823e0d1553a"; 208 } 209 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/lv/thunderbird-91.1.0.tar.bz2"; 210 locale = "lv"; 211 arch = "linux-x86_64"; 212 + sha256 = "1e8f6b5189b289b7538b4d49ab79e384f721c90279dbafb74fa797eed3144a00"; 213 } 214 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/ms/thunderbird-91.1.0.tar.bz2"; 215 locale = "ms"; 216 arch = "linux-x86_64"; 217 + sha256 = "6c29d08a31ddf074afe987864fd597822d70438b27b4f3ba09637235d387c4c6"; 218 } 219 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/nb-NO/thunderbird-91.1.0.tar.bz2"; 220 locale = "nb-NO"; 221 arch = "linux-x86_64"; 222 + sha256 = "b0427494aa505bc4fb0dbd22881c480d9b3b0003a1768010ae277403964cc069"; 223 } 224 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/nl/thunderbird-91.1.0.tar.bz2"; 225 locale = "nl"; 226 arch = "linux-x86_64"; 227 + sha256 = "b690288643ecdda0f92c74ea1e27555dcbbfb5600e4b96c5f09fc6d438a07904"; 228 } 229 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/nn-NO/thunderbird-91.1.0.tar.bz2"; 230 locale = "nn-NO"; 231 arch = "linux-x86_64"; 232 + sha256 = "2d75277596380c477334f81ef75a20216502a767c307b50b29b1e9fb9c859c44"; 233 } 234 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/pa-IN/thunderbird-91.1.0.tar.bz2"; 235 locale = "pa-IN"; 236 arch = "linux-x86_64"; 237 + sha256 = "1ab4a0c67f0ece7263b5aa67ff83e525b22aff82577ee80c422ebe8dc3df88e0"; 238 } 239 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/pl/thunderbird-91.1.0.tar.bz2"; 240 locale = "pl"; 241 arch = "linux-x86_64"; 242 + sha256 = "d4ef5d8678c8ef56bfc29362ef1745daef81ae7f8769eef6dcb38e9c2575f694"; 243 } 244 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/pt-BR/thunderbird-91.1.0.tar.bz2"; 245 locale = "pt-BR"; 246 arch = "linux-x86_64"; 247 + sha256 = "e29a8f74c456c3bb74e2c32aeb8b33b2e43a44f34ebdb965c62c26899c209b3e"; 248 } 249 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/pt-PT/thunderbird-91.1.0.tar.bz2"; 250 locale = "pt-PT"; 251 arch = "linux-x86_64"; 252 + sha256 = "2e4af178f24ef709d770e53511da6c9445b4c68f8326a820839dccc1c7f5f018"; 253 } 254 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/rm/thunderbird-91.1.0.tar.bz2"; 255 locale = "rm"; 256 arch = "linux-x86_64"; 257 + sha256 = "720067814b8b2ebcf4e4befffca4b64a2b3ede35a52cfbe155eacaaa55e3751f"; 258 } 259 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/ro/thunderbird-91.1.0.tar.bz2"; 260 locale = "ro"; 261 arch = "linux-x86_64"; 262 + sha256 = "c1c86c6e702182eb058abda2e3aae249f2baa84b8c920216d82b02dd93336736"; 263 } 264 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/ru/thunderbird-91.1.0.tar.bz2"; 265 locale = "ru"; 266 arch = "linux-x86_64"; 267 + sha256 = "79fa279c4b384c82952a8622c1fdbdd380f5c7c8519739daae923fe68a008168"; 268 } 269 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/sk/thunderbird-91.1.0.tar.bz2"; 270 locale = "sk"; 271 arch = "linux-x86_64"; 272 + sha256 = "dcc35cf4d23ad70e58378d9ce85d6cb627601ba1b6703bfa91b1350d7c9db460"; 273 } 274 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/sl/thunderbird-91.1.0.tar.bz2"; 275 locale = "sl"; 276 arch = "linux-x86_64"; 277 + sha256 = "ffd4fd2047d6be06763c7e5d64936ed781ac55a6412236d3f4373e740f3effe2"; 278 } 279 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/sq/thunderbird-91.1.0.tar.bz2"; 280 locale = "sq"; 281 arch = "linux-x86_64"; 282 + sha256 = "db989f096cfbb11451877f7a55b89ecc3d95f3920716f3c094272f7f606350f7"; 283 } 284 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/sr/thunderbird-91.1.0.tar.bz2"; 285 locale = "sr"; 286 arch = "linux-x86_64"; 287 + sha256 = "bc63020249bd66abcf17dd86daf72960c80fdfa334257031f88060d610b7b420"; 288 } 289 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/sv-SE/thunderbird-91.1.0.tar.bz2"; 290 locale = "sv-SE"; 291 arch = "linux-x86_64"; 292 + sha256 = "018f169ef69d4d43c860fa0b31102f87001035cdebbdaf9a296a5a9a42ffd351"; 293 } 294 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/th/thunderbird-91.1.0.tar.bz2"; 295 locale = "th"; 296 arch = "linux-x86_64"; 297 + sha256 = "10a062c36ee778f9fb16cc90b27e51a00efc143008ea11c4e04a0261bcfd2001"; 298 } 299 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/tr/thunderbird-91.1.0.tar.bz2"; 300 locale = "tr"; 301 arch = "linux-x86_64"; 302 + sha256 = "bbafbc16b0437fd507db0c72cdd0f13f40485329a1f6b238daf7f77c21290acb"; 303 } 304 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/uk/thunderbird-91.1.0.tar.bz2"; 305 locale = "uk"; 306 arch = "linux-x86_64"; 307 + sha256 = "fb7488a541f284eda5862cf3f1f16e274fc3604d1ab3ec03c39c4779c9900c8d"; 308 } 309 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/uz/thunderbird-91.1.0.tar.bz2"; 310 locale = "uz"; 311 arch = "linux-x86_64"; 312 + sha256 = "c8238bb841b37e4f468c95e07c714caacb2c028969d10ed88027b89ebd12f11a"; 313 } 314 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/vi/thunderbird-91.1.0.tar.bz2"; 315 locale = "vi"; 316 arch = "linux-x86_64"; 317 + sha256 = "34bb1df38a05b37a0e8f976bf45aa2b95295e54d3cea32a199ac1a3b623086c4"; 318 } 319 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/zh-CN/thunderbird-91.1.0.tar.bz2"; 320 locale = "zh-CN"; 321 arch = "linux-x86_64"; 322 + sha256 = "e30dbf4980e33684f2011ce5fb938b1c78e106bf9f0386e720674e494e78b3a7"; 323 } 324 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-x86_64/zh-TW/thunderbird-91.1.0.tar.bz2"; 325 locale = "zh-TW"; 326 arch = "linux-x86_64"; 327 + sha256 = "09e33501f8df2889820bea4ece53edd3a732b94cfad1a5006aca2f0930db80d4"; 328 } 329 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/af/thunderbird-91.1.0.tar.bz2"; 330 locale = "af"; 331 arch = "linux-i686"; 332 + sha256 = "def6badfd1fc47bcaf39eb729b32b7b18b60644d30ce1851e3c05a4e434aa55a"; 333 } 334 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/ar/thunderbird-91.1.0.tar.bz2"; 335 locale = "ar"; 336 arch = "linux-i686"; 337 + sha256 = "53d0a95c544e619a25ac6cc7cc6679b1acee486e9c421a1daddbf8654b887afd"; 338 } 339 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/ast/thunderbird-91.1.0.tar.bz2"; 340 locale = "ast"; 341 arch = "linux-i686"; 342 + sha256 = "887af3d430ae6a9f8ab8c4e8660ad3ee96b7bdd0a20b97382e2ee19c75881907"; 343 } 344 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/be/thunderbird-91.1.0.tar.bz2"; 345 locale = "be"; 346 arch = "linux-i686"; 347 + sha256 = "b1c98702341cb8250518226dc6ce1403ff6e8c4d693d6e2c71216b8448fa8685"; 348 } 349 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/bg/thunderbird-91.1.0.tar.bz2"; 350 locale = "bg"; 351 arch = "linux-i686"; 352 + sha256 = "77637e9d2e135116f2136ba04a48e787b1c44f137430255126f9d45ecb1fb56b"; 353 } 354 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/br/thunderbird-91.1.0.tar.bz2"; 355 locale = "br"; 356 arch = "linux-i686"; 357 + sha256 = "f05f6536e425685296d257a7dabe838a9e09e3663d8315ac3f810a2f434e7087"; 358 } 359 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/ca/thunderbird-91.1.0.tar.bz2"; 360 locale = "ca"; 361 arch = "linux-i686"; 362 + sha256 = "0509d0cde2a0fe2d6ac8dc2d5b850ddff7815145673dd2ee5a121dea95253f2c"; 363 } 364 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/cak/thunderbird-91.1.0.tar.bz2"; 365 locale = "cak"; 366 arch = "linux-i686"; 367 + sha256 = "9838e298051a41e26f07b4b3fe2b986f17dae2a28abe6d6f1117c6f0a07a3792"; 368 } 369 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/cs/thunderbird-91.1.0.tar.bz2"; 370 locale = "cs"; 371 arch = "linux-i686"; 372 + sha256 = "c480356bed2203f20c2e56b84a4f57782d8c439ee6f760a7bf71f6b635ff30fd"; 373 } 374 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/cy/thunderbird-91.1.0.tar.bz2"; 375 locale = "cy"; 376 arch = "linux-i686"; 377 + sha256 = "0b3787a4b535630cd18be5bd643f8a26bbe92b2a0d43a20638572bafd0ce7725"; 378 } 379 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/da/thunderbird-91.1.0.tar.bz2"; 380 locale = "da"; 381 arch = "linux-i686"; 382 + sha256 = "83be22576ad41fa1c8cad84c7f7236f810248ecdf5cb0d1605693fe0193b28d7"; 383 } 384 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/de/thunderbird-91.1.0.tar.bz2"; 385 locale = "de"; 386 arch = "linux-i686"; 387 + sha256 = "3edc194f461c6785f71353917a7e8451b838066238ac178031f0584b0c44c23d"; 388 } 389 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/dsb/thunderbird-91.1.0.tar.bz2"; 390 locale = "dsb"; 391 arch = "linux-i686"; 392 + sha256 = "4d11e2475112e28836d08e091a4a42a6bb6cffc2ef91a5daa909af0559c564cf"; 393 } 394 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/el/thunderbird-91.1.0.tar.bz2"; 395 locale = "el"; 396 arch = "linux-i686"; 397 + sha256 = "d4d1e9c7ab327bacfa0077cd1935660c7e49adba24be2be1af91ba5661872e65"; 398 } 399 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/en-CA/thunderbird-91.1.0.tar.bz2"; 400 locale = "en-CA"; 401 arch = "linux-i686"; 402 + sha256 = "4ea129ba96f00ad35e727af252d864b5b7b5d299cd4d75961c399a1b112638b2"; 403 } 404 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/en-GB/thunderbird-91.1.0.tar.bz2"; 405 locale = "en-GB"; 406 arch = "linux-i686"; 407 + sha256 = "a8fb21782b4556d9f050b471c6de8871cd156b83bf3453e3fb1d5845d8cadc7f"; 408 } 409 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/en-US/thunderbird-91.1.0.tar.bz2"; 410 locale = "en-US"; 411 arch = "linux-i686"; 412 + sha256 = "46e6de8047c63b877ca7a34f2154851060833502d5bced598873d3f8d89cb099"; 413 } 414 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/es-AR/thunderbird-91.1.0.tar.bz2"; 415 locale = "es-AR"; 416 arch = "linux-i686"; 417 + sha256 = "d24b1067cc6249b7d89fbcfedf18e390939c7aa3c1e009554ae4a3e980ce8605"; 418 } 419 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/es-ES/thunderbird-91.1.0.tar.bz2"; 420 locale = "es-ES"; 421 arch = "linux-i686"; 422 + sha256 = "5ab7cbff3a0bb6684eeed6698826f7c417fef3a774a08995b087dbb069768e37"; 423 } 424 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/et/thunderbird-91.1.0.tar.bz2"; 425 locale = "et"; 426 arch = "linux-i686"; 427 + sha256 = "fd0a1e89d8c045e7858828c384ec9c1d805424b6d54cb46de7b45bec1266b89f"; 428 } 429 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/eu/thunderbird-91.1.0.tar.bz2"; 430 locale = "eu"; 431 arch = "linux-i686"; 432 + sha256 = "02ddc8a6dc782d7148dcd799b87d10fe9d6417199bf4c245bf1baccfa173d6c1"; 433 } 434 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/fi/thunderbird-91.1.0.tar.bz2"; 435 locale = "fi"; 436 arch = "linux-i686"; 437 + sha256 = "ede8df4035b3fbeb7a2dcd49fbfcf56d9be4c152e57d7bcffcf66b35eb02e8ee"; 438 } 439 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/fr/thunderbird-91.1.0.tar.bz2"; 440 locale = "fr"; 441 arch = "linux-i686"; 442 + sha256 = "c343bc336f4c556af1ceaa597391608edcbc4f970f1fc6af6699853331d6b574"; 443 } 444 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/fy-NL/thunderbird-91.1.0.tar.bz2"; 445 locale = "fy-NL"; 446 arch = "linux-i686"; 447 + sha256 = "2f2d2e7b47ea8b38379b883f4c3296110f82450d5dd5e64b76588b4bb8de6462"; 448 } 449 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/ga-IE/thunderbird-91.1.0.tar.bz2"; 450 locale = "ga-IE"; 451 arch = "linux-i686"; 452 + sha256 = "3b60ca04b46298c5e560a9a85d01bdb1e2254b25b1592f78c616822f07454bc8"; 453 } 454 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/gd/thunderbird-91.1.0.tar.bz2"; 455 locale = "gd"; 456 arch = "linux-i686"; 457 + sha256 = "bc07c4aaa55fb554fbf5a5ff5f7f03360ba048047e3e3365e28b995d40c60372"; 458 } 459 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/gl/thunderbird-91.1.0.tar.bz2"; 460 locale = "gl"; 461 arch = "linux-i686"; 462 + sha256 = "b5ce738aeff507c8aa9dd3f7d0303d877188e0f51a99291ab8090b3af7e92a2c"; 463 } 464 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/he/thunderbird-91.1.0.tar.bz2"; 465 locale = "he"; 466 arch = "linux-i686"; 467 + sha256 = "3fe4505d46483e73e165185b449633169f8d3507c4c1a30d99e3442269907f79"; 468 } 469 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/hr/thunderbird-91.1.0.tar.bz2"; 470 locale = "hr"; 471 arch = "linux-i686"; 472 + sha256 = "87d7a3dce52e7fe0ea9d8fe610bd6683e14c0e65cfc6c4c25e5b258a468ff9ec"; 473 } 474 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/hsb/thunderbird-91.1.0.tar.bz2"; 475 locale = "hsb"; 476 arch = "linux-i686"; 477 + sha256 = "4befc38910d18cc91b27ccbcd54a04cc87f709a7a5908f48c16b90fa5118b833"; 478 } 479 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/hu/thunderbird-91.1.0.tar.bz2"; 480 locale = "hu"; 481 arch = "linux-i686"; 482 + sha256 = "9ae438b5b09d2390e3d934c85cad39d7a5dc733b1ad3add74c1700faff19bc6f"; 483 } 484 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/hy-AM/thunderbird-91.1.0.tar.bz2"; 485 locale = "hy-AM"; 486 arch = "linux-i686"; 487 + sha256 = "f0bf9acdc4f7b7b5b9e0d1a6005bb4919f10474a19aa9c54a4696ec3b6ec6853"; 488 } 489 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/id/thunderbird-91.1.0.tar.bz2"; 490 locale = "id"; 491 arch = "linux-i686"; 492 + sha256 = "3b266327a9681e5b2299b860f4ba6153c49d2417c3f506bb721dad4e6bebf21f"; 493 } 494 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/is/thunderbird-91.1.0.tar.bz2"; 495 locale = "is"; 496 arch = "linux-i686"; 497 + sha256 = "63c5947e73d86ccda38e2f600b2bf17378e44c8ef0137fc8cf788d9fd04c90b8"; 498 } 499 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/it/thunderbird-91.1.0.tar.bz2"; 500 locale = "it"; 501 arch = "linux-i686"; 502 + sha256 = "de701cb3aa59f540e7fe9cb364a34ad7b6072ef407530555e9bcde1799cf1afe"; 503 } 504 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/ja/thunderbird-91.1.0.tar.bz2"; 505 locale = "ja"; 506 arch = "linux-i686"; 507 + sha256 = "16ddb5bf1cb3338a511b0e22f7b48e4dee43c364e0d8f1df5dca4354946c6d41"; 508 } 509 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/ka/thunderbird-91.1.0.tar.bz2"; 510 locale = "ka"; 511 arch = "linux-i686"; 512 + sha256 = "4fa177e0e9f4227bb389fb784a491730da682331161b6716caa64f9859756a96"; 513 } 514 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/kab/thunderbird-91.1.0.tar.bz2"; 515 locale = "kab"; 516 arch = "linux-i686"; 517 + sha256 = "79ece60db326d24b0672c518356c5af52f4bc32955d9e9df3d342d5179768f2c"; 518 } 519 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/kk/thunderbird-91.1.0.tar.bz2"; 520 locale = "kk"; 521 arch = "linux-i686"; 522 + sha256 = "cdd426bf11206588de80d4b8d68498748444e0536da9e6cc62f1b066faf195dd"; 523 } 524 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/ko/thunderbird-91.1.0.tar.bz2"; 525 locale = "ko"; 526 arch = "linux-i686"; 527 + sha256 = "4b18853761c82122d814d95a57c161647f97de344e57f2600fa562332b56362e"; 528 } 529 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/lt/thunderbird-91.1.0.tar.bz2"; 530 locale = "lt"; 531 arch = "linux-i686"; 532 + sha256 = "dc44e61c6bbc3efe61310cf8541e33b04f2ad4a38a70826704706dba50622658"; 533 } 534 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/lv/thunderbird-91.1.0.tar.bz2"; 535 locale = "lv"; 536 arch = "linux-i686"; 537 + sha256 = "1ed31684fd7279c051c47a9d032c4c4e77e2ff396977dcd223a0608fc3ecc400"; 538 } 539 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/ms/thunderbird-91.1.0.tar.bz2"; 540 locale = "ms"; 541 arch = "linux-i686"; 542 + sha256 = "da27a3e094394650fb86ce53e737502628c12dd7a3c7d179367f7e5f4810bd13"; 543 } 544 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/nb-NO/thunderbird-91.1.0.tar.bz2"; 545 locale = "nb-NO"; 546 arch = "linux-i686"; 547 + sha256 = "ac7acf9de057d8beded959c557ee1fb42513191c1580784cb710118ff9bbb919"; 548 } 549 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/nl/thunderbird-91.1.0.tar.bz2"; 550 locale = "nl"; 551 arch = "linux-i686"; 552 + sha256 = "6311048f81b579cc49cac62b6b21c138d5d91c8ad3bebbf1c27c63cb1e60afc1"; 553 } 554 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/nn-NO/thunderbird-91.1.0.tar.bz2"; 555 locale = "nn-NO"; 556 arch = "linux-i686"; 557 + sha256 = "840c272897c1bd36e7e182acaf7eb1adda59c59c4b9809fbfe5fe71c14a67074"; 558 } 559 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/pa-IN/thunderbird-91.1.0.tar.bz2"; 560 locale = "pa-IN"; 561 arch = "linux-i686"; 562 + sha256 = "b56782bbd782840b9a1e4b9eb721539881443e7cf99f521078f86a220f425ad1"; 563 } 564 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/pl/thunderbird-91.1.0.tar.bz2"; 565 locale = "pl"; 566 arch = "linux-i686"; 567 + sha256 = "e8883f496b67b9689e28d9313e038141876cd95e539b05fe020760f62057e934"; 568 } 569 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/pt-BR/thunderbird-91.1.0.tar.bz2"; 570 locale = "pt-BR"; 571 arch = "linux-i686"; 572 + sha256 = "b5f24053b799799b161a572ad51b591c8145743c6d00ece95a7c9f57753fbb98"; 573 } 574 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/pt-PT/thunderbird-91.1.0.tar.bz2"; 575 locale = "pt-PT"; 576 arch = "linux-i686"; 577 + sha256 = "83e4a41dab8ba18dd4bf14adcbc5cd27ea3fd9a3c5ad7d49c696eaa7159ec536"; 578 } 579 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/rm/thunderbird-91.1.0.tar.bz2"; 580 locale = "rm"; 581 arch = "linux-i686"; 582 + sha256 = "079756fde88f2701a044b553b5c3076988951efed9029dc4e7a5b4e0e8ba4e93"; 583 } 584 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/ro/thunderbird-91.1.0.tar.bz2"; 585 locale = "ro"; 586 arch = "linux-i686"; 587 + sha256 = "8c30ba26f8e8cd684bd72394164e4f9dc1ebc0d8186e78ab39a6ea8fa5119f66"; 588 } 589 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/ru/thunderbird-91.1.0.tar.bz2"; 590 locale = "ru"; 591 arch = "linux-i686"; 592 + sha256 = "718c94a9a7879dcde959665d1b78d8ac78e6e4ff1fa047178587b543cdcdc046"; 593 } 594 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/sk/thunderbird-91.1.0.tar.bz2"; 595 locale = "sk"; 596 arch = "linux-i686"; 597 + sha256 = "46e0a7046c1b87ee70122a499778af86cc7d0af01995a081e8a6f1e9ff3bcbae"; 598 } 599 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/sl/thunderbird-91.1.0.tar.bz2"; 600 locale = "sl"; 601 arch = "linux-i686"; 602 + sha256 = "bb789aefaefa4c12276dd26e97684fd3ef2294b67ca6950f8acbf515377b0848"; 603 } 604 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/sq/thunderbird-91.1.0.tar.bz2"; 605 locale = "sq"; 606 arch = "linux-i686"; 607 + sha256 = "47a05b2db86bd268a44fe7a77a8960f11142ecdca16ffcee427603801add1c33"; 608 } 609 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/sr/thunderbird-91.1.0.tar.bz2"; 610 locale = "sr"; 611 arch = "linux-i686"; 612 + sha256 = "cf9789eb0f84697c66ed3ceccdbbe6a9e13fea2c27768e822f4e24a90950dfab"; 613 } 614 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/sv-SE/thunderbird-91.1.0.tar.bz2"; 615 locale = "sv-SE"; 616 arch = "linux-i686"; 617 + sha256 = "bf3482ee0f9203acc262984ee886ab32da27f2a75c7681028bc0b3ab1f0a0c71"; 618 } 619 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/th/thunderbird-91.1.0.tar.bz2"; 620 locale = "th"; 621 arch = "linux-i686"; 622 + sha256 = "167a81fc42ef0bd51f149695c6acc36ab7df04c10ff727b119c295b7046481f9"; 623 } 624 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/tr/thunderbird-91.1.0.tar.bz2"; 625 locale = "tr"; 626 arch = "linux-i686"; 627 + sha256 = "f508d7a071fd6c641cbd70944b784e553ab7bd4ec8e084e0ece6746b7ad149ca"; 628 } 629 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/uk/thunderbird-91.1.0.tar.bz2"; 630 locale = "uk"; 631 arch = "linux-i686"; 632 + sha256 = "2505fe82a01770c279a0c3c9a29d8eb02c3078ea3c6f3be956b531277a6125aa"; 633 } 634 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/uz/thunderbird-91.1.0.tar.bz2"; 635 locale = "uz"; 636 arch = "linux-i686"; 637 + sha256 = "25ffeef15ef2f0f9d939ce09edc9a5e8d58f23c94c0cfd4bf952e2ad5a373fd1"; 638 } 639 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/vi/thunderbird-91.1.0.tar.bz2"; 640 locale = "vi"; 641 arch = "linux-i686"; 642 + sha256 = "fab7cdf7def4e8f34d891275c914b42a75d174e5fe807642c6d47ad09622dd07"; 643 } 644 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/zh-CN/thunderbird-91.1.0.tar.bz2"; 645 locale = "zh-CN"; 646 arch = "linux-i686"; 647 + sha256 = "e113f02eba4e13ce2a17098576b87a2b64b969d97c11a4dd8bb561467bf26f3b"; 648 } 649 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/91.1.0/linux-i686/zh-TW/thunderbird-91.1.0.tar.bz2"; 650 locale = "zh-TW"; 651 arch = "linux-i686"; 652 + sha256 = "0a3733c11855cd48504e82c32172e7cedb1a57d402e8f1f4a6e8a305b9eda3ec"; 653 } 654 ]; 655 }
+2 -2
pkgs/applications/networking/mailreaders/thunderbird/packages.nix
··· 10 rec { 11 thunderbird = common rec { 12 pname = "thunderbird"; 13 - version = "91.0.3"; 14 application = "comm/mail"; 15 binaryName = pname; 16 src = fetchurl { 17 url = "mirror://mozilla/thunderbird/releases/${version}/source/thunderbird-${version}.source.tar.xz"; 18 - sha512 = "1c7b4c11066ab64ee1baa9f07bc6bd4478c2ece0bcf8ac381c2f0774582bb781b8151b54326cd38742d039c5de718022649d804dfceaf142863249b1edb68e1e"; 19 }; 20 patches = [ 21 ./no-buildconfig-90.patch
··· 10 rec { 11 thunderbird = common rec { 12 pname = "thunderbird"; 13 + version = "91.1.0"; 14 application = "comm/mail"; 15 binaryName = pname; 16 src = fetchurl { 17 url = "mirror://mozilla/thunderbird/releases/${version}/source/thunderbird-${version}.source.tar.xz"; 18 + sha512 = "c465ff25d67c5c28db53d3b1ccda10a743276e58c693406bf31bde0253f34123348180ae18765bd60b958c050e3a874dd69ac82d7612007a8c7a2e25939840ff"; 19 }; 20 patches = [ 21 ./no-buildconfig-90.patch
+11 -4
pkgs/applications/version-management/git-and-tools/git-open/default.nix
··· 1 - {lib, stdenv, git, xdg-utils, gnugrep, fetchFromGitHub, makeWrapper}: 2 3 stdenv.mkDerivation rec { 4 pname = "git-open"; ··· 11 sha256 = "11n46bngvca5wbdbfcxzjhjbfdbad7sgf7h9gf956cb1q8swsdm0"; 12 }; 13 14 - nativeBuildInputs = [ makeWrapper ]; 15 16 - buildPhase = null; 17 18 installPhase = '' 19 mkdir -p $out/bin 20 cp git-open $out/bin 21 wrapProgram $out/bin/git-open \ 22 --prefix PATH : "${lib.makeBinPath [ git xdg-utils gnugrep ]}" 23 ''; ··· 27 description = "Open the GitHub page or website for a repository in your browser"; 28 license = licenses.mit; 29 platforms = platforms.all; 30 - maintainers = [ maintainers.jlesquembre ]; 31 }; 32 }
··· 1 + { lib, stdenv, git, xdg-utils, gnugrep, fetchFromGitHub, installShellFiles, makeWrapper, pandoc }: 2 3 stdenv.mkDerivation rec { 4 pname = "git-open"; ··· 11 sha256 = "11n46bngvca5wbdbfcxzjhjbfdbad7sgf7h9gf956cb1q8swsdm0"; 12 }; 13 14 + nativeBuildInputs = [ installShellFiles makeWrapper pandoc ]; 15 16 + buildPhase = '' 17 + # marked-man is broken and severly outdated. 18 + # pandoc with some extra metadata is good enough and produces a by man readable file. 19 + cat <(echo echo '% git-open (1) Version ${version} | Git manual') git-open.1.md > tmp 20 + mv tmp git-open.1.md 21 + pandoc --standalone --to man git-open.1.md -o git-open.1 22 + ''; 23 24 installPhase = '' 25 mkdir -p $out/bin 26 cp git-open $out/bin 27 + installManPage git-open.1 28 wrapProgram $out/bin/git-open \ 29 --prefix PATH : "${lib.makeBinPath [ git xdg-utils gnugrep ]}" 30 ''; ··· 34 description = "Open the GitHub page or website for a repository in your browser"; 35 license = licenses.mit; 36 platforms = platforms.all; 37 + maintainers = with maintainers; [ jlesquembre SuperSandro2000 ]; 38 }; 39 }
+5
pkgs/development/compilers/openjdk/openjfx/11.nix
··· 24 25 dontUseCmakeConfigure = true; 26 27 config = writeText "gradle.properties" ('' 28 CONF = Release 29 JDK_HOME = ${openjdk11-bootstrap.home}
··· 24 25 dontUseCmakeConfigure = true; 26 27 + postPatch = '' 28 + substituteInPlace buildSrc/linux.gradle \ 29 + --replace ', "-Werror=implicit-function-declaration"' "" 30 + ''; 31 + 32 config = writeText "gradle.properties" ('' 33 CONF = Release 34 JDK_HOME = ${openjdk11-bootstrap.home}
+4
pkgs/development/compilers/sbcl/2.1.8.nix
···
··· 1 + import ./common.nix { 2 + version = "2.1.8"; 3 + sha256 = "0ijmw8adyf6fgaq4ixdj9v5lfg3cs9wyxhb96wxhfld0rjpppsm3"; 4 + }
+4 -24
pkgs/development/interpreters/micropython/default.nix
··· 1 { stdenv 2 , lib 3 , fetchFromGitHub 4 - , fetchpatch 5 , pkg-config 6 , libffi 7 - , python3 8 , readline 9 }: 10 11 stdenv.mkDerivation rec { 12 pname = "micropython"; 13 - version = "1.15"; 14 15 src = fetchFromGitHub { 16 owner = "micropython"; 17 repo = "micropython"; 18 rev = "v${version}"; 19 - sha256 = "11bf1lq4kgfs1nzg5cnshh2dqxyk5w2k816i04innri6fj0g7y6p"; 20 fetchSubmodules = true; 21 }; 22 - 23 - # drop the following patches when upgrading to 1.16 24 - patches = [ 25 - # fix build with modern clang https://github.com/micropython/micropython/pull/7254 26 - (fetchpatch { 27 - url = "https://github.com/micropython/micropython/commit/126b1c727118352923703719a2a3d45b9fad3c97.patch"; 28 - sha256 = "13a2bmz24syhd1qsqbx39dcjkjdhf05ln7lanh816m94lkfib21j"; 29 - }) 30 - # fix build with modern clang https://github.com/micropython/micropython/pull/7254 31 - (fetchpatch { 32 - url = "https://github.com/micropython/micropython/commit/7ceccad4e2f1e9d073f5781c32e5b377e8391a25.patch"; 33 - sha256 = "04mbxmb5yr6pbhhf9villq8km4wy579r46v9p4n0ysivrxij7i6f"; 34 - }) 35 - # fix build on aarch64-darwin https://github.com/micropython/micropython/pull/7393 36 - (fetchpatch { 37 - url = "https://github.com/micropython/micropython/commit/95048129b1d93854c25f501c02801929aeeb23f0.patch"; 38 - sha256 = "1cngcwq4jviyhdnfcrrkdadfikhffzbj0d634j0344cp247jb41n"; 39 - }) 40 - ]; 41 42 nativeBuildInputs = [ pkg-config python3 ]; 43 ··· 78 homepage = "https://micropython.org"; 79 platforms = platforms.unix; 80 license = licenses.mit; 81 - maintainers = with maintainers; [ sgo ]; 82 }; 83 }
··· 1 { stdenv 2 , lib 3 , fetchFromGitHub 4 , pkg-config 5 + , python3 6 , libffi 7 , readline 8 }: 9 10 stdenv.mkDerivation rec { 11 pname = "micropython"; 12 + version = "1.17"; 13 14 src = fetchFromGitHub { 15 owner = "micropython"; 16 repo = "micropython"; 17 rev = "v${version}"; 18 + sha256 = "0aqij36iykmfdsv5dqrifvghmjx7qid8hmbxcpx3xpk3nizh7w84"; 19 fetchSubmodules = true; 20 }; 21 22 nativeBuildInputs = [ pkg-config python3 ]; 23 ··· 58 homepage = "https://micropython.org"; 59 platforms = platforms.unix; 60 license = licenses.mit; 61 + maintainers = with maintainers; [ prusnak sgo ]; 62 }; 63 }
+1
pkgs/development/node-packages/node-packages.json
··· 134 , "hs-airdrop" 135 , "hs-client" 136 , "hueadm" 137 , "ijavascript" 138 , "inliner" 139 , "imapnotify"
··· 134 , "hs-airdrop" 135 , "hs-client" 136 , "hueadm" 137 + , "hyperpotamus" 138 , "ijavascript" 139 , "inliner" 140 , "imapnotify"
+2
pkgs/development/python-modules/backports-entry-points-selectable/default.nix
··· 21 22 pythonImportsCheck = [ "backports.entry_points_selectable" ]; 23 24 meta = with lib; { 25 description = "Compatibility shim providing selectable entry points for older implementations"; 26 homepage = "https://github.com/jaraco/backports.entry_points_selectable";
··· 21 22 pythonImportsCheck = [ "backports.entry_points_selectable" ]; 23 24 + pythonNamespaces = [ "backports" ]; 25 + 26 meta = with lib; { 27 description = "Compatibility shim providing selectable entry points for older implementations"; 28 homepage = "https://github.com/jaraco/backports.entry_points_selectable";
+2
pkgs/development/python-modules/backports_functools_lru_cache/default.nix
··· 30 # Test fail on Python 2 31 doCheck = isPy3k; 32 33 meta = { 34 description = "Backport of functools.lru_cache"; 35 homepage = "https://github.com/jaraco/backports.functools_lru_cache";
··· 30 # Test fail on Python 2 31 doCheck = isPy3k; 32 33 + pythonNamespaces = [ "backports" ]; 34 + 35 meta = { 36 description = "Backport of functools.lru_cache"; 37 homepage = "https://github.com/jaraco/backports.functools_lru_cache";
+2 -2
pkgs/development/python-modules/bitlist/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "bitlist"; 11 - version = "0.3.1"; 12 13 src = fetchPypi { 14 inherit pname version; 15 - sha256 = "04dz64r21a39p8wph5qlhvs5y873qgk6xxjlzw8n695b8jm3ixir"; 16 }; 17 18 propagatedBuildInputs = [
··· 8 9 buildPythonPackage rec { 10 pname = "bitlist"; 11 + version = "0.4.0"; 12 13 src = fetchPypi { 14 inherit pname version; 15 + sha256 = "sha256-IL1tpP/F6O3BvJab6aC6r6PhRgKFpLp9aXmOK1rQXaU="; 16 }; 17 18 propagatedBuildInputs = [
+9 -2
pkgs/development/python-modules/blspy/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "blspy"; 16 - version = "1.0.5"; 17 disabled = pythonOlder "3.7"; 18 19 src = fetchPypi { 20 inherit pname version; 21 - hash = "sha256-uDXzAdGzfyRbsMVllLNd3DK8F/GfovdX293z5Mel6eg="; 22 }; 23 24 patches = [ ··· 31 repo = "relic"; 32 rev = "1885ae3b681c423c72b65ce1fe70910142cf941c"; # pinned by blspy 33 hash = "sha256-tsSZTcssl8t7Nqdex4BesgQ+ACPgTdtHnJFvS9josN0="; 34 }; 35 }) 36 ];
··· 13 14 buildPythonPackage rec { 15 pname = "blspy"; 16 + version = "1.0.6"; 17 disabled = pythonOlder "3.7"; 18 19 src = fetchPypi { 20 inherit pname version; 21 + hash = "sha256-sULXnecEs8VI687pR9EK9jjYWlrB4tV4dt7Kzekaxb4="; 22 }; 23 24 patches = [ ··· 31 repo = "relic"; 32 rev = "1885ae3b681c423c72b65ce1fe70910142cf941c"; # pinned by blspy 33 hash = "sha256-tsSZTcssl8t7Nqdex4BesgQ+ACPgTdtHnJFvS9josN0="; 34 + }; 35 + sodium_src = fetchFromGitHub { 36 + owner = "AmineKhaldi"; 37 + repo = "libsodium-cmake"; 38 + rev = "f73a3fe1afdc4e37ac5fe0ddd401bf521f6bba65"; # pinned by blspy 39 + sha256 = "sha256-lGz7o6DQVAuEc7yTp8bYS2kwjzHwGaNjugDi1ruRJOA="; 40 + fetchSubmodules = true; 41 }; 42 }) 43 ];
+37 -25
pkgs/development/python-modules/blspy/dont_fetch_dependencies.patch
··· 1 - diff --git a/python-bindings/CMakeLists.txt b/python-bindings/CMakeLists.txt 2 - index 255e3bb..5f99c3a 100644 3 - --- a/python-bindings/CMakeLists.txt 4 - +++ b/python-bindings/CMakeLists.txt 5 - @@ -6,8 +6,7 @@ include(FetchContent) 6 7 - FetchContent_Declare( 8 - pybind11 9 - - GIT_REPOSITORY https://github.com/pybind/pybind11.git 10 - - GIT_TAG v2.6.2 11 - + SOURCE_DIR @pybind11_src@ 12 ) 13 - FetchContent_MakeAvailable(pybind11 relic) 14 - 15 - diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt 16 - index faecc61..3272116 100644 17 - --- a/src/CMakeLists.txt 18 - +++ b/src/CMakeLists.txt 19 - @@ -4,18 +4,9 @@ set (CMAKE_CXX_STANDARD 17) 20 - # CMake 3.14+ 21 - include(FetchContent) 22 23 -if (DEFINED ENV{RELIC_MAIN}) 24 - set(RELIC_GIT_TAG "origin/main") 25 -else () 26 - - set(RELIC_GIT_TAG "b7b2266a0e4ee6f628f61d3ab638f524a18b52f1") 27 -endif () 28 - 29 - -message(STATUS "Relic will be built from: ${RELIC_GIT_TAG}") 30 - - 31 FetchContent_Declare( 32 relic 33 - - GIT_REPOSITORY https://github.com/relic-toolkit/relic.git 34 - - GIT_TAG ${RELIC_GIT_TAG} 35 + SOURCE_DIR @relic_src@ 36 ) 37 - FetchContent_MakeAvailable(relic) 38
··· 1 + diff --git a/CMakeLists.txt b/CMakeLists.txt 2 + index 6922167..23d8da6 100644 3 + --- a/CMakeLists.txt 4 + +++ b/CMakeLists.txt 5 + @@ -31,29 +31,18 @@ set(CMAKE_MODULE_PATH 6 + include(FetchContent) 7 8 + FetchContent_Declare(Sodium 9 + - GIT_REPOSITORY https://github.com/AmineKhaldi/libsodium-cmake.git 10 + - # Latest commit at the moment this was added here 11 + - # Anchored to libsodium v1.0.18 12 + - GIT_TAG f73a3fe1afdc4e37ac5fe0ddd401bf521f6bba65 13 + + URL @sodium_src@ 14 ) 15 + set(SODIUM_PCH "on" CACHE STRING "") 16 + set(SODIUM_DISABLE_TESTS "on" CACHE STRING "") 17 + set(SODIUM_CHIA_MINIMAL "on" CACHE STRING "") 18 + FetchContent_MakeAvailable(Sodium) 19 20 -if (DEFINED ENV{RELIC_MAIN}) 21 - set(RELIC_GIT_TAG "origin/main") 22 -else () 23 + - # This is currently anchored to upstream aecdcae7956f542fbee2392c1f0feb0a8ac41dc5 24 + - set(RELIC_GIT_TAG "1d98e5abf3ca5b14fd729bd5bcced88ea70ecfd7") 25 -endif () 26 - 27 + message(STATUS "Relic will be built from: ${RELIC_GIT_TAG}") 28 + 29 FetchContent_Declare( 30 relic 31 + - GIT_REPOSITORY https://github.com/Chia-Network/relic.git 32 + - GIT_TAG ${RELIC_GIT_TAG} 33 + SOURCE_DIR @relic_src@ 34 ) 35 + 36 + # Relic related options 37 + diff --git a/python-bindings/CMakeLists.txt b/python-bindings/CMakeLists.txt 38 + index 5a8c381..d9aa940 100644 39 + --- a/python-bindings/CMakeLists.txt 40 + +++ b/python-bindings/CMakeLists.txt 41 + @@ -1,8 +1,7 @@ 42 + 43 + FetchContent_Declare( 44 + pybind11 45 + - GIT_REPOSITORY https://github.com/pybind/pybind11.git 46 + - GIT_TAG v2.6.2 47 + + SOURCE_DIR @pybind11_src@ 48 + ) 49 + FetchContent_MakeAvailable(pybind11 relic) 50
+2 -2
pkgs/development/python-modules/chiavdf/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "chiavdf"; 17 - version = "1.0.2"; 18 disabled = pythonOlder "3.7"; 19 20 src = fetchPypi { 21 inherit pname version; 22 - hash = "sha256-YSG4Aj9gd72NOgDSYU0kPn/nZz9Pza9FE9WoG/H4PWw="; 23 }; 24 25 patches = [
··· 14 15 buildPythonPackage rec { 16 pname = "chiavdf"; 17 + version = "1.0.3"; 18 disabled = pythonOlder "3.7"; 19 20 src = fetchPypi { 21 inherit pname version; 22 + hash = "sha256-XbmK7ZJnUy3Zg9XWt0t/Qb2k5qIlu4vIbxdDFYFjFPI="; 23 }; 24 25 patches = [
+3 -3
pkgs/development/python-modules/clvm-rs/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "clvm_rs"; 12 - version = "0.1.8"; 13 disabled = pythonOlder "3.7"; 14 15 src = fetchFromGitHub { 16 owner = "Chia-Network"; 17 repo = "clvm_rs"; 18 rev = version; 19 - sha256 = "sha256-YQfcVF+/eEgSLhq0EIFjMlVUT/4w2S5C1/rbkNpKszo="; 20 }; 21 22 cargoDeps = rustPlatform.fetchCargoTarball { 23 inherit src; 24 name = "${pname}-${version}"; 25 - sha256 = "000vkyqlbq35fg6k4c05qh52iw8m4xbzyh94y038zr9p0yjlr019"; 26 }; 27 28 format = "pyproject";
··· 9 10 buildPythonPackage rec { 11 pname = "clvm_rs"; 12 + version = "0.1.11"; 13 disabled = pythonOlder "3.7"; 14 15 src = fetchFromGitHub { 16 owner = "Chia-Network"; 17 repo = "clvm_rs"; 18 rev = version; 19 + sha256 = "sha256-PXx7PKkqTb5slP8Z3z6yuWYrSEJSeGe75LmEvTFLKbQ="; 20 }; 21 22 cargoDeps = rustPlatform.fetchCargoTarball { 23 inherit src; 24 name = "${pname}-${version}"; 25 + sha256 = "sha256-sztmQeNECR8KSWd+CwkWOip7DAr/pnacjaIvuakymcs="; 26 }; 27 28 format = "pyproject";
+2 -2
pkgs/development/python-modules/deemix/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "deemix"; 15 - version = "3.4.3"; 16 disabled = pythonOlder "3.7"; 17 18 src = fetchPypi { 19 inherit pname version; 20 - sha256 = "sha256-cSLjbowG98pbEzGB17Rkhli90xeOyzOcEglXb5SeNJE="; 21 }; 22 23 propagatedBuildInputs = [
··· 12 13 buildPythonPackage rec { 14 pname = "deemix"; 15 + version = "3.4.4"; 16 disabled = pythonOlder "3.7"; 17 18 src = fetchPypi { 19 inherit pname version; 20 + sha256 = "sha256-HZg2zys92gH1j8WWgrzH3fpxoFDi+LPULmvlkUeB9Fw="; 21 }; 22 23 propagatedBuildInputs = [
+21 -8
pkgs/development/python-modules/deprecated/default.nix
··· 1 - { lib, fetchPypi, buildPythonPackage, wrapt, pytest }: 2 3 buildPythonPackage rec { 4 - pname = "Deprecated"; 5 - version = "1.2.12"; 6 7 src = fetchPypi { 8 - inherit pname version; 9 - sha256 = "6d2de2de7931a968874481ef30208fd4e08da39177d61d3d4ebdf4366e7dbca1"; 10 }; 11 12 - propagatedBuildInputs = [ wrapt ]; 13 - checkInputs = [ pytest ]; 14 meta = with lib; { 15 homepage = "https://github.com/tantale/deprecated"; 16 description = "Python @deprecated decorator to deprecate old python classes, functions or methods"; 17 - platforms = platforms.all; 18 license = licenses.mit; 19 maintainers = with maintainers; [ tilpner ]; 20 };
··· 1 + { lib 2 + , fetchPypi 3 + , buildPythonPackage 4 + , wrapt 5 + , pytestCheckHook 6 + }: 7 8 buildPythonPackage rec { 9 + pname = "deprecated"; 10 + version = "1.2.13"; 11 12 src = fetchPypi { 13 + pname = "Deprecated"; 14 + inherit version; 15 + sha256 = "sha256-Q6xTNdqQwxwkugKK9TapHUHVP55pAd2wIbzFcs5E440="; 16 }; 17 18 + propagatedBuildInputs = [ 19 + wrapt 20 + ]; 21 + 22 + checkInputs = [ 23 + pytestCheckHook 24 + ]; 25 + 26 + pythonImportsCheck = [ "deprecated" ]; 27 + 28 meta = with lib; { 29 homepage = "https://github.com/tantale/deprecated"; 30 description = "Python @deprecated decorator to deprecate old python classes, functions or methods"; 31 license = licenses.mit; 32 maintainers = with maintainers; [ tilpner ]; 33 };
+7 -2
pkgs/development/python-modules/elasticsearch/default.nix
··· 7 8 buildPythonPackage (rec { 9 pname = "elasticsearch"; 10 - version = "7.14.1"; 11 12 src = fetchPypi { 13 inherit pname version; 14 - sha256 = "f928898fe06869516f2603f9a96a6f166c06888233806b31ac6568bac0266501"; 15 }; 16 17 # Check is disabled because running them destroy the content of the local cluster!
··· 7 8 buildPythonPackage (rec { 9 pname = "elasticsearch"; 10 + # In 7.14.0, the package was intentionally made incompatible with 11 + # the OSS version of elasticsearch - don't update past 7.13.x until 12 + # there's a clear path forward. See 13 + # https://github.com/elastic/elasticsearch-py/issues/1639 for more 14 + # info. 15 + version = "7.13.1"; 16 17 src = fetchPypi { 18 inherit pname version; 19 + sha256 = "d6bcca0b2e5665d08e6fe6fadc2d4d321affd76ce483603078fc9d3ccd2bc0f9"; 20 }; 21 22 # Check is disabled because running them destroy the content of the local cluster!
+2 -2
pkgs/development/python-modules/fakeredis/default.nix
··· 16 17 buildPythonPackage rec { 18 pname = "fakeredis"; 19 - version = "1.6.0"; 20 disabled = pythonOlder "3.5"; 21 22 src = fetchPypi { 23 inherit pname version; 24 - sha256 = "11ccfc9769d718d37e45b382e64a6ba02586b622afa0371a6bd85766d72255f3"; 25 }; 26 27 propagatedBuildInputs = [
··· 16 17 buildPythonPackage rec { 18 pname = "fakeredis"; 19 + version = "1.6.1"; 20 disabled = pythonOlder "3.5"; 21 22 src = fetchPypi { 23 inherit pname version; 24 + sha256 = "sha256-DQapOE+3nanyFkzpbjTrnU4upGIVBwgF6m/TwXRZC0c="; 25 }; 26 27 propagatedBuildInputs = [
+31
pkgs/development/python-modules/glfw/default.nix
···
··· 1 + { lib, buildPythonPackage, fetchFromGitHub, glfw3 }: 2 + 3 + buildPythonPackage rec { 4 + pname = "glfw"; 5 + version = "2.2.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "FlorianRhiem"; 9 + repo = "pyGLFW"; 10 + rev = "v${version}"; 11 + sha256 = "1ygcwnh0x07yi87wkxykw566g74vfi8n0w2rzypidhdss14x3pvf"; 12 + }; 13 + 14 + # Patch path to GLFW shared object 15 + patches = [ ./search-path.patch ]; 16 + postPatch = '' 17 + substituteInPlace glfw/library.py --replace "@GLFW@" '${glfw3}/lib' 18 + ''; 19 + propagatedBuildInputs = [ glfw3 ]; 20 + 21 + # Project has no tests 22 + doCheck = false; 23 + pythonImportsCheck = [ "glfw" ]; 24 + 25 + meta = with lib; { 26 + description = "Python bindings for GLFW"; 27 + homepage = "https://github.com/FlorianRhiem/pyGLFW"; 28 + license = licenses.mit; 29 + maintainers = [ maintainers.McSinyx ]; 30 + }; 31 + }
+11
pkgs/development/python-modules/glfw/search-path.patch
···
··· 1 + diff --git a/glfw/library.py b/glfw/library.py 2 + index 20387e1..9bdd62a 100644 3 + --- a/glfw/library.py 4 + +++ b/glfw/library.py 5 + @@ -189,5 +189,4 @@ elif sys.platform == 'win32': 6 + except OSError: 7 + pass 8 + else: 9 + - glfw = _load_library(['glfw', 'glfw3'], ['.so', '.dylib'], 10 + - _get_library_search_paths(), _glfw_get_version) 11 + + glfw = _load_library(['glfw', 'glfw3'], ['.so', '.dylib'], ['@GLFW@'], _glfw_get_version)
+2 -2
pkgs/development/python-modules/google-cloud-pubsub/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "google-cloud-pubsub"; 16 - version = "2.7.1"; 17 18 src = fetchPypi { 19 inherit pname version; 20 - sha256 = "d52d386617c110c35043f6ff37ccb50d9f37c75b1e5586409ed64a3e8ae61038"; 21 }; 22 23 propagatedBuildInputs = [
··· 13 14 buildPythonPackage rec { 15 pname = "google-cloud-pubsub"; 16 + version = "2.8.0"; 17 18 src = fetchPypi { 19 inherit pname version; 20 + sha256 = "2653c11615480141d359938a4efe9d131425171ec9cec26b6bf1c1231e1ac470"; 21 }; 22 23 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pex/default.nix
··· 6 7 buildPythonPackage rec { 8 pname = "pex"; 9 - version = "2.1.47"; 10 11 src = fetchPypi { 12 inherit pname version; 13 - sha256 = "0928d0316caac840db528030fc741930e8be22a3fa6a8635308fb8443a0a0c6a"; 14 }; 15 16 nativeBuildInputs = [ setuptools ];
··· 6 7 buildPythonPackage rec { 8 pname = "pex"; 9 + version = "2.1.48"; 10 11 src = fetchPypi { 12 inherit pname version; 13 + sha256 = "5f6a489075c5bbecdb36a42249cd52cfd882e205242f80a1f1e2294951ab46e7"; 14 }; 15 16 nativeBuildInputs = [ setuptools ];
+2 -2
pkgs/development/python-modules/pre-commit/default.nix
··· 17 18 buildPythonPackage rec { 19 pname = "pre-commit"; 20 - version = "2.14.0"; 21 disabled = pythonOlder "3.6"; 22 23 src = fetchPypi { 24 inherit version; 25 pname = "pre_commit"; 26 - sha256 = "sha256-I4butM9mM3EsfMnt6DaE1TyMr8prWfecc4CYtRxtIGw="; 27 }; 28 29 patches = [
··· 17 18 buildPythonPackage rec { 19 pname = "pre-commit"; 20 + version = "2.15.0"; 21 disabled = pythonOlder "3.6"; 22 23 src = fetchPypi { 24 inherit version; 25 pname = "pre_commit"; 26 + sha256 = "sha256-PCWt1429+2ooplF4DVwxGsQN0X8WDrOVSgxZ2kClBac="; 27 }; 28 29 patches = [
+2 -2
pkgs/development/python-modules/pubnub/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "pubnub"; 16 - version = "5.2.1"; 17 18 src = fetchFromGitHub { 19 owner = pname; 20 repo = "python"; 21 rev = "v${version}"; 22 - sha256 = "151f9vhgjlr3maniry3vin8vxvz7h8kxnfby9zgsrlvjs4nfgdf9"; 23 }; 24 25 propagatedBuildInputs = [
··· 13 14 buildPythonPackage rec { 15 pname = "pubnub"; 16 + version = "5.3.1"; 17 18 src = fetchFromGitHub { 19 owner = pname; 20 repo = "python"; 21 rev = "v${version}"; 22 + sha256 = "0fykqr0agdlrhsy2s4yzadyslyjlhgr9iyj2f7s8hz9j400dhj3h"; 23 }; 24 25 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/python-miio/default.nix
··· 24 25 buildPythonPackage rec { 26 pname = "python-miio"; 27 - version = "0.5.7"; 28 disabled = pythonOlder "3.6"; 29 format = "pyproject"; 30 31 src = fetchPypi { 32 inherit pname version; 33 - sha256 = "sha256-Dl/9aiCb8RYcSGEkO9X51Oaqg7FOv5mWYIDZs9fpOIg="; 34 }; 35 36 postPatch = ''
··· 24 25 buildPythonPackage rec { 26 pname = "python-miio"; 27 + version = "0.5.8"; 28 disabled = pythonOlder "3.6"; 29 format = "pyproject"; 30 31 src = fetchPypi { 32 inherit pname version; 33 + sha256 = "sha256-16XEah5rgem/L8A/zo1zPrifrU15VMk652rFLZcvjig="; 34 }; 35 36 postPatch = ''
+2 -2
pkgs/development/python-modules/rnc2rng/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "rnc2rng"; 10 - version = "2.6.5"; 11 12 src = fetchPypi { 13 inherit pname version; 14 - sha256 = "d354afcf0bf8e3b1e8f8d37d71a8fe5b1c0cf75cbd4b71364a9d90b5108a16e5"; 15 }; 16 17 propagatedBuildInputs = [ rply ];
··· 7 8 buildPythonPackage rec { 9 pname = "rnc2rng"; 10 + version = "2.6.6"; 11 12 src = fetchPypi { 13 inherit pname version; 14 + sha256 = "5a01d157857b5f010a94167e7092cc49efe2531d58e013f12c4e60b8c4df78f1"; 15 }; 16 17 propagatedBuildInputs = [ rply ];
+2 -2
pkgs/development/python-modules/rq/default.nix
··· 2 3 buildPythonPackage rec { 4 pname = "rq"; 5 - version = "1.9.0"; 6 disabled = isPy27; 7 8 src = fetchFromGitHub { 9 owner = "rq"; 10 repo = "rq"; 11 rev = "v${version}"; 12 - sha256 = "1drw7yqgsk1z9alv4hwj44a3sggmr20msdzdcdaxzdcqgb3qdpk8"; 13 }; 14 15 # test require a running redis rerver, which is something we can't do yet
··· 2 3 buildPythonPackage rec { 4 pname = "rq"; 5 + version = "1.10"; 6 disabled = isPy27; 7 8 src = fetchFromGitHub { 9 owner = "rq"; 10 repo = "rq"; 11 rev = "v${version}"; 12 + sha256 = "16k5qz5k3v232dzv99bxxw52jr2hb5ra08b6dkhqya98wjviq8l5"; 13 }; 14 15 # test require a running redis rerver, which is something we can't do yet
+2 -2
pkgs/development/python-modules/yangson/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "yangson"; 11 - version = "1.4.9"; 12 format = "setuptools"; 13 14 src = fetchPypi { 15 inherit pname version; 16 - sha256 = "1qb8zssyj504yrj1jnkrzv65xlfv5bl14knan76pjzbpl0xpaq6z"; 17 }; 18 19 nativeBuildInputs = [
··· 8 9 buildPythonPackage rec { 10 pname = "yangson"; 11 + version = "1.4.10"; 12 format = "setuptools"; 13 14 src = fetchPypi { 15 inherit pname version; 16 + sha256 = "sha256-R7ZcG4FStESPDWnFD6WIDD8sugvil9ybVK0J2qQC+zU="; 17 }; 18 19 nativeBuildInputs = [
+2 -2
pkgs/development/tools/heroku/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "heroku"; 5 - version = "7.51.0"; 6 7 src = fetchurl { 8 url = "https://cli-assets.heroku.com/heroku-v${version}/heroku-v${version}.tar.xz"; 9 - sha256 = "0wcqk4iy4r57k6fd6l0732yp5mclqfla1lfvx96ay45jnhh7rknx"; 10 }; 11 12 nativeBuildInputs = [ makeWrapper ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "heroku"; 5 + version = "7.59.0"; 6 7 src = fetchurl { 8 url = "https://cli-assets.heroku.com/heroku-v${version}/heroku-v${version}.tar.xz"; 9 + sha256 = "0whkm8xi918m4y0wjdbma42kl4cc6chakjn5chi75aqd5y3qanpp"; 10 }; 11 12 nativeBuildInputs = [ makeWrapper ];
+34
pkgs/development/tools/oshka/default.nix
···
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "oshka"; 8 + version = "0.4.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "k1LoW"; 12 + repo = pname; 13 + rev = "v${version}"; 14 + sha256 = "1niyy7yiynpwa2cvcj4r3305v8ca4324q512839y79s3izd6a1lf"; 15 + }; 16 + 17 + vendorSha256 = "08aj3nmj8angizkd3rbwbm7qzqxwrgfm1rka2x2a096z6mc3f4k4"; 18 + 19 + ldflags = [ 20 + "-w" 21 + "-s" 22 + "-X github.com/k1LoW/oshka/version.Version=${version}" 23 + ]; 24 + 25 + # Tests requires a running Docker instance 26 + doCheck = false; 27 + 28 + meta = with lib; { 29 + description = "Tool for extracting nested CI/CD supply chains and executing commands"; 30 + homepage = "https://github.com/k1LoW/oshka"; 31 + license = licenses.mit; 32 + maintainers = with maintainers; [ fab ]; 33 + }; 34 + }
+22
pkgs/development/tools/rust/cargo-sort/default.nix
···
··· 1 + { fetchFromGitHub, lib, rustPlatform }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "cargo-sort"; 5 + version = "1.0.5"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "devinr528"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "146aawikyjcxbj0dpnqia31xmplpwkl9w1gv7d9a5jvz8whvxrff"; 12 + }; 13 + 14 + cargoSha256 = "0xm37f285vmd674k5j72pcjg6zpmxlf46d9vppi9s3qaw0hsslpf"; 15 + 16 + meta = with lib; { 17 + description = "A tool to check that your Cargo.toml dependencies are sorted alphabetically"; 18 + homepage = "https://github.com/devinr528/cargo-sort"; 19 + license = with licenses; [ mit /* or */ asl20 ]; 20 + maintainers = with maintainers; [ figsoda ]; 21 + }; 22 + }
+2 -2
pkgs/games/legendary-gl/default.nix
··· 7 8 buildPythonApplication rec { 9 pname = "legendary-gl"; # Name in pypi 10 - version = "0.20.6"; 11 12 src = fetchFromGitHub { 13 owner = "derrod"; 14 repo = "legendary"; 15 rev = version; 16 - sha256 = "1v6jbnasz2ilcafs6qyl6na4a8cxy2lgwr0hqsja6d846rfqa8ad"; 17 }; 18 19 propagatedBuildInputs = [ requests ];
··· 7 8 buildPythonApplication rec { 9 pname = "legendary-gl"; # Name in pypi 10 + version = "0.20.10"; 11 12 src = fetchFromGitHub { 13 owner = "derrod"; 14 repo = "legendary"; 15 rev = version; 16 + sha256 = "sha256-/OttNHwS08gHx/ZpOuB6yxfK2cX3BbMeQLZC7iXKKrk="; 17 }; 18 19 propagatedBuildInputs = [ requests ];
+2 -2
pkgs/misc/vim-plugins/overrides.nix
··· 481 482 sqlite-lua = super.sqlite-lua.overrideAttrs (old: { 483 postPatch = '' 484 - substituteInPlace lua/sql/defs.lua \ 485 - --replace "vim.g.sql_clib_path or" "vim.g.sql_clib_path or '${sqlite.out}/lib/libsqlite3.so' or" 486 ''; 487 }); 488
··· 481 482 sqlite-lua = super.sqlite-lua.overrideAttrs (old: { 483 postPatch = '' 484 + substituteInPlace lua/sqlite/defs.lua \ 485 + --replace "vim.g.sqlite_clib_path" "vim.g.sqlite_clib_path or '${sqlite.out}/lib/libsqlite3.so'" 486 ''; 487 }); 488
+2 -2
pkgs/os-specific/linux/kernel/linux-5.10.nix
··· 3 with lib; 4 5 buildLinux (args // rec { 6 - version = "5.10.62"; 7 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 14 src = fetchurl { 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 - sha256 = "1cc6z2xzi1s69805jk4f91iarx19v0yyqvssx1f1mc0l9l1db389"; 17 }; 18 } // (args.argsOverride or {}))
··· 3 with lib; 4 5 buildLinux (args // rec { 6 + version = "5.10.63"; 7 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 14 src = fetchurl { 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 + sha256 = "0bnbkd4vbf43m37wab4zwvcv3wy3ixh4x1zrwlfhi845i21mx88r"; 17 }; 18 } // (args.argsOverride or {}))
+2 -2
pkgs/os-specific/linux/kernel/linux-5.13.nix
··· 3 with lib; 4 5 buildLinux (args // rec { 6 - version = "5.13.14"; 7 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 14 src = fetchurl { 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 - sha256 = "06lbjsbr86qa8yai5gfclbfxvcqsw33kxj9b4r93hh6z1wajmx82"; 17 }; 18 } // (args.argsOverride or { }))
··· 3 with lib; 4 5 buildLinux (args // rec { 6 + version = "5.13.15"; 7 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 14 src = fetchurl { 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 + sha256 = "06v2jgzq2l56bjbymcrnaybqvvr1q44c0k534v77b3l5bwwlq2rk"; 17 }; 18 } // (args.argsOverride or { }))
+2 -2
pkgs/os-specific/linux/kernel/linux-5.14.nix
··· 3 with lib; 4 5 buildLinux (args // rec { 6 - version = "5.14.1"; 7 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 14 src = fetchurl { 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 - sha256 = "1iq8s031fviccc4710biwl7gxqdimm3nhlvxd0m3fykvhhmcanq0"; 17 }; 18 } // (args.argsOverride or { }))
··· 3 with lib; 4 5 buildLinux (args // rec { 6 + version = "5.14.2"; 7 8 # modDirVersion needs to be x.y.z, will automatically add .0 if needed 9 modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg; ··· 13 14 src = fetchurl { 15 url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; 16 + sha256 = "05yw3i2c21dabdn5khyk60ds4h8krg5iyxk4zq1msv0igdfqf6gl"; 17 }; 18 } // (args.argsOverride or { }))
+2 -2
pkgs/servers/pounce/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "pounce"; 5 - version = "2.4"; 6 7 src = fetchzip { 8 url = "https://git.causal.agency/pounce/snapshot/pounce-${version}.tar.gz"; 9 - sha256 = "sha256-bEObiqgkSarYILwZE70OjRyEUy3QZg+FLocWljFRGNc="; 10 }; 11 12 buildInputs = [ libressl ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "pounce"; 5 + version = "2.5"; 6 7 src = fetchzip { 8 url = "https://git.causal.agency/pounce/snapshot/pounce-${version}.tar.gz"; 9 + sha256 = "0swbncsm888r95dwk13v1vii5sr3gah817dfah5v7zs8lsv1kgv5"; 10 }; 11 12 buildInputs = [ libressl ];
+4 -3
pkgs/servers/traefik/default.nix
··· 2 3 buildGoModule rec { 4 pname = "traefik"; 5 - version = "2.5.1"; 6 7 src = fetchzip { 8 url = "https://github.com/traefik/traefik/releases/download/v${version}/traefik-v${version}.src.tar.gz"; 9 - sha256 = "sha256-vO8sBksh5gRq+s7VXshs5wZw4ygqbJzG2J3iSEGl/Ws="; 10 stripRoot = false; 11 }; 12 13 - vendorSha256 = "sha256-tBUW6iBZZYc2OgSzFcDZ1C8YnyrXnuy3SdQiy8FPksM="; 14 15 doCheck = false; 16 ··· 33 meta = with lib; { 34 homepage = "https://traefik.io"; 35 description = "A modern reverse proxy"; 36 license = licenses.mit; 37 maintainers = with maintainers; [ vdemeester ]; 38 };
··· 2 3 buildGoModule rec { 4 pname = "traefik"; 5 + version = "2.5.2"; 6 7 src = fetchzip { 8 url = "https://github.com/traefik/traefik/releases/download/v${version}/traefik-v${version}.src.tar.gz"; 9 + sha256 = "1q93l7jb0vs1d324453gk307hlhav2g0xjqkcz3f43rxhb0jbwpk"; 10 stripRoot = false; 11 }; 12 13 + vendorSha256 = "054l0b6xlbl9sh2bisnydm9dha30jrafybb06ggzbjffsqcgj7qw"; 14 15 doCheck = false; 16 ··· 33 meta = with lib; { 34 homepage = "https://traefik.io"; 35 description = "A modern reverse proxy"; 36 + changelog = "https://github.com/traefik/traefik/raw/v${version}/CHANGELOG.md"; 37 license = licenses.mit; 38 maintainers = with maintainers; [ vdemeester ]; 39 };
+6 -1
pkgs/tools/misc/yubikey-manager/default.nix
··· 1 - { python3Packages, fetchFromGitHub, lib, yubikey-personalization, libu2f-host, libusb1 }: 2 3 python3Packages.buildPythonPackage rec { 4 pname = "yubikey-manager"; ··· 10 owner = "Yubico"; 11 sha256 = "sha256:0ycp7k6lkxzqwkc16fifhyqaqi7hl3351pwddsn18r5l83jnzdn2"; 12 }; 13 14 format = "pyproject"; 15
··· 1 + { python3Packages, fetchFromGitHub, lib, yubikey-personalization, libu2f-host, libusb1, procps }: 2 3 python3Packages.buildPythonPackage rec { 4 pname = "yubikey-manager"; ··· 10 owner = "Yubico"; 11 sha256 = "sha256:0ycp7k6lkxzqwkc16fifhyqaqi7hl3351pwddsn18r5l83jnzdn2"; 12 }; 13 + 14 + postPatch = '' 15 + substituteInPlace "ykman/pcsc/__init__.py" \ 16 + --replace '/usr/bin/pkill' '${procps}/bin/pkill' 17 + ''; 18 19 format = "pyproject"; 20
+33
pkgs/tools/networking/checkip/default.nix
···
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "checkip"; 8 + version = "0.2.2"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "jreisinger"; 12 + repo = pname; 13 + rev = "v${version}"; 14 + sha256 = "065426z4iak72h56qvp1vk86r2vw5rdqy3qi1zbw1l0hnyq83zwq"; 15 + }; 16 + 17 + vendorSha256 = "10hk2wfkpvnavs20q390qgaj1gj10j1fy8vlqb9s9f76gpb130h4"; 18 + 19 + postFixup = '' 20 + # Rename binary 21 + mv $out/bin/cmd $out/bin/${pname} 22 + ''; 23 + 24 + # Requires network 25 + doCheck = false; 26 + 27 + meta = with lib; { 28 + description = "CLI tool that checks an IP address using various public services"; 29 + homepage = "https://github.com/jreisinger/checkip"; 30 + license = licenses.asl20; 31 + maintainers = with maintainers; [ fab ]; 32 + }; 33 + }
+2 -2
pkgs/tools/networking/kea/default.nix
··· 14 15 stdenv.mkDerivation rec { 16 pname = "kea"; 17 - version = "1.9.10"; 18 19 src = fetchurl { 20 url = "https://ftp.isc.org/isc/${pname}/${version}/${pname}-${version}.tar.gz"; 21 - sha256 = "08pr2qav87jmrf074v8zbqyjkl51wf6r9hhgbkzhdav9d4f9kny3"; 22 }; 23 24 patches = [ ./dont-create-var.patch ];
··· 14 15 stdenv.mkDerivation rec { 16 pname = "kea"; 17 + version = "1.9.11"; 18 19 src = fetchurl { 20 url = "https://ftp.isc.org/isc/${pname}/${version}/${pname}-${version}.tar.gz"; 21 + sha256 = "sha256-fSyJYsAshtEviybA67UzGCWK2iHJYJy5tJIZxxzTfyU="; 22 }; 23 24 patches = [ ./dont-create-var.patch ];
+25
pkgs/tools/security/dorkscout/default.nix
···
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "dorkscout"; 8 + version = "1.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "R4yGM"; 12 + repo = pname; 13 + rev = version; 14 + sha256 = "0h2m458jxdm3xg0h2vb8yq1jc28jqwinv1pdqypdsbvsz48s0hxz"; 15 + }; 16 + 17 + vendorSha256 = "05vn9hd5r8cy45b3ixjch17v38p08k8di8gclq0i9rkz9bvy1nph"; 18 + 19 + meta = with lib; { 20 + description = "Tool to automate the work with Google dorks"; 21 + homepage = "https://github.com/R4yGM/dorkscout"; 22 + license = licenses.asl20; 23 + maintainers = with maintainers; [ fab ]; 24 + }; 25 + }
+28
pkgs/tools/security/kubescape/default.nix
···
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "kubescape"; 8 + version = "1.0.64"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "armosec"; 12 + repo = pname; 13 + rev = "v${version}"; 14 + sha256 = "0vc673w40cgjw6jxlwg9ggwzb7yvmsqshihms6ahspc3qiwz56ah"; 15 + }; 16 + 17 + vendorSha256 = "18mvv70g65pq1c7nn752j26d0vasx6cl2rqp5g1hg3cb61hjbn0n"; 18 + 19 + # One test is failing, disabling for now 20 + doCheck = false; 21 + 22 + meta = with lib; { 23 + description = "Tool for testing if Kubernetes is deployed securely"; 24 + homepage = "https://github.com/armosec/kubescape"; 25 + license = licenses.asl20; 26 + maintainers = with maintainers; [ fab ]; 27 + }; 28 + }
+12
pkgs/top-level/all-packages.nix
··· 1303 inherit (darwin.apple_sdk.frameworks) Security; 1304 }; 1305 1306 ec2_api_tools = callPackage ../tools/virtualization/ec2-api-tools { }; 1307 1308 ec2_ami_tools = callPackage ../tools/virtualization/ec2-ami-tools { }; ··· 4364 doomseeker = qt5.callPackage ../applications/misc/doomseeker { }; 4365 4366 doom-bcc = callPackage ../games/zdoom/bcc-git.nix { }; 4367 4368 sl1-to-photon = python3Packages.callPackage ../applications/misc/sl1-to-photon { }; 4369 ··· 7904 7905 os-prober = callPackage ../tools/misc/os-prober {}; 7906 7907 osl = callPackage ../development/compilers/osl { }; 7908 7909 osqp = callPackage ../development/libraries/science/math/osqp { }; ··· 12349 inherit (darwin.apple_sdk.frameworks) Security; 12350 }; 12351 cargo-readme = callPackage ../development/tools/rust/cargo-readme {}; 12352 cargo-sweep = callPackage ../development/tools/rust/cargo-sweep { }; 12353 cargo-sync-readme = callPackage ../development/tools/rust/cargo-sync-readme {}; 12354 cargo-udeps = callPackage ../development/tools/rust/cargo-udeps { ··· 12408 sbcl_2_0_9 = callPackage ../development/compilers/sbcl/2.0.9.nix {}; 12409 sbcl_2_1_1 = callPackage ../development/compilers/sbcl/2.1.1.nix {}; 12410 sbcl_2_1_2 = callPackage ../development/compilers/sbcl/2.1.2.nix {}; 12411 sbcl = sbcl_2_1_2; 12412 12413 roswell = callPackage ../development/tools/roswell/default.nix { }; ··· 14143 kubeone = callPackage ../applications/networking/cluster/kubeone { }; 14144 14145 kubeprompt = callPackage ../development/tools/kubeprompt { }; 14146 14147 kubesec = callPackage ../tools/security/kubesec { }; 14148 ··· 31549 norwester-font = callPackage ../data/fonts/norwester {}; 31550 31551 nut = callPackage ../applications/misc/nut { }; 31552 31553 nvd = callPackage ../tools/package-management/nvd { }; 31554
··· 1303 inherit (darwin.apple_sdk.frameworks) Security; 1304 }; 1305 1306 + checkip = callPackage ../tools/networking/checkip { }; 1307 + 1308 ec2_api_tools = callPackage ../tools/virtualization/ec2-api-tools { }; 1309 1310 ec2_ami_tools = callPackage ../tools/virtualization/ec2-ami-tools { }; ··· 4366 doomseeker = qt5.callPackage ../applications/misc/doomseeker { }; 4367 4368 doom-bcc = callPackage ../games/zdoom/bcc-git.nix { }; 4369 + 4370 + dorkscout = callPackage ../tools/security/dorkscout { }; 4371 4372 sl1-to-photon = python3Packages.callPackage ../applications/misc/sl1-to-photon { }; 4373 ··· 7908 7909 os-prober = callPackage ../tools/misc/os-prober {}; 7910 7911 + oshka = callPackage ../development/tools/oshka {}; 7912 + 7913 osl = callPackage ../development/compilers/osl { }; 7914 7915 osqp = callPackage ../development/libraries/science/math/osqp { }; ··· 12355 inherit (darwin.apple_sdk.frameworks) Security; 12356 }; 12357 cargo-readme = callPackage ../development/tools/rust/cargo-readme {}; 12358 + cargo-sort = callPackage ../development/tools/rust/cargo-sort { }; 12359 cargo-sweep = callPackage ../development/tools/rust/cargo-sweep { }; 12360 cargo-sync-readme = callPackage ../development/tools/rust/cargo-sync-readme {}; 12361 cargo-udeps = callPackage ../development/tools/rust/cargo-udeps { ··· 12415 sbcl_2_0_9 = callPackage ../development/compilers/sbcl/2.0.9.nix {}; 12416 sbcl_2_1_1 = callPackage ../development/compilers/sbcl/2.1.1.nix {}; 12417 sbcl_2_1_2 = callPackage ../development/compilers/sbcl/2.1.2.nix {}; 12418 + sbcl_2_1_8 = callPackage ../development/compilers/sbcl/2.1.8.nix {}; 12419 sbcl = sbcl_2_1_2; 12420 12421 roswell = callPackage ../development/tools/roswell/default.nix { }; ··· 14151 kubeone = callPackage ../applications/networking/cluster/kubeone { }; 14152 14153 kubeprompt = callPackage ../development/tools/kubeprompt { }; 14154 + 14155 + kubescape = callPackage ../tools/security/kubescape { }; 14156 14157 kubesec = callPackage ../tools/security/kubesec { }; 14158 ··· 31559 norwester-font = callPackage ../data/fonts/norwester {}; 31560 31561 nut = callPackage ../applications/misc/nut { }; 31562 + 31563 + nhentai = callPackage ../applications/misc/nhentai { }; 31564 31565 nvd = callPackage ../tools/package-management/nvd { }; 31566
+2
pkgs/top-level/python-packages.nix
··· 2965 2966 glcontext = callPackage ../development/python-modules/glcontext { }; 2967 2968 glob2 = callPackage ../development/python-modules/glob2 { }; 2969 2970 globre = callPackage ../development/python-modules/globre { };
··· 2965 2966 glcontext = callPackage ../development/python-modules/glcontext { }; 2967 2968 + glfw = callPackage ../development/python-modules/glfw { }; 2969 + 2970 glob2 = callPackage ../development/python-modules/glob2 { }; 2971 2972 globre = callPackage ../development/python-modules/globre { };