Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub 59ab4de3 b43f2e92

+463 -969
+7
nixos/doc/manual/from_md/release-notes/rl-2111.section.xml
··· 64 this version for the entire lifecycle of the 21.11 release. 65 </para> 66 </listitem> 67 </itemizedlist> 68 </section> 69 <section xml:id="other-notable-changes">
··· 64 this version for the entire lifecycle of the 21.11 release. 65 </para> 66 </listitem> 67 + <listitem> 68 + <para> 69 + Those making use of <literal>buildBazelPackage</literal> will 70 + need to regenerate the fetch hashes (preferred), or set 71 + <literal>fetchConfigured = false;</literal>. 72 + </para> 73 + </listitem> 74 </itemizedlist> 75 </section> 76 <section xml:id="other-notable-changes">
+3
nixos/doc/manual/release-notes/rl-2111.section.md
··· 28 * PHP 7.3 is no longer supported due to upstream not supporting this 29 version for the entire lifecycle of the 21.11 release. 30 31 ## Other Notable Changes
··· 28 * PHP 7.3 is no longer supported due to upstream not supporting this 29 version for the entire lifecycle of the 21.11 release. 30 31 + * Those making use of `buildBazelPackage` will need to regenerate the fetch 32 + hashes (preferred), or set `fetchConfigured = false;`. 33 + 34 ## Other Notable Changes
+3 -1
nixos/modules/services/system/self-deploy.nix
··· 37 }; 38 39 nixAttribute = lib.mkOption { 40 - type = lib.types.str; 41 42 description = '' 43 Attribute of `nixFile` that builds the current system.
··· 37 }; 38 39 nixAttribute = lib.mkOption { 40 + type = with lib.types; nullOr str; 41 + 42 + default = null; 43 44 description = '' 45 Attribute of `nixFile` that builds the current system.
+2 -2
nixos/modules/services/x11/desktop-managers/gnome.nix
··· 180 enable = mkOption { 181 type = types.bool; 182 default = false; 183 - description = "Enable Gnome 3 desktop manager."; 184 }; 185 186 sessionPath = mkOption { ··· 283 (mkIf (cfg.enable || flashbackEnabled) { 284 # Seed our configuration into nixos-generate-config 285 system.nixos-generate-config.desktopConfiguration = ['' 286 - # Enable the GNOME 3 Desktop Environment. 287 services.xserver.displayManager.gdm.enable = true; 288 services.xserver.desktopManager.gnome.enable = true; 289 ''];
··· 180 enable = mkOption { 181 type = types.bool; 182 default = false; 183 + description = "Enable GNOME desktop manager."; 184 }; 185 186 sessionPath = mkOption { ··· 283 (mkIf (cfg.enable || flashbackEnabled) { 284 # Seed our configuration into nixos-generate-config 285 system.nixos-generate-config.desktopConfiguration = ['' 286 + # Enable the GNOME Desktop Environment. 287 services.xserver.displayManager.gdm.enable = true; 288 services.xserver.desktopManager.gnome.enable = true; 289 ''];
+2 -2
pkgs/applications/audio/bshapr/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "bshapr"; 5 - version = "0.12"; 6 7 src = fetchFromGitHub { 8 owner = "sjaehn"; 9 repo = "BShapr"; 10 rev = "v${version}"; 11 - sha256 = "sha256-2DySlD5ZTxeQ2U++Dr67bek5oVbAiOHCxM6S5rTTZN0="; 12 }; 13 14 nativeBuildInputs = [ pkg-config ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "bshapr"; 5 + version = "0.13"; 6 7 src = fetchFromGitHub { 8 owner = "sjaehn"; 9 repo = "BShapr"; 10 rev = "v${version}"; 11 + sha256 = "sha256-9I4DPRl6i/VL8Etw3qLGZkP45BGsbxFxNOvRy3B3I+M="; 12 }; 13 14 nativeBuildInputs = [ pkg-config ];
+56 -47
pkgs/applications/editors/emacs/elisp-packages/manual-packages.nix
··· 3 elisp-ffi = melpaBuild rec { 4 pname = "elisp-ffi"; 5 version = "1.0.0"; 6 src = pkgs.fetchFromGitHub { 7 owner = "skeeto"; 8 repo = "elisp-ffi"; 9 rev = version; 10 sha256 = "0z2n3h5l5fj8wl8i1ilfzv11l3zba14sgph6gz7dx7q12cnp9j22"; 11 }; 12 buildInputs = [ pkgs.libffi ]; 13 preBuild = "make"; 14 recipe = pkgs.writeText "recipe" '' 15 (elisp-ffi 16 :repo "skeeto/elisp-ffi" 17 :fetcher github 18 :files ("ffi-glue" "ffi.el")) 19 ''; 20 meta = { 21 description = "Emacs Lisp Foreign Function Interface"; 22 longDescription = '' ··· 65 }; 66 }; 67 68 - apheleia = callPackage ./apheleia {}; 69 - 70 - emacspeak = callPackage ./emacspeak {}; 71 - 72 - ess-R-object-popup = 73 - callPackage ./ess-R-object-popup { }; 74 - 75 - evil-markdown = callPackage ./evil-markdown { }; 76 - 77 - font-lock-plus = callPackage ./font-lock-plus { }; 78 - 79 ghc-mod = melpaBuild { 80 pname = "ghc"; 81 version = pkgs.haskellPackages.ghc-mod.version; 82 src = pkgs.haskellPackages.ghc-mod.src; 83 packageRequires = [ haskell-mode ]; 84 propagatedUserEnvPkgs = [ pkgs.haskellPackages.ghc-mod ]; 85 recipe = pkgs.writeText "recipe" '' 86 (ghc-mod :repo "DanielG/ghc-mod" :fetcher github :files ("elisp/*.el")) 87 ''; 88 fileSpecs = [ "elisp/*.el" ]; 89 meta = { 90 description = "An extension of haskell-mode that provides completion of symbols and documentation browsing"; 91 license = bsd3; ··· 97 haskell-unicode-input-method = melpaBuild { 98 pname = "emacs-haskell-unicode-input-method"; 99 version = "20110905.2307"; 100 src = pkgs.fetchFromGitHub { 101 owner = "roelvandijk"; 102 repo = "emacs-haskell-unicode-input-method"; 103 rev = "d8d168148c187ed19350bb7a1a190217c2915a63"; 104 sha256 = "09b7bg2s9aa4s8f2kdqs4xps3jxkq5wsvbi87ih8b6id38blhf78"; 105 }; 106 recipe = pkgs.writeText "recipe" '' 107 (emacs-haskell-unicode-input-method 108 :repo "roelvandijk/emacs-haskell-unicode-input-method" 109 :fetcher github) 110 ''; 111 packageRequires = []; 112 meta = { 113 homepage = "https://melpa.org/#haskell-unicode-input-method/"; 114 license = lib.licenses.free; 115 }; 116 }; 117 118 - helm-words = callPackage ./helm-words { }; 119 - 120 - isearch-plus = callPackage ./isearch-plus { }; 121 - 122 - isearch-prop = callPackage ./isearch-prop { }; 123 - 124 - jam-mode = callPackage ./jam-mode { }; 125 - 126 llvm-mode = trivialBuild { 127 pname = "llvm-mode"; 128 inherit (pkgs.llvmPackages.llvm) src version; ··· 150 }; 151 152 patches = [ 153 (pkgs.fetchpatch { 154 url = "https://github.com/alphapapa/matrix-client.el/commit/5f49e615c7cf2872f48882d3ee5c4a2bff117d07.patch"; 155 sha256 = "07bvid7s1nv1377p5n61q46yww3m1w6bw4vnd4iyayw3fby1lxbm"; ··· 187 188 }; 189 190 - mu4e-patch = callPackage ./mu4e-patch { }; 191 - 192 - org-mac-link = 193 - callPackage ./org-mac-link { }; 194 - 195 ott-mode = self.trivialBuild { 196 pname = "ott-mod"; 197 ··· 205 }; 206 }; 207 208 - perl-completion = 209 - callPackage ./perl-completion { }; 210 211 pod-mode = callPackage ./pod-mode { }; 212 213 railgun = callPackage ./railgun { }; 214 ··· 243 # closer to the old outdated package infra. 244 # 245 # Ideally this should be dropped some time during/after 20.03 246 bbdb3 = self.melpaStablePackages.bbdb; 247 jade = self.jade-mode; 248 - # scalaMode2 = null; # No clear mapping as of now 249 - flymakeCursor = self.melpaStablePackages.flymake-cursor; 250 - cryptol = self.melpaStablePackages.cryptol-mode; 251 maudeMode = self.maude-mode; 252 phpMode = self.melpaStablePackages.php-mode; 253 - idris = self.melpaStablePackages.idris-mode; 254 rainbowDelimiters = self.melpaStablePackages.rainbow-delimiters; 255 - colorTheme = self.color-theme; 256 sbtMode = self.melpaStablePackages.sbt-mode; 257 - markdownMode = self.melpaStablePackages.markdown-mode; 258 scalaMode1 = self.melpaStablePackages.scala-mode; 259 - prologMode = self.prolog-mode; 260 - hsc3Mode = self.hsc3-mode; 261 - graphvizDot = self.melpaStablePackages.graphviz-dot-mode; 262 - proofgeneral_HEAD = self.proof-general; 263 - proofgeneral = self.melpaStablePackages.proof-general; 264 - haskellMode = self.melpaStablePackages.haskell-mode; 265 writeGood = self.melpaStablePackages.writegood-mode; 266 - erlangMode = self.melpaStablePackages.erlang; 267 - d = self.melpaStablePackages.d-mode; 268 - autoComplete = self.melpaStablePackages.auto-complete; 269 - tuaregMode = self.melpaStablePackages.tuareg; 270 - structuredHaskellMode = self.melpaStablePackages.shm; 271 xmlRpc = self.melpaStablePackages.xml-rpc; 272 - emacsw3m = self.w3m; 273 - loremIpsum = self.lorem-ipsum; 274 - js2 = self.melpaStablePackages.js2-mode; 275 - 276 }
··· 3 elisp-ffi = melpaBuild rec { 4 pname = "elisp-ffi"; 5 version = "1.0.0"; 6 + 7 src = pkgs.fetchFromGitHub { 8 owner = "skeeto"; 9 repo = "elisp-ffi"; 10 rev = version; 11 sha256 = "0z2n3h5l5fj8wl8i1ilfzv11l3zba14sgph6gz7dx7q12cnp9j22"; 12 }; 13 + 14 buildInputs = [ pkgs.libffi ]; 15 + 16 preBuild = "make"; 17 + 18 recipe = pkgs.writeText "recipe" '' 19 (elisp-ffi 20 :repo "skeeto/elisp-ffi" 21 :fetcher github 22 :files ("ffi-glue" "ffi.el")) 23 ''; 24 + 25 meta = { 26 description = "Emacs Lisp Foreign Function Interface"; 27 longDescription = '' ··· 70 }; 71 }; 72 73 ghc-mod = melpaBuild { 74 pname = "ghc"; 75 version = pkgs.haskellPackages.ghc-mod.version; 76 + 77 src = pkgs.haskellPackages.ghc-mod.src; 78 + 79 packageRequires = [ haskell-mode ]; 80 + 81 propagatedUserEnvPkgs = [ pkgs.haskellPackages.ghc-mod ]; 82 + 83 recipe = pkgs.writeText "recipe" '' 84 (ghc-mod :repo "DanielG/ghc-mod" :fetcher github :files ("elisp/*.el")) 85 ''; 86 + 87 fileSpecs = [ "elisp/*.el" ]; 88 + 89 meta = { 90 description = "An extension of haskell-mode that provides completion of symbols and documentation browsing"; 91 license = bsd3; ··· 97 haskell-unicode-input-method = melpaBuild { 98 pname = "emacs-haskell-unicode-input-method"; 99 version = "20110905.2307"; 100 + 101 src = pkgs.fetchFromGitHub { 102 owner = "roelvandijk"; 103 repo = "emacs-haskell-unicode-input-method"; 104 rev = "d8d168148c187ed19350bb7a1a190217c2915a63"; 105 sha256 = "09b7bg2s9aa4s8f2kdqs4xps3jxkq5wsvbi87ih8b6id38blhf78"; 106 }; 107 + 108 recipe = pkgs.writeText "recipe" '' 109 (emacs-haskell-unicode-input-method 110 :repo "roelvandijk/emacs-haskell-unicode-input-method" 111 :fetcher github) 112 ''; 113 + 114 packageRequires = []; 115 + 116 meta = { 117 homepage = "https://melpa.org/#haskell-unicode-input-method/"; 118 license = lib.licenses.free; 119 }; 120 }; 121 122 llvm-mode = trivialBuild { 123 pname = "llvm-mode"; 124 inherit (pkgs.llvmPackages.llvm) src version; ··· 146 }; 147 148 patches = [ 149 + # Fix: avatar loading when imagemagick support is not available 150 (pkgs.fetchpatch { 151 url = "https://github.com/alphapapa/matrix-client.el/commit/5f49e615c7cf2872f48882d3ee5c4a2bff117d07.patch"; 152 sha256 = "07bvid7s1nv1377p5n61q46yww3m1w6bw4vnd4iyayw3fby1lxbm"; ··· 184 185 }; 186 187 ott-mode = self.trivialBuild { 188 pname = "ott-mod"; 189 ··· 197 }; 198 }; 199 200 + # Packages made the classical callPackage way 201 + 202 + emacspeak = callPackage ./emacspeak { }; 203 + 204 + ess-R-object-popup = callPackage ./ess-R-object-popup { }; 205 + 206 + font-lock-plus = callPackage ./font-lock-plus { }; 207 + 208 + helm-words = callPackage ./helm-words { }; 209 + 210 + jam-mode = callPackage ./jam-mode { }; 211 + 212 + nano-theme = callPackage ./nano-theme { }; 213 + 214 + org-mac-link = callPackage ./org-mac-link { }; 215 + 216 + perl-completion = callPackage ./perl-completion { }; 217 218 pod-mode = callPackage ./pod-mode { }; 219 + 220 + power-mode = callPackage ./power-mode { }; 221 222 railgun = callPackage ./railgun { }; 223 ··· 252 # closer to the old outdated package infra. 253 # 254 # Ideally this should be dropped some time during/after 20.03 255 + 256 + autoComplete = self.melpaStablePackages.auto-complete; 257 bbdb3 = self.melpaStablePackages.bbdb; 258 + colorTheme = self.color-theme; 259 + cryptol = self.melpaStablePackages.cryptol-mode; 260 + d = self.melpaStablePackages.d-mode; 261 + emacsw3m = self.w3m; 262 + erlangMode = self.melpaStablePackages.erlang; 263 + flymakeCursor = self.melpaStablePackages.flymake-cursor; 264 + graphvizDot = self.melpaStablePackages.graphviz-dot-mode; 265 + haskellMode = self.melpaStablePackages.haskell-mode; 266 + hsc3Mode = self.hsc3-mode; 267 + idris = self.melpaStablePackages.idris-mode; 268 jade = self.jade-mode; 269 + js2 = self.melpaStablePackages.js2-mode; 270 + loremIpsum = self.lorem-ipsum; 271 + markdownMode = self.melpaStablePackages.markdown-mode; 272 maudeMode = self.maude-mode; 273 phpMode = self.melpaStablePackages.php-mode; 274 + prologMode = self.prolog-mode; 275 + proofgeneral = self.melpaStablePackages.proof-general; 276 + proofgeneral_HEAD = self.proof-general; 277 rainbowDelimiters = self.melpaStablePackages.rainbow-delimiters; 278 sbtMode = self.melpaStablePackages.sbt-mode; 279 scalaMode1 = self.melpaStablePackages.scala-mode; 280 + # scalaMode2 = null; # No clear mapping as of now 281 + structuredHaskellMode = self.melpaStablePackages.shm; 282 + tuaregMode = self.melpaStablePackages.tuareg; 283 writeGood = self.melpaStablePackages.writegood-mode; 284 xmlRpc = self.melpaStablePackages.xml-rpc; 285 }
+30
pkgs/applications/editors/emacs/elisp-packages/nano-theme/default.nix
···
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , emacs 5 + }: 6 + 7 + stdenv.mkDerivation rec { 8 + pname = "nano-theme"; 9 + version = "2021-06-05"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "rougier"; 13 + repo = pname; 14 + rev = "99ff1c5e78296a073c6e63b966045e0d83a136e7"; 15 + hash = "sha256-IDVnl4J4hx2mlLaiA+tKxxRGcIyBULr2HBeY/GMHD90="; 16 + }; 17 + 18 + installPhase = '' 19 + runHook preInstall 20 + mkdir -p $out/share/emacs/site-lisp 21 + install *.el $out/share/emacs/site-lisp 22 + runHook postInstall 23 + ''; 24 + 25 + meta = { 26 + homepage = "https://github.com/rougier/nano-theme"; 27 + description = "GNU Emacs / N Λ N O Theme"; 28 + inherit (emacs.meta) platforms; 29 + }; 30 + }
+30
pkgs/applications/editors/emacs/elisp-packages/power-mode/default.nix
···
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , emacs 5 + }: 6 + 7 + stdenv.mkDerivation rec { 8 + pname = "power-mode"; 9 + version = "2021-06-06"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "elizagamedev"; 13 + repo = "power-mode.el"; 14 + rev = "940e0aa36220f863e8f43840b4ed634b464fbdbb"; 15 + hash = "sha256-Wy8o9QTWqvH9cP7xsTpF5QSd4mWNIPXJTadoADKeHWY="; 16 + }; 17 + 18 + installPhase = '' 19 + runHook preInstall 20 + mkdir -p $out/share/emacs/site-lisp 21 + install *.el $out/share/emacs/site-lisp 22 + runHook postInstall 23 + ''; 24 + 25 + meta = { 26 + homepage = "https://github.com/rougier/nano-theme"; 27 + description = "Imbue Emacs with power!"; 28 + inherit (emacs.meta) platforms; 29 + }; 30 + }
+19 -7
pkgs/applications/editors/emacs/elisp-packages/tramp/default.nix
··· 1 - { lib, stdenv, fetchurl, emacs, texinfo }: 2 3 stdenv.mkDerivation rec { 4 - name = "tramp-2.4.2"; 5 src = fetchurl { 6 - url = "mirror://gnu/tramp/${name}.tar.gz"; 7 - sha256 = "082nwvi99y0bvpl1yhn4yjc8a613jh1pdck253lxn062lkcxxw61"; 8 }; 9 - buildInputs = [ emacs texinfo ]; 10 meta = { 11 - description = "Transparently access remote files from Emacs. Newer versions than built-in."; 12 homepage = "https://www.gnu.org/software/tramp"; 13 license = lib.licenses.gpl3Plus; 14 - platforms = lib.platforms.all; 15 }; 16 }
··· 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , emacs 5 + , texinfo 6 + }: 7 8 stdenv.mkDerivation rec { 9 + pname = "tramp"; 10 + version = "2.5.0"; 11 + 12 src = fetchurl { 13 + url = "mirror://gnu/tramp/${pname}-${version}.tar.gz"; 14 + sha256 = "sha256-w+6HJA8kFb75Z+7vM1zDnzOnkSSIXKnLVyCcEh+nMGY="; 15 }; 16 + 17 + buildInputs = [ 18 + emacs 19 + texinfo 20 + ]; 21 + 22 meta = { 23 homepage = "https://www.gnu.org/software/tramp"; 24 + description = "Transparently access remote files from Emacs. Newer versions than built-in."; 25 license = lib.licenses.gpl3Plus; 26 + inherit (emacs.meta) platforms; 27 }; 28 }
+2 -2
pkgs/applications/misc/archivy/default.nix
··· 21 22 buildPythonApplication rec { 23 pname = "archivy"; 24 - version = "1.1.4"; 25 26 src = fetchPypi { 27 inherit pname version; 28 - sha256 = "sha256-oSmwQcKvp9RABmc7aq6fdLOZapMauIi6+7azVTXVb30="; 29 }; 30 31 # Relax some dependencies
··· 21 22 buildPythonApplication rec { 23 pname = "archivy"; 24 + version = "1.3.1"; 25 26 src = fetchPypi { 27 inherit pname version; 28 + sha256 = "sha256-g7H22zJOQuxSmoJ3373eRcbderC67vkuiLN1CgaytFM="; 29 }; 30 31 # Relax some dependencies
+2 -11
pkgs/applications/networking/instant-messengers/dino/default.nix
··· 18 19 stdenv.mkDerivation rec { 20 pname = "dino"; 21 - version = "0.2.0"; 22 23 src = fetchFromGitHub { 24 owner = "dino"; 25 repo = "dino"; 26 rev = "v${version}"; 27 - sha256 = "0wy1hb3kz3k4gqqwx308n37cqag2d017jwfz0b5s30nkx2pbwspw"; 28 }; 29 - 30 - patches = [ 31 - # Fixes https://github.com/dino/dino/issues/1010 (double' is not a supported generic type argument) 32 - (fetchpatch { 33 - name = "dino-vala-boxing.patch"; 34 - url = "https://github.com/dino/dino/commit/9acb54df9254609f2fe4de83c9047d408412de28.patch"; 35 - sha256 = "1jz4r7d8b1ljwgq846wihp864b6gjdkgh6fnmxh13b2i10x52xsm"; 36 - }) 37 - ]; 38 39 nativeBuildInputs = [ 40 vala
··· 18 19 stdenv.mkDerivation rec { 20 pname = "dino"; 21 + version = "0.2.1"; 22 23 src = fetchFromGitHub { 24 owner = "dino"; 25 repo = "dino"; 26 rev = "v${version}"; 27 + sha256 = "11m38syqzb1z92wmdaf45gryl6gjxwbcnk32j4p984ipqj2vdzd8"; 28 }; 29 30 nativeBuildInputs = [ 31 vala
+5 -4
pkgs/applications/networking/instant-messengers/element/element-desktop-package.json
··· 2 "name": "element-desktop", 3 "productName": "Element", 4 "main": "src/electron-main.js", 5 - "version": "1.7.29", 6 "description": "A feature-rich client for Matrix.org", 7 "author": "Element", 8 "repository": { ··· 47 "electron-builder-squirrel-windows": "22.10.5", 48 "electron-devtools-installer": "^3.1.1", 49 "electron-notarize": "^1.0.0", 50 - "eslint": "7.3.1", 51 - "eslint-config-matrix-org": "^0.1.2", 52 "find-npm-prefix": "^1.0.2", 53 "fs-extra": "^8.1.0", 54 "glob": "^7.1.6", ··· 67 }, 68 "build": { 69 "appId": "im.riot.app", 70 - "electronVersion": "12.0.2", 71 "files": [ 72 "package.json", 73 {
··· 2 "name": "element-desktop", 3 "productName": "Element", 4 "main": "src/electron-main.js", 5 + "version": "1.7.30", 6 "description": "A feature-rich client for Matrix.org", 7 "author": "Element", 8 "repository": { ··· 47 "electron-builder-squirrel-windows": "22.10.5", 48 "electron-devtools-installer": "^3.1.1", 49 "electron-notarize": "^1.0.0", 50 + "eslint": "7.18.0", 51 + "eslint-config-google": "^0.14.0", 52 + "eslint-plugin-matrix-org": "github:matrix-org/eslint-plugin-matrix-org#main", 53 "find-npm-prefix": "^1.0.2", 54 "fs-extra": "^8.1.0", 55 "glob": "^7.1.6", ··· 68 }, 69 "build": { 70 "appId": "im.riot.app", 71 + "electronVersion": "12.0.9", 72 "files": [ 73 "package.json", 74 {
+124 -796
pkgs/applications/networking/instant-messengers/element/element-desktop-yarndeps.nix
··· 26 }; 27 } 28 { 29 - name = "_babel_code_frame___code_frame_7.10.4.tgz"; 30 - path = fetchurl { 31 - name = "_babel_code_frame___code_frame_7.10.4.tgz"; 32 - url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz"; 33 - sha1 = "168da1a36e90da68ae8d49c0f1b48c7c6249213a"; 34 - }; 35 - } 36 - { 37 name = "_babel_code_frame___code_frame_7.12.13.tgz"; 38 path = fetchurl { 39 name = "_babel_code_frame___code_frame_7.12.13.tgz"; ··· 42 }; 43 } 44 { 45 - name = "_babel_generator___generator_7.10.5.tgz"; 46 - path = fetchurl { 47 - name = "_babel_generator___generator_7.10.5.tgz"; 48 - url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.10.5.tgz"; 49 - sha1 = "1b903554bc8c583ee8d25f1e8969732e6b829a69"; 50 - }; 51 - } 52 - { 53 name = "_babel_generator___generator_7.13.16.tgz"; 54 path = fetchurl { 55 name = "_babel_generator___generator_7.13.16.tgz"; 56 url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.13.16.tgz"; 57 sha1 = "0befc287031a201d84cdfc173b46b320ae472d14"; 58 - }; 59 - } 60 - { 61 - name = "_babel_helper_function_name___helper_function_name_7.10.4.tgz"; 62 - path = fetchurl { 63 - name = "_babel_helper_function_name___helper_function_name_7.10.4.tgz"; 64 - url = "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz"; 65 - sha1 = "d2d3b20c59ad8c47112fa7d2a94bc09d5ef82f1a"; 66 }; 67 } 68 { ··· 74 }; 75 } 76 { 77 - name = "_babel_helper_get_function_arity___helper_get_function_arity_7.10.4.tgz"; 78 - path = fetchurl { 79 - name = "_babel_helper_get_function_arity___helper_get_function_arity_7.10.4.tgz"; 80 - url = "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz"; 81 - sha1 = "98c1cbea0e2332f33f9a4661b8ce1505b2c19ba2"; 82 - }; 83 - } 84 - { 85 name = "_babel_helper_get_function_arity___helper_get_function_arity_7.12.13.tgz"; 86 path = fetchurl { 87 name = "_babel_helper_get_function_arity___helper_get_function_arity_7.12.13.tgz"; ··· 90 }; 91 } 92 { 93 - name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.10.4.tgz"; 94 - path = fetchurl { 95 - name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.10.4.tgz"; 96 - url = "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.10.4.tgz"; 97 - sha1 = "2c70576eaa3b5609b24cb99db2888cc3fc4251d1"; 98 - }; 99 - } 100 - { 101 name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.12.13.tgz"; 102 path = fetchurl { 103 name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.12.13.tgz"; 104 url = "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz"; 105 sha1 = "e9430be00baf3e88b0e13e6f9d4eaf2136372b05"; 106 - }; 107 - } 108 - { 109 - name = "_babel_helper_validator_identifier___helper_validator_identifier_7.10.4.tgz"; 110 - path = fetchurl { 111 - name = "_babel_helper_validator_identifier___helper_validator_identifier_7.10.4.tgz"; 112 - url = "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz"; 113 - sha1 = "a78c7a7251e01f616512d31b10adcf52ada5e0d2"; 114 }; 115 } 116 { ··· 130 }; 131 } 132 { 133 - name = "_babel_highlight___highlight_7.10.4.tgz"; 134 - path = fetchurl { 135 - name = "_babel_highlight___highlight_7.10.4.tgz"; 136 - url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz"; 137 - sha1 = "7d1bdfd65753538fabe6c38596cdb76d9ac60143"; 138 - }; 139 - } 140 - { 141 name = "_babel_highlight___highlight_7.13.10.tgz"; 142 path = fetchurl { 143 name = "_babel_highlight___highlight_7.13.10.tgz"; ··· 146 }; 147 } 148 { 149 - name = "_babel_parser___parser_7.10.5.tgz"; 150 - path = fetchurl { 151 - name = "_babel_parser___parser_7.10.5.tgz"; 152 - url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.10.5.tgz"; 153 - sha1 = "e7c6bf5a7deff957cec9f04b551e2762909d826b"; 154 - }; 155 - } 156 - { 157 name = "_babel_parser___parser_7.13.16.tgz"; 158 path = fetchurl { 159 name = "_babel_parser___parser_7.13.16.tgz"; ··· 167 name = "_babel_runtime___runtime_7.11.2.tgz"; 168 url = "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.11.2.tgz"; 169 sha1 = "f549c13c754cc40b87644b9fa9f09a6a95fe0736"; 170 - }; 171 - } 172 - { 173 - name = "_babel_template___template_7.10.4.tgz"; 174 - path = fetchurl { 175 - name = "_babel_template___template_7.10.4.tgz"; 176 - url = "https://registry.yarnpkg.com/@babel/template/-/template-7.10.4.tgz"; 177 - sha1 = "3251996c4200ebc71d1a8fc405fba940f36ba278"; 178 }; 179 } 180 { ··· 194 }; 195 } 196 { 197 - name = "_babel_traverse___traverse_7.10.5.tgz"; 198 - path = fetchurl { 199 - name = "_babel_traverse___traverse_7.10.5.tgz"; 200 - url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.10.5.tgz"; 201 - sha1 = "77ce464f5b258be265af618d8fddf0536f20b564"; 202 - }; 203 - } 204 - { 205 - name = "_babel_types___types_7.10.5.tgz"; 206 - path = fetchurl { 207 - name = "_babel_types___types_7.10.5.tgz"; 208 - url = "https://registry.yarnpkg.com/@babel/types/-/types-7.10.5.tgz"; 209 - sha1 = "d88ae7e2fde86bfbfe851d4d81afa70a997b5d15"; 210 - }; 211 - } 212 - { 213 name = "_babel_types___types_7.13.17.tgz"; 214 path = fetchurl { 215 name = "_babel_types___types_7.13.17.tgz"; ··· 231 name = "_electron_universal___universal_1.0.4.tgz"; 232 url = "https://registry.yarnpkg.com/@electron/universal/-/universal-1.0.4.tgz"; 233 sha1 = "231ac246c39d45b80e159bd21c3f9027dcaa10f5"; 234 }; 235 } 236 { ··· 530 }; 531 } 532 { 533 - name = "_types_eslint_visitor_keys___eslint_visitor_keys_1.0.0.tgz"; 534 - path = fetchurl { 535 - name = "_types_eslint_visitor_keys___eslint_visitor_keys_1.0.0.tgz"; 536 - url = "https://registry.yarnpkg.com/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz"; 537 - sha1 = "1ee30d79544ca84d68d4b3cdb0af4f205663dd2d"; 538 - }; 539 - } 540 - { 541 name = "_types_fs_extra___fs_extra_9.0.9.tgz"; 542 path = fetchurl { 543 name = "_types_fs_extra___fs_extra_9.0.9.tgz"; ··· 554 }; 555 } 556 { 557 - name = "_types_json_schema___json_schema_7.0.5.tgz"; 558 - path = fetchurl { 559 - name = "_types_json_schema___json_schema_7.0.5.tgz"; 560 - url = "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.5.tgz"; 561 - sha1 = "dcce4430e64b443ba8945f0290fb564ad5bac6dd"; 562 - }; 563 - } 564 - { 565 - name = "_types_json5___json5_0.0.29.tgz"; 566 - path = fetchurl { 567 - name = "_types_json5___json5_0.0.29.tgz"; 568 - url = "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz"; 569 - sha1 = "ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"; 570 - }; 571 - } 572 - { 573 name = "_types_minimatch___minimatch_3.0.4.tgz"; 574 path = fetchurl { 575 name = "_types_minimatch___minimatch_3.0.4.tgz"; ··· 626 }; 627 } 628 { 629 - name = "_typescript_eslint_eslint_plugin___eslint_plugin_3.7.0.tgz"; 630 - path = fetchurl { 631 - name = "_typescript_eslint_eslint_plugin___eslint_plugin_3.7.0.tgz"; 632 - url = "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-3.7.0.tgz"; 633 - sha1 = "0f91aa3c83d019591719e597fbdb73a59595a263"; 634 - }; 635 - } 636 - { 637 - name = "_typescript_eslint_experimental_utils___experimental_utils_3.7.0.tgz"; 638 - path = fetchurl { 639 - name = "_typescript_eslint_experimental_utils___experimental_utils_3.7.0.tgz"; 640 - url = "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-3.7.0.tgz"; 641 - sha1 = "0ee21f6c48b2b30c63211da23827725078d5169a"; 642 - }; 643 - } 644 - { 645 - name = "_typescript_eslint_parser___parser_3.7.0.tgz"; 646 - path = fetchurl { 647 - name = "_typescript_eslint_parser___parser_3.7.0.tgz"; 648 - url = "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-3.7.0.tgz"; 649 - sha1 = "3e9cd9df9ea644536feb6e5acdb8279ecff96ce9"; 650 - }; 651 - } 652 - { 653 - name = "_typescript_eslint_types___types_3.7.0.tgz"; 654 - path = fetchurl { 655 - name = "_typescript_eslint_types___types_3.7.0.tgz"; 656 - url = "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-3.7.0.tgz"; 657 - sha1 = "09897fab0cb95479c01166b10b2c03c224821077"; 658 - }; 659 - } 660 - { 661 - name = "_typescript_eslint_typescript_estree___typescript_estree_3.7.0.tgz"; 662 - path = fetchurl { 663 - name = "_typescript_eslint_typescript_estree___typescript_estree_3.7.0.tgz"; 664 - url = "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-3.7.0.tgz"; 665 - sha1 = "66872e6da120caa4b64e6b4ca5c8702afc74738d"; 666 - }; 667 - } 668 - { 669 - name = "_typescript_eslint_visitor_keys___visitor_keys_3.7.0.tgz"; 670 - path = fetchurl { 671 - name = "_typescript_eslint_visitor_keys___visitor_keys_3.7.0.tgz"; 672 - url = "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-3.7.0.tgz"; 673 - sha1 = "ac0417d382a136e4571a0b0dcfe52088cb628177"; 674 - }; 675 - } 676 - { 677 name = "JSONStream___JSONStream_1.3.5.tgz"; 678 path = fetchurl { 679 name = "JSONStream___JSONStream_1.3.5.tgz"; ··· 690 }; 691 } 692 { 693 - name = "acorn_jsx___acorn_jsx_5.2.0.tgz"; 694 path = fetchurl { 695 - name = "acorn_jsx___acorn_jsx_5.2.0.tgz"; 696 - url = "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.2.0.tgz"; 697 - sha1 = "4c66069173d6fdd68ed85239fc256226182b2ebe"; 698 }; 699 } 700 { 701 - name = "acorn___acorn_7.3.1.tgz"; 702 path = fetchurl { 703 - name = "acorn___acorn_7.3.1.tgz"; 704 - url = "https://registry.yarnpkg.com/acorn/-/acorn-7.3.1.tgz"; 705 - sha1 = "85010754db53c3fbaf3b9ea3e083aa5c5d147ffd"; 706 }; 707 } 708 { ··· 746 }; 747 } 748 { 749 - name = "ajv___ajv_6.10.2.tgz"; 750 - path = fetchurl { 751 - name = "ajv___ajv_6.10.2.tgz"; 752 - url = "https://registry.yarnpkg.com/ajv/-/ajv-6.10.2.tgz"; 753 - sha1 = "d3cea04d6b017b2894ad69040fec8b623eb4bd52"; 754 - }; 755 - } 756 - { 757 name = "ajv___ajv_6.12.2.tgz"; 758 path = fetchurl { 759 name = "ajv___ajv_6.12.2.tgz"; ··· 778 }; 779 } 780 { 781 name = "ansi_align___ansi_align_2.0.0.tgz"; 782 path = fetchurl { 783 name = "ansi_align___ansi_align_2.0.0.tgz"; ··· 799 name = "ansi_colors___ansi_colors_4.1.1.tgz"; 800 url = "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz"; 801 sha1 = "cbb9ae256bf750af1eab344f229aa27fe94ba348"; 802 - }; 803 - } 804 - { 805 - name = "ansi_escapes___ansi_escapes_4.3.1.tgz"; 806 - path = fetchurl { 807 - name = "ansi_escapes___ansi_escapes_4.3.1.tgz"; 808 - url = "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.1.tgz"; 809 - sha1 = "a5c47cc43181f1f38ffd7076837700d395522a61"; 810 }; 811 } 812 { ··· 970 }; 971 } 972 { 973 - name = "array_includes___array_includes_3.1.1.tgz"; 974 - path = fetchurl { 975 - name = "array_includes___array_includes_3.1.1.tgz"; 976 - url = "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.1.tgz"; 977 - sha1 = "cdd67e6852bdf9c1215460786732255ed2459348"; 978 - }; 979 - } 980 - { 981 - name = "array.prototype.flat___array.prototype.flat_1.2.3.tgz"; 982 - path = fetchurl { 983 - name = "array.prototype.flat___array.prototype.flat_1.2.3.tgz"; 984 - url = "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.3.tgz"; 985 - sha1 = "0de82b426b0318dbfdb940089e38b043d37f6c7b"; 986 - }; 987 - } 988 - { 989 - name = "array.prototype.flatmap___array.prototype.flatmap_1.2.3.tgz"; 990 - path = fetchurl { 991 - name = "array.prototype.flatmap___array.prototype.flatmap_1.2.3.tgz"; 992 - url = "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.3.tgz"; 993 - sha1 = "1c13f84a178566042dd63de4414440db9222e443"; 994 - }; 995 - } 996 - { 997 name = "asap___asap_2.0.6.tgz"; 998 path = fetchurl { 999 name = "asap___asap_2.0.6.tgz"; ··· 1034 }; 1035 } 1036 { 1037 - name = "astral_regex___astral_regex_1.0.0.tgz"; 1038 path = fetchurl { 1039 - name = "astral_regex___astral_regex_1.0.0.tgz"; 1040 - url = "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz"; 1041 - sha1 = "6c8c3fb827dd43ee3918f27b82782ab7658a6fd9"; 1042 }; 1043 } 1044 { ··· 1111 name = "aws4___aws4_1.9.0.tgz"; 1112 url = "https://registry.yarnpkg.com/aws4/-/aws4-1.9.0.tgz"; 1113 sha1 = "24390e6ad61386b0a747265754d2a17219de862c"; 1114 - }; 1115 - } 1116 - { 1117 - name = "babel_eslint___babel_eslint_10.1.0.tgz"; 1118 - path = fetchurl { 1119 - name = "babel_eslint___babel_eslint_10.1.0.tgz"; 1120 - url = "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.1.0.tgz"; 1121 - sha1 = "6968e568a910b78fb3779cdd8b6ac2f479943232"; 1122 }; 1123 } 1124 { ··· 1410 }; 1411 } 1412 { 1413 - name = "chardet___chardet_0.7.0.tgz"; 1414 - path = fetchurl { 1415 - name = "chardet___chardet_0.7.0.tgz"; 1416 - url = "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz"; 1417 - sha1 = "90094849f0937f2eedc2425d0d28a9e5f0cbad9e"; 1418 - }; 1419 - } 1420 - { 1421 name = "chownr___chownr_1.1.4.tgz"; 1422 path = fetchurl { 1423 name = "chownr___chownr_1.1.4.tgz"; ··· 1490 }; 1491 } 1492 { 1493 - name = "cli_cursor___cli_cursor_3.1.0.tgz"; 1494 - path = fetchurl { 1495 - name = "cli_cursor___cli_cursor_3.1.0.tgz"; 1496 - url = "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz"; 1497 - sha1 = "264305a7ae490d1d03bf0c9ba7c925d1753af307"; 1498 - }; 1499 - } 1500 - { 1501 name = "cli_table3___cli_table3_0.5.1.tgz"; 1502 path = fetchurl { 1503 name = "cli_table3___cli_table3_0.5.1.tgz"; ··· 1511 name = "cli_truncate___cli_truncate_1.1.0.tgz"; 1512 url = "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-1.1.0.tgz"; 1513 sha1 = "2b2dfd83c53cfd3572b87fc4d430a808afb04086"; 1514 - }; 1515 - } 1516 - { 1517 - name = "cli_width___cli_width_3.0.0.tgz"; 1518 - path = fetchurl { 1519 - name = "cli_width___cli_width_3.0.0.tgz"; 1520 - url = "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz"; 1521 - sha1 = "a2f48437a2caa9a22436e794bf071ec9e61cedf6"; 1522 }; 1523 } 1524 { ··· 1727 name = "console_control_strings___console_control_strings_1.1.0.tgz"; 1728 url = "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz"; 1729 sha1 = "3d7cf4464db6446ea644bf4b39507f9851008e8e"; 1730 - }; 1731 - } 1732 - { 1733 - name = "contains_path___contains_path_0.1.0.tgz"; 1734 - path = fetchurl { 1735 - name = "contains_path___contains_path_0.1.0.tgz"; 1736 - url = "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz"; 1737 - sha1 = "fe8cf184ff6670b6baef01a9d4861a5cbec4120a"; 1738 }; 1739 } 1740 { ··· 1802 }; 1803 } 1804 { 1805 - name = "cross_spawn___cross_spawn_6.0.5.tgz"; 1806 - path = fetchurl { 1807 - name = "cross_spawn___cross_spawn_6.0.5.tgz"; 1808 - url = "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz"; 1809 - sha1 = "4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"; 1810 - }; 1811 - } 1812 - { 1813 name = "cross_spawn___cross_spawn_7.0.3.tgz"; 1814 path = fetchurl { 1815 name = "cross_spawn___cross_spawn_7.0.3.tgz"; ··· 1879 name = "debug___debug_3.1.0.tgz"; 1880 url = "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz"; 1881 sha1 = "5bb5a0672628b64149566ba16819e61518c67261"; 1882 - }; 1883 - } 1884 - { 1885 - name = "debug___debug_2.6.9.tgz"; 1886 - path = fetchurl { 1887 - name = "debug___debug_2.6.9.tgz"; 1888 - url = "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz"; 1889 - sha1 = "5d128515df134ff327e90a4c93f4e077a536341f"; 1890 }; 1891 } 1892 { ··· 2066 }; 2067 } 2068 { 2069 - name = "doctrine___doctrine_1.5.0.tgz"; 2070 - path = fetchurl { 2071 - name = "doctrine___doctrine_1.5.0.tgz"; 2072 - url = "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz"; 2073 - sha1 = "379dce730f6166f76cefa4e6707a159b02c5a6fa"; 2074 - }; 2075 - } 2076 - { 2077 - name = "doctrine___doctrine_2.1.0.tgz"; 2078 - path = fetchurl { 2079 - name = "doctrine___doctrine_2.1.0.tgz"; 2080 - url = "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz"; 2081 - sha1 = "5cd01fc101621b42c4cd7f5d1a66243716d3f39d"; 2082 - }; 2083 - } 2084 - { 2085 name = "doctrine___doctrine_3.0.0.tgz"; 2086 path = fetchurl { 2087 name = "doctrine___doctrine_3.0.0.tgz"; ··· 2322 }; 2323 } 2324 { 2325 - name = "es_abstract___es_abstract_1.17.6.tgz"; 2326 - path = fetchurl { 2327 - name = "es_abstract___es_abstract_1.17.6.tgz"; 2328 - url = "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.6.tgz"; 2329 - sha1 = "9142071707857b2cacc7b89ecb670316c3e2d52a"; 2330 - }; 2331 - } 2332 - { 2333 name = "es_abstract___es_abstract_1.16.3.tgz"; 2334 path = fetchurl { 2335 name = "es_abstract___es_abstract_1.16.3.tgz"; ··· 2386 }; 2387 } 2388 { 2389 - name = "eslint_config_esnext___eslint_config_esnext_4.1.0.tgz"; 2390 - path = fetchurl { 2391 - name = "eslint_config_esnext___eslint_config_esnext_4.1.0.tgz"; 2392 - url = "https://registry.yarnpkg.com/eslint-config-esnext/-/eslint-config-esnext-4.1.0.tgz"; 2393 - sha1 = "8695b858fcf40d28c1aedca181f700528c7b60c6"; 2394 - }; 2395 - } 2396 - { 2397 name = "eslint_config_google___eslint_config_google_0.14.0.tgz"; 2398 path = fetchurl { 2399 name = "eslint_config_google___eslint_config_google_0.14.0.tgz"; ··· 2402 }; 2403 } 2404 { 2405 - name = "eslint_config_matrix_org___eslint_config_matrix_org_0.1.2.tgz"; 2406 - path = fetchurl { 2407 - name = "eslint_config_matrix_org___eslint_config_matrix_org_0.1.2.tgz"; 2408 - url = "https://registry.yarnpkg.com/eslint-config-matrix-org/-/eslint-config-matrix-org-0.1.2.tgz"; 2409 - sha1 = "b5d7e193e4f3fc5041905967b53c5ddd6924c793"; 2410 - }; 2411 - } 2412 - { 2413 - name = "eslint_config_node___eslint_config_node_4.1.0.tgz"; 2414 - path = fetchurl { 2415 - name = "eslint_config_node___eslint_config_node_4.1.0.tgz"; 2416 - url = "https://registry.yarnpkg.com/eslint-config-node/-/eslint-config-node-4.1.0.tgz"; 2417 - sha1 = "fc1f13946d83766d6b83b0e67699e2071a56f417"; 2418 - }; 2419 - } 2420 - { 2421 - name = "eslint_config_react_native___eslint_config_react_native_4.1.0.tgz"; 2422 - path = fetchurl { 2423 - name = "eslint_config_react_native___eslint_config_react_native_4.1.0.tgz"; 2424 - url = "https://registry.yarnpkg.com/eslint-config-react-native/-/eslint-config-react-native-4.1.0.tgz"; 2425 - sha1 = "63e9401c7fac146804785f609e7df8f15b3e04eb"; 2426 - }; 2427 - } 2428 - { 2429 - name = "eslint_config_recommended___eslint_config_recommended_4.1.0.tgz"; 2430 - path = fetchurl { 2431 - name = "eslint_config_recommended___eslint_config_recommended_4.1.0.tgz"; 2432 - url = "https://registry.yarnpkg.com/eslint-config-recommended/-/eslint-config-recommended-4.1.0.tgz"; 2433 - sha1 = "1adff90e0716d439be471d192977f233de171a46"; 2434 - }; 2435 - } 2436 - { 2437 - name = "eslint_import_resolver_node___eslint_import_resolver_node_0.3.4.tgz"; 2438 - path = fetchurl { 2439 - name = "eslint_import_resolver_node___eslint_import_resolver_node_0.3.4.tgz"; 2440 - url = "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz"; 2441 - sha1 = "85ffa81942c25012d8231096ddf679c03042c717"; 2442 - }; 2443 - } 2444 - { 2445 - name = "eslint_module_utils___eslint_module_utils_2.6.0.tgz"; 2446 path = fetchurl { 2447 - name = "eslint_module_utils___eslint_module_utils_2.6.0.tgz"; 2448 - url = "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz"; 2449 - sha1 = "579ebd094f56af7797d19c9866c9c9486629bfa6"; 2450 }; 2451 } 2452 { 2453 - name = "eslint_plugin_babel___eslint_plugin_babel_5.3.1.tgz"; 2454 path = fetchurl { 2455 - name = "eslint_plugin_babel___eslint_plugin_babel_5.3.1.tgz"; 2456 - url = "https://registry.yarnpkg.com/eslint-plugin-babel/-/eslint-plugin-babel-5.3.1.tgz"; 2457 - sha1 = "75a2413ffbf17e7be57458301c60291f2cfbf560"; 2458 - }; 2459 - } 2460 - { 2461 - name = "eslint_plugin_import___eslint_plugin_import_2.22.0.tgz"; 2462 - path = fetchurl { 2463 - name = "eslint_plugin_import___eslint_plugin_import_2.22.0.tgz"; 2464 - url = "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.22.0.tgz"; 2465 - sha1 = "92f7736fe1fde3e2de77623c838dd992ff5ffb7e"; 2466 - }; 2467 - } 2468 - { 2469 - name = "eslint_plugin_react_native_globals___eslint_plugin_react_native_globals_0.1.2.tgz"; 2470 - path = fetchurl { 2471 - name = "eslint_plugin_react_native_globals___eslint_plugin_react_native_globals_0.1.2.tgz"; 2472 - url = "https://registry.yarnpkg.com/eslint-plugin-react-native-globals/-/eslint-plugin-react-native-globals-0.1.2.tgz"; 2473 - sha1 = "ee1348bc2ceb912303ce6bdbd22e2f045ea86ea2"; 2474 - }; 2475 - } 2476 - { 2477 - name = "eslint_plugin_react_native___eslint_plugin_react_native_3.8.1.tgz"; 2478 - path = fetchurl { 2479 - name = "eslint_plugin_react_native___eslint_plugin_react_native_3.8.1.tgz"; 2480 - url = "https://registry.yarnpkg.com/eslint-plugin-react-native/-/eslint-plugin-react-native-3.8.1.tgz"; 2481 - sha1 = "92811e37191ecb0d29c0f0a0c9e5c943ee573821"; 2482 - }; 2483 - } 2484 - { 2485 - name = "eslint_plugin_react___eslint_plugin_react_7.20.3.tgz"; 2486 - path = fetchurl { 2487 - name = "eslint_plugin_react___eslint_plugin_react_7.20.3.tgz"; 2488 - url = "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.20.3.tgz"; 2489 - sha1 = "0590525e7eb83890ce71f73c2cf836284ad8c2f1"; 2490 - }; 2491 - } 2492 - { 2493 - name = "eslint_rule_composer___eslint_rule_composer_0.3.0.tgz"; 2494 - path = fetchurl { 2495 - name = "eslint_rule_composer___eslint_rule_composer_0.3.0.tgz"; 2496 - url = "https://registry.yarnpkg.com/eslint-rule-composer/-/eslint-rule-composer-0.3.0.tgz"; 2497 - sha1 = "79320c927b0c5c0d3d3d2b76c8b4a488f25bbaf9"; 2498 - }; 2499 - } 2500 - { 2501 - name = "eslint_scope___eslint_scope_5.1.0.tgz"; 2502 - path = fetchurl { 2503 - name = "eslint_scope___eslint_scope_5.1.0.tgz"; 2504 - url = "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.0.tgz"; 2505 - sha1 = "d0f971dfe59c69e0cada684b23d49dbf82600ce5"; 2506 - }; 2507 - } 2508 - { 2509 - name = "eslint_utils___eslint_utils_1.4.3.tgz"; 2510 - path = fetchurl { 2511 - name = "eslint_utils___eslint_utils_1.4.3.tgz"; 2512 - url = "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.3.tgz"; 2513 - sha1 = "74fec7c54d0776b6f67e0251040b5806564e981f"; 2514 }; 2515 } 2516 { ··· 2538 }; 2539 } 2540 { 2541 - name = "eslint___eslint_7.3.1.tgz"; 2542 - path = fetchurl { 2543 - name = "eslint___eslint_7.3.1.tgz"; 2544 - url = "https://registry.yarnpkg.com/eslint/-/eslint-7.3.1.tgz"; 2545 - sha1 = "76392bd7e44468d046149ba128d1566c59acbe19"; 2546 - }; 2547 - } 2548 - { 2549 - name = "eslint___eslint_6.8.0.tgz"; 2550 path = fetchurl { 2551 - name = "eslint___eslint_6.8.0.tgz"; 2552 - url = "https://registry.yarnpkg.com/eslint/-/eslint-6.8.0.tgz"; 2553 - sha1 = "62262d6729739f9275723824302fb227c8c93ffb"; 2554 }; 2555 } 2556 { 2557 - name = "espree___espree_6.2.1.tgz"; 2558 path = fetchurl { 2559 - name = "espree___espree_6.2.1.tgz"; 2560 - url = "https://registry.yarnpkg.com/espree/-/espree-6.2.1.tgz"; 2561 - sha1 = "77fc72e1fd744a2052c20f38a5b575832e82734a"; 2562 }; 2563 } 2564 { 2565 - name = "espree___espree_7.2.0.tgz"; 2566 path = fetchurl { 2567 - name = "espree___espree_7.2.0.tgz"; 2568 - url = "https://registry.yarnpkg.com/espree/-/espree-7.2.0.tgz"; 2569 - sha1 = "1c263d5b513dbad0ac30c4991b93ac354e948d69"; 2570 }; 2571 } 2572 { ··· 2578 }; 2579 } 2580 { 2581 - name = "esquery___esquery_1.0.1.tgz"; 2582 - path = fetchurl { 2583 - name = "esquery___esquery_1.0.1.tgz"; 2584 - url = "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz"; 2585 - sha1 = "406c51658b1f5991a5f9b62b1dc25b00e3e5c708"; 2586 - }; 2587 - } 2588 - { 2589 name = "esquery___esquery_1.3.1.tgz"; 2590 path = fetchurl { 2591 name = "esquery___esquery_1.3.1.tgz"; ··· 2594 }; 2595 } 2596 { 2597 - name = "esrecurse___esrecurse_4.2.1.tgz"; 2598 path = fetchurl { 2599 - name = "esrecurse___esrecurse_4.2.1.tgz"; 2600 - url = "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz"; 2601 - sha1 = "007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf"; 2602 }; 2603 } 2604 { ··· 2618 }; 2619 } 2620 { 2621 name = "esutils___esutils_2.0.3.tgz"; 2622 path = fetchurl { 2623 name = "esutils___esutils_2.0.3.tgz"; ··· 2663 name = "extend___extend_3.0.2.tgz"; 2664 url = "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz"; 2665 sha1 = "f8b1136b4071fbd8eb140aff858b1019ec2915fa"; 2666 - }; 2667 - } 2668 - { 2669 - name = "external_editor___external_editor_3.1.0.tgz"; 2670 - path = fetchurl { 2671 - name = "external_editor___external_editor_3.1.0.tgz"; 2672 - url = "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz"; 2673 - sha1 = "cb03f740befae03ea4d283caed2741a83f335495"; 2674 }; 2675 } 2676 { ··· 2730 }; 2731 } 2732 { 2733 - name = "figures___figures_3.2.0.tgz"; 2734 path = fetchurl { 2735 - name = "figures___figures_3.2.0.tgz"; 2736 - url = "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz"; 2737 - sha1 = "625c18bd293c604dc4a8ddb2febf0c88341746af"; 2738 - }; 2739 - } 2740 - { 2741 - name = "file_entry_cache___file_entry_cache_5.0.1.tgz"; 2742 - path = fetchurl { 2743 - name = "file_entry_cache___file_entry_cache_5.0.1.tgz"; 2744 - url = "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz"; 2745 - sha1 = "ca0f6efa6dd3d561333fb14515065c2fafdf439c"; 2746 }; 2747 } 2748 { ··· 2786 }; 2787 } 2788 { 2789 - name = "flat_cache___flat_cache_2.0.1.tgz"; 2790 path = fetchurl { 2791 - name = "flat_cache___flat_cache_2.0.1.tgz"; 2792 - url = "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz"; 2793 - sha1 = "5d296d6f04bda44a4630a301413bdbc2ec085ec0"; 2794 }; 2795 } 2796 { 2797 - name = "flatted___flatted_2.0.1.tgz"; 2798 path = fetchurl { 2799 - name = "flatted___flatted_2.0.1.tgz"; 2800 - url = "https://registry.yarnpkg.com/flatted/-/flatted-2.0.1.tgz"; 2801 - sha1 = "69e57caa8f0eacbc281d2e2cb458d46fdb449e08"; 2802 }; 2803 } 2804 { ··· 3370 }; 3371 } 3372 { 3373 name = "import_lazy___import_lazy_2.1.0.tgz"; 3374 path = fetchurl { 3375 name = "import_lazy___import_lazy_2.1.0.tgz"; ··· 3442 }; 3443 } 3444 { 3445 - name = "inquirer___inquirer_7.3.2.tgz"; 3446 - path = fetchurl { 3447 - name = "inquirer___inquirer_7.3.2.tgz"; 3448 - url = "https://registry.yarnpkg.com/inquirer/-/inquirer-7.3.2.tgz"; 3449 - sha1 = "25245d2e32dc9f33dbe26eeaada231daa66e9c7c"; 3450 - }; 3451 - } 3452 - { 3453 - name = "internal_slot___internal_slot_1.0.2.tgz"; 3454 - path = fetchurl { 3455 - name = "internal_slot___internal_slot_1.0.2.tgz"; 3456 - url = "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.2.tgz"; 3457 - sha1 = "9c2e9fb3cd8e5e4256c6f45fe310067fcfa378a3"; 3458 - }; 3459 - } 3460 - { 3461 name = "invert_kv___invert_kv_1.0.0.tgz"; 3462 path = fetchurl { 3463 name = "invert_kv___invert_kv_1.0.0.tgz"; ··· 3498 }; 3499 } 3500 { 3501 - name = "is_callable___is_callable_1.2.0.tgz"; 3502 - path = fetchurl { 3503 - name = "is_callable___is_callable_1.2.0.tgz"; 3504 - url = "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.0.tgz"; 3505 - sha1 = "83336560b54a38e35e3a2df7afd0454d691468bb"; 3506 - }; 3507 - } 3508 - { 3509 name = "is_ci___is_ci_1.2.1.tgz"; 3510 path = fetchurl { 3511 name = "is_ci___is_ci_1.2.1.tgz"; ··· 3674 }; 3675 } 3676 { 3677 - name = "is_regex___is_regex_1.1.0.tgz"; 3678 - path = fetchurl { 3679 - name = "is_regex___is_regex_1.1.0.tgz"; 3680 - url = "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.0.tgz"; 3681 - sha1 = "ece38e389e490df0dc21caea2bd596f987f767ff"; 3682 - }; 3683 - } 3684 - { 3685 name = "is_retry_allowed___is_retry_allowed_1.2.0.tgz"; 3686 path = fetchurl { 3687 name = "is_retry_allowed___is_retry_allowed_1.2.0.tgz"; ··· 3698 }; 3699 } 3700 { 3701 - name = "is_string___is_string_1.0.5.tgz"; 3702 - path = fetchurl { 3703 - name = "is_string___is_string_1.0.5.tgz"; 3704 - url = "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz"; 3705 - sha1 = "40493ed198ef3ff477b8c7f92f644ec82a5cd3a6"; 3706 - }; 3707 - } 3708 - { 3709 name = "is_symbol___is_symbol_1.0.3.tgz"; 3710 path = fetchurl { 3711 name = "is_symbol___is_symbol_1.0.3.tgz"; ··· 3858 }; 3859 } 3860 { 3861 name = "json_schema_typed___json_schema_typed_7.0.3.tgz"; 3862 path = fetchurl { 3863 name = "json_schema_typed___json_schema_typed_7.0.3.tgz"; ··· 3890 }; 3891 } 3892 { 3893 - name = "json5___json5_1.0.1.tgz"; 3894 - path = fetchurl { 3895 - name = "json5___json5_1.0.1.tgz"; 3896 - url = "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz"; 3897 - sha1 = "779fb0018604fa854eacbf6252180d83543e3dbe"; 3898 - }; 3899 - } 3900 - { 3901 name = "json5___json5_2.1.3.tgz"; 3902 path = fetchurl { 3903 name = "json5___json5_2.1.3.tgz"; ··· 3935 name = "jsprim___jsprim_1.4.1.tgz"; 3936 url = "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz"; 3937 sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"; 3938 - }; 3939 - } 3940 - { 3941 - name = "jsx_ast_utils___jsx_ast_utils_2.4.1.tgz"; 3942 - path = fetchurl { 3943 - name = "jsx_ast_utils___jsx_ast_utils_2.4.1.tgz"; 3944 - url = "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.4.1.tgz"; 3945 - sha1 = "1114a4c1209481db06c690c2b4f488cc665f657e"; 3946 }; 3947 } 3948 { ··· 4007 name = "lcid___lcid_1.0.0.tgz"; 4008 url = "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz"; 4009 sha1 = "308accafa0bc483a3867b4b6f2b9506251d1b835"; 4010 - }; 4011 - } 4012 - { 4013 - name = "levn___levn_0.3.0.tgz"; 4014 - path = fetchurl { 4015 - name = "levn___levn_0.3.0.tgz"; 4016 - url = "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz"; 4017 - sha1 = "3b09924edf9f083c0490fdd4c0bc4421e04764ee"; 4018 }; 4019 } 4020 { ··· 4226 }; 4227 } 4228 { 4229 name = "lodash.union___lodash.union_4.6.0.tgz"; 4230 path = fetchurl { 4231 name = "lodash.union___lodash.union_4.6.0.tgz"; ··· 4250 }; 4251 } 4252 { 4253 - name = "lodash___lodash_4.17.15.tgz"; 4254 path = fetchurl { 4255 - name = "lodash___lodash_4.17.15.tgz"; 4256 - url = "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz"; 4257 - sha1 = "b447f6670a0455bbfeedd11392eff330ea097548"; 4258 - }; 4259 - } 4260 - { 4261 - name = "lodash___lodash_4.17.19.tgz"; 4262 - path = fetchurl { 4263 - name = "lodash___lodash_4.17.19.tgz"; 4264 - url = "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz"; 4265 - sha1 = "e48ddedbe30b3321783c5b4301fbd353bc1e4a4b"; 4266 - }; 4267 - } 4268 - { 4269 - name = "loose_envify___loose_envify_1.4.0.tgz"; 4270 - path = fetchurl { 4271 - name = "loose_envify___loose_envify_1.4.0.tgz"; 4272 - url = "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz"; 4273 - sha1 = "71ee51fa7be4caec1a63839f7e682d8132d30caf"; 4274 }; 4275 } 4276 { ··· 4594 }; 4595 } 4596 { 4597 - name = "nice_try___nice_try_1.0.5.tgz"; 4598 - path = fetchurl { 4599 - name = "nice_try___nice_try_1.0.5.tgz"; 4600 - url = "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz"; 4601 - sha1 = "a3378a7696ce7d223e88fc9b764bd7ef1089e366"; 4602 - }; 4603 - } 4604 - { 4605 name = "node_addon_api___node_addon_api_1.7.2.tgz"; 4606 path = fetchurl { 4607 name = "node_addon_api___node_addon_api_1.7.2.tgz"; ··· 4882 }; 4883 } 4884 { 4885 - name = "object.assign___object.assign_4.1.0.tgz"; 4886 - path = fetchurl { 4887 - name = "object.assign___object.assign_4.1.0.tgz"; 4888 - url = "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz"; 4889 - sha1 = "968bf1100d7956bb3ca086f006f846b3bc4008da"; 4890 - }; 4891 - } 4892 - { 4893 - name = "object.entries___object.entries_1.1.2.tgz"; 4894 - path = fetchurl { 4895 - name = "object.entries___object.entries_1.1.2.tgz"; 4896 - url = "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.2.tgz"; 4897 - sha1 = "bc73f00acb6b6bb16c203434b10f9a7e797d3add"; 4898 - }; 4899 - } 4900 - { 4901 - name = "object.fromentries___object.fromentries_2.0.2.tgz"; 4902 - path = fetchurl { 4903 - name = "object.fromentries___object.fromentries_2.0.2.tgz"; 4904 - url = "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.2.tgz"; 4905 - sha1 = "4a09c9b9bb3843dd0f89acdb517a794d4f355ac9"; 4906 - }; 4907 - } 4908 - { 4909 name = "object.getownpropertydescriptors___object.getownpropertydescriptors_2.0.3.tgz"; 4910 path = fetchurl { 4911 name = "object.getownpropertydescriptors___object.getownpropertydescriptors_2.0.3.tgz"; ··· 4914 }; 4915 } 4916 { 4917 - name = "object.values___object.values_1.1.1.tgz"; 4918 - path = fetchurl { 4919 - name = "object.values___object.values_1.1.1.tgz"; 4920 - url = "https://registry.yarnpkg.com/object.values/-/object.values-1.1.1.tgz"; 4921 - sha1 = "68a99ecde356b7e9295a3c5e0ce31dc8c953de5e"; 4922 - }; 4923 - } 4924 - { 4925 name = "omggif___omggif_1.0.10.tgz"; 4926 path = fetchurl { 4927 name = "omggif___omggif_1.0.10.tgz"; ··· 4951 name = "opener___opener_1.5.2.tgz"; 4952 url = "https://registry.yarnpkg.com/opener/-/opener-1.5.2.tgz"; 4953 sha1 = "5d37e1f35077b9dcac4301372271afdeb2a13598"; 4954 - }; 4955 - } 4956 - { 4957 - name = "optionator___optionator_0.8.3.tgz"; 4958 - path = fetchurl { 4959 - name = "optionator___optionator_0.8.3.tgz"; 4960 - url = "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz"; 4961 - sha1 = "84fa1d036fe9d3c7e21d99884b601167ec8fb495"; 4962 }; 4963 } 4964 { ··· 5250 }; 5251 } 5252 { 5253 - name = "pkg_dir___pkg_dir_2.0.0.tgz"; 5254 - path = fetchurl { 5255 - name = "pkg_dir___pkg_dir_2.0.0.tgz"; 5256 - url = "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz"; 5257 - sha1 = "f6d5d1109e19d63edf428e0bd57e12777615334b"; 5258 - }; 5259 - } 5260 - { 5261 name = "pkg_up___pkg_up_3.1.0.tgz"; 5262 path = fetchurl { 5263 name = "pkg_up___pkg_up_3.1.0.tgz"; ··· 5306 }; 5307 } 5308 { 5309 - name = "prelude_ls___prelude_ls_1.1.2.tgz"; 5310 - path = fetchurl { 5311 - name = "prelude_ls___prelude_ls_1.1.2.tgz"; 5312 - url = "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz"; 5313 - sha1 = "21932a549f5e52ffd9a827f570e04be62a97da54"; 5314 - }; 5315 - } 5316 - { 5317 name = "prepend_http___prepend_http_1.0.4.tgz"; 5318 path = fetchurl { 5319 name = "prepend_http___prepend_http_1.0.4.tgz"; ··· 5383 name = "promzard___promzard_0.3.0.tgz"; 5384 url = "https://registry.yarnpkg.com/promzard/-/promzard-0.3.0.tgz"; 5385 sha1 = "26a5d6ee8c7dee4cb12208305acfb93ba382a9ee"; 5386 - }; 5387 - } 5388 - { 5389 - name = "prop_types___prop_types_15.7.2.tgz"; 5390 - path = fetchurl { 5391 - name = "prop_types___prop_types_15.7.2.tgz"; 5392 - url = "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz"; 5393 - sha1 = "52c41e75b8c87e72b9d9360e0206b99dcbffa6c5"; 5394 }; 5395 } 5396 { ··· 5530 }; 5531 } 5532 { 5533 - name = "react_is___react_is_16.13.1.tgz"; 5534 - path = fetchurl { 5535 - name = "react_is___react_is_16.13.1.tgz"; 5536 - url = "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz"; 5537 - sha1 = "789729a4dc36de2999dc156dd6c1d9c18cea56a4"; 5538 - }; 5539 - } 5540 - { 5541 name = "read_cmd_shim___read_cmd_shim_1.0.5.tgz"; 5542 path = fetchurl { 5543 name = "read_cmd_shim___read_cmd_shim_1.0.5.tgz"; ··· 5650 }; 5651 } 5652 { 5653 - name = "regexp.prototype.flags___regexp.prototype.flags_1.3.0.tgz"; 5654 - path = fetchurl { 5655 - name = "regexp.prototype.flags___regexp.prototype.flags_1.3.0.tgz"; 5656 - url = "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz"; 5657 - sha1 = "7aba89b3c13a64509dabcf3ca8d9fbb9bdf5cb75"; 5658 - }; 5659 - } 5660 - { 5661 - name = "regexpp___regexpp_2.0.1.tgz"; 5662 - path = fetchurl { 5663 - name = "regexpp___regexpp_2.0.1.tgz"; 5664 - url = "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz"; 5665 - sha1 = "8d19d31cf632482b589049f8281f93dbcba4d07f"; 5666 - }; 5667 - } 5668 - { 5669 name = "regexpp___regexpp_3.1.0.tgz"; 5670 path = fetchurl { 5671 name = "regexpp___regexpp_3.1.0.tgz"; ··· 5730 }; 5731 } 5732 { 5733 name = "require_main_filename___require_main_filename_1.0.1.tgz"; 5734 path = fetchurl { 5735 name = "require_main_filename___require_main_filename_1.0.1.tgz"; ··· 5762 }; 5763 } 5764 { 5765 - name = "resolve___resolve_1.17.0.tgz"; 5766 - path = fetchurl { 5767 - name = "resolve___resolve_1.17.0.tgz"; 5768 - url = "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz"; 5769 - sha1 = "b25941b54968231cc2d1bb76a79cb7f2c0bf8444"; 5770 - }; 5771 - } 5772 - { 5773 name = "resolve___resolve_1.20.0.tgz"; 5774 path = fetchurl { 5775 name = "resolve___resolve_1.20.0.tgz"; ··· 5786 }; 5787 } 5788 { 5789 - name = "restore_cursor___restore_cursor_3.1.0.tgz"; 5790 - path = fetchurl { 5791 - name = "restore_cursor___restore_cursor_3.1.0.tgz"; 5792 - url = "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz"; 5793 - sha1 = "39f67c54b3a7a58cea5236d95cf0034239631f7e"; 5794 - }; 5795 - } 5796 - { 5797 name = "retry___retry_0.10.1.tgz"; 5798 path = fetchurl { 5799 name = "retry___retry_0.10.1.tgz"; ··· 5810 }; 5811 } 5812 { 5813 - name = "rimraf___rimraf_2.6.3.tgz"; 5814 - path = fetchurl { 5815 - name = "rimraf___rimraf_2.6.3.tgz"; 5816 - url = "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz"; 5817 - sha1 = "b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab"; 5818 - }; 5819 - } 5820 - { 5821 name = "rimraf___rimraf_2.7.1.tgz"; 5822 path = fetchurl { 5823 name = "rimraf___rimraf_2.7.1.tgz"; ··· 5834 }; 5835 } 5836 { 5837 - name = "run_async___run_async_2.4.1.tgz"; 5838 - path = fetchurl { 5839 - name = "run_async___run_async_2.4.1.tgz"; 5840 - url = "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz"; 5841 - sha1 = "8440eccf99ea3e70bd409d49aab88e10c189a455"; 5842 - }; 5843 - } 5844 - { 5845 name = "run_queue___run_queue_1.0.3.tgz"; 5846 path = fetchurl { 5847 name = "run_queue___run_queue_1.0.3.tgz"; 5848 url = "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz"; 5849 sha1 = "e848396f057d223f24386924618e25694161ec47"; 5850 - }; 5851 - } 5852 - { 5853 - name = "rxjs___rxjs_6.6.0.tgz"; 5854 - path = fetchurl { 5855 - name = "rxjs___rxjs_6.6.0.tgz"; 5856 - url = "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.0.tgz"; 5857 - sha1 = "af2901eedf02e3a83ffa7f886240ff9018bbec84"; 5858 }; 5859 } 5860 { ··· 6010 }; 6011 } 6012 { 6013 - name = "side_channel___side_channel_1.0.2.tgz"; 6014 - path = fetchurl { 6015 - name = "side_channel___side_channel_1.0.2.tgz"; 6016 - url = "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.2.tgz"; 6017 - sha1 = "df5d1abadb4e4bf4af1cd8852bf132d2f7876947"; 6018 - }; 6019 - } 6020 - { 6021 name = "signal_exit___signal_exit_3.0.2.tgz"; 6022 path = fetchurl { 6023 name = "signal_exit___signal_exit_3.0.2.tgz"; ··· 6034 }; 6035 } 6036 { 6037 - name = "slice_ansi___slice_ansi_2.1.0.tgz"; 6038 path = fetchurl { 6039 - name = "slice_ansi___slice_ansi_2.1.0.tgz"; 6040 - url = "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz"; 6041 - sha1 = "cacd7693461a637a5788d92a7dd4fba068e81636"; 6042 }; 6043 } 6044 { ··· 6258 }; 6259 } 6260 { 6261 - name = "string.prototype.matchall___string.prototype.matchall_4.0.2.tgz"; 6262 - path = fetchurl { 6263 - name = "string.prototype.matchall___string.prototype.matchall_4.0.2.tgz"; 6264 - url = "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.2.tgz"; 6265 - sha1 = "48bb510326fb9fdeb6a33ceaa81a6ea04ef7648e"; 6266 - }; 6267 - } 6268 - { 6269 - name = "string.prototype.trimend___string.prototype.trimend_1.0.1.tgz"; 6270 - path = fetchurl { 6271 - name = "string.prototype.trimend___string.prototype.trimend_1.0.1.tgz"; 6272 - url = "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz"; 6273 - sha1 = "85812a6b847ac002270f5808146064c995fb6913"; 6274 - }; 6275 - } 6276 - { 6277 name = "string.prototype.trimleft___string.prototype.trimleft_2.1.0.tgz"; 6278 path = fetchurl { 6279 name = "string.prototype.trimleft___string.prototype.trimleft_2.1.0.tgz"; ··· 6290 }; 6291 } 6292 { 6293 - name = "string.prototype.trimstart___string.prototype.trimstart_1.0.1.tgz"; 6294 - path = fetchurl { 6295 - name = "string.prototype.trimstart___string.prototype.trimstart_1.0.1.tgz"; 6296 - url = "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz"; 6297 - sha1 = "14af6d9f34b053f7cfc89b72f8f2ee14b9039a54"; 6298 - }; 6299 - } 6300 - { 6301 name = "string_decoder___string_decoder_1.3.0.tgz"; 6302 path = fetchurl { 6303 name = "string_decoder___string_decoder_1.3.0.tgz"; ··· 6410 }; 6411 } 6412 { 6413 - name = "table___table_5.4.6.tgz"; 6414 path = fetchurl { 6415 - name = "table___table_5.4.6.tgz"; 6416 - url = "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz"; 6417 - sha1 = "1292d19500ce3f86053b05f0e8e7e4a3bb21079e"; 6418 }; 6419 } 6420 { ··· 6538 }; 6539 } 6540 { 6541 - name = "tmp___tmp_0.0.33.tgz"; 6542 - path = fetchurl { 6543 - name = "tmp___tmp_0.0.33.tgz"; 6544 - url = "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz"; 6545 - sha1 = "6d34335889768d21b2bcda0aa277ced3b1bfadf9"; 6546 - }; 6547 - } 6548 - { 6549 name = "to_fast_properties___to_fast_properties_2.0.0.tgz"; 6550 path = fetchurl { 6551 name = "to_fast_properties___to_fast_properties_2.0.0.tgz"; ··· 6586 }; 6587 } 6588 { 6589 - name = "tsconfig_paths___tsconfig_paths_3.9.0.tgz"; 6590 - path = fetchurl { 6591 - name = "tsconfig_paths___tsconfig_paths_3.9.0.tgz"; 6592 - url = "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz"; 6593 - sha1 = "098547a6c4448807e8fcb8eae081064ee9a3c90b"; 6594 - }; 6595 - } 6596 - { 6597 - name = "tslib___tslib_1.13.0.tgz"; 6598 - path = fetchurl { 6599 - name = "tslib___tslib_1.13.0.tgz"; 6600 - url = "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz"; 6601 - sha1 = "c881e13cc7015894ed914862d276436fa9a47043"; 6602 - }; 6603 - } 6604 - { 6605 - name = "tslib___tslib_1.10.0.tgz"; 6606 - path = fetchurl { 6607 - name = "tslib___tslib_1.10.0.tgz"; 6608 - url = "https://registry.yarnpkg.com/tslib/-/tslib-1.10.0.tgz"; 6609 - sha1 = "c3c19f95973fb0a62973fb09d90d961ee43e5c8a"; 6610 - }; 6611 - } 6612 - { 6613 - name = "tsutils___tsutils_3.17.1.tgz"; 6614 - path = fetchurl { 6615 - name = "tsutils___tsutils_3.17.1.tgz"; 6616 - url = "https://registry.yarnpkg.com/tsutils/-/tsutils-3.17.1.tgz"; 6617 - sha1 = "ed719917f11ca0dee586272b2ac49e015a2dd759"; 6618 - }; 6619 - } 6620 - { 6621 name = "tunnel_agent___tunnel_agent_0.6.0.tgz"; 6622 path = fetchurl { 6623 name = "tunnel_agent___tunnel_agent_0.6.0.tgz"; ··· 6642 }; 6643 } 6644 { 6645 - name = "type_check___type_check_0.3.2.tgz"; 6646 - path = fetchurl { 6647 - name = "type_check___type_check_0.3.2.tgz"; 6648 - url = "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz"; 6649 - sha1 = "5884cab512cf1d355e3fb784f30804b2b520db72"; 6650 - }; 6651 - } 6652 - { 6653 - name = "type_fest___type_fest_0.11.0.tgz"; 6654 - path = fetchurl { 6655 - name = "type_fest___type_fest_0.11.0.tgz"; 6656 - url = "https://registry.yarnpkg.com/type-fest/-/type-fest-0.11.0.tgz"; 6657 - sha1 = "97abf0872310fed88a5c466b25681576145e33f1"; 6658 - }; 6659 - } 6660 - { 6661 name = "type_fest___type_fest_0.16.0.tgz"; 6662 path = fetchurl { 6663 name = "type_fest___type_fest_0.16.0.tgz"; ··· 6695 name = "typedarray___typedarray_0.0.6.tgz"; 6696 url = "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz"; 6697 sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777"; 6698 - }; 6699 - } 6700 - { 6701 - name = "typescript___typescript_3.9.7.tgz"; 6702 - path = fetchurl { 6703 - name = "typescript___typescript_3.9.7.tgz"; 6704 - url = "https://registry.yarnpkg.com/typescript/-/typescript-3.9.7.tgz"; 6705 - sha1 = "98d600a5ebdc38f40cb277522f12dc800e9e25fa"; 6706 }; 6707 } 6708 { ··· 7095 name = "write_file_atomic___write_file_atomic_3.0.1.tgz"; 7096 url = "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.1.tgz"; 7097 sha1 = "558328352e673b5bb192cf86500d60b230667d4b"; 7098 - }; 7099 - } 7100 - { 7101 - name = "write___write_1.0.3.tgz"; 7102 - path = fetchurl { 7103 - name = "write___write_1.0.3.tgz"; 7104 - url = "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz"; 7105 - sha1 = "0800e14523b923a387e415123c865616aae0f5c3"; 7106 }; 7107 } 7108 {
··· 26 }; 27 } 28 { 29 name = "_babel_code_frame___code_frame_7.12.13.tgz"; 30 path = fetchurl { 31 name = "_babel_code_frame___code_frame_7.12.13.tgz"; ··· 34 }; 35 } 36 { 37 name = "_babel_generator___generator_7.13.16.tgz"; 38 path = fetchurl { 39 name = "_babel_generator___generator_7.13.16.tgz"; 40 url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.13.16.tgz"; 41 sha1 = "0befc287031a201d84cdfc173b46b320ae472d14"; 42 }; 43 } 44 { ··· 50 }; 51 } 52 { 53 name = "_babel_helper_get_function_arity___helper_get_function_arity_7.12.13.tgz"; 54 path = fetchurl { 55 name = "_babel_helper_get_function_arity___helper_get_function_arity_7.12.13.tgz"; ··· 58 }; 59 } 60 { 61 name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.12.13.tgz"; 62 path = fetchurl { 63 name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.12.13.tgz"; 64 url = "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz"; 65 sha1 = "e9430be00baf3e88b0e13e6f9d4eaf2136372b05"; 66 }; 67 } 68 { ··· 82 }; 83 } 84 { 85 name = "_babel_highlight___highlight_7.13.10.tgz"; 86 path = fetchurl { 87 name = "_babel_highlight___highlight_7.13.10.tgz"; ··· 90 }; 91 } 92 { 93 name = "_babel_parser___parser_7.13.16.tgz"; 94 path = fetchurl { 95 name = "_babel_parser___parser_7.13.16.tgz"; ··· 103 name = "_babel_runtime___runtime_7.11.2.tgz"; 104 url = "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.11.2.tgz"; 105 sha1 = "f549c13c754cc40b87644b9fa9f09a6a95fe0736"; 106 }; 107 } 108 { ··· 122 }; 123 } 124 { 125 name = "_babel_types___types_7.13.17.tgz"; 126 path = fetchurl { 127 name = "_babel_types___types_7.13.17.tgz"; ··· 143 name = "_electron_universal___universal_1.0.4.tgz"; 144 url = "https://registry.yarnpkg.com/@electron/universal/-/universal-1.0.4.tgz"; 145 sha1 = "231ac246c39d45b80e159bd21c3f9027dcaa10f5"; 146 + }; 147 + } 148 + { 149 + name = "_eslint_eslintrc___eslintrc_0.3.0.tgz"; 150 + path = fetchurl { 151 + name = "_eslint_eslintrc___eslintrc_0.3.0.tgz"; 152 + url = "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.3.0.tgz"; 153 + sha1 = "d736d6963d7003b6514e6324bec9c602ac340318"; 154 }; 155 } 156 { ··· 450 }; 451 } 452 { 453 name = "_types_fs_extra___fs_extra_9.0.9.tgz"; 454 path = fetchurl { 455 name = "_types_fs_extra___fs_extra_9.0.9.tgz"; ··· 466 }; 467 } 468 { 469 name = "_types_minimatch___minimatch_3.0.4.tgz"; 470 path = fetchurl { 471 name = "_types_minimatch___minimatch_3.0.4.tgz"; ··· 522 }; 523 } 524 { 525 name = "JSONStream___JSONStream_1.3.5.tgz"; 526 path = fetchurl { 527 name = "JSONStream___JSONStream_1.3.5.tgz"; ··· 538 }; 539 } 540 { 541 + name = "acorn_jsx___acorn_jsx_5.3.1.tgz"; 542 path = fetchurl { 543 + name = "acorn_jsx___acorn_jsx_5.3.1.tgz"; 544 + url = "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.1.tgz"; 545 + sha1 = "fc8661e11b7ac1539c47dbfea2e72b3af34d267b"; 546 }; 547 } 548 { 549 + name = "acorn___acorn_7.4.1.tgz"; 550 path = fetchurl { 551 + name = "acorn___acorn_7.4.1.tgz"; 552 + url = "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz"; 553 + sha1 = "feaed255973d2e77555b83dbc08851a6c63520fa"; 554 }; 555 } 556 { ··· 594 }; 595 } 596 { 597 name = "ajv___ajv_6.12.2.tgz"; 598 path = fetchurl { 599 name = "ajv___ajv_6.12.2.tgz"; ··· 618 }; 619 } 620 { 621 + name = "ajv___ajv_6.10.2.tgz"; 622 + path = fetchurl { 623 + name = "ajv___ajv_6.10.2.tgz"; 624 + url = "https://registry.yarnpkg.com/ajv/-/ajv-6.10.2.tgz"; 625 + sha1 = "d3cea04d6b017b2894ad69040fec8b623eb4bd52"; 626 + }; 627 + } 628 + { 629 + name = "ajv___ajv_8.5.0.tgz"; 630 + path = fetchurl { 631 + name = "ajv___ajv_8.5.0.tgz"; 632 + url = "https://registry.yarnpkg.com/ajv/-/ajv-8.5.0.tgz"; 633 + sha1 = "695528274bcb5afc865446aa275484049a18ae4b"; 634 + }; 635 + } 636 + { 637 name = "ansi_align___ansi_align_2.0.0.tgz"; 638 path = fetchurl { 639 name = "ansi_align___ansi_align_2.0.0.tgz"; ··· 655 name = "ansi_colors___ansi_colors_4.1.1.tgz"; 656 url = "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz"; 657 sha1 = "cbb9ae256bf750af1eab344f229aa27fe94ba348"; 658 }; 659 } 660 { ··· 818 }; 819 } 820 { 821 name = "asap___asap_2.0.6.tgz"; 822 path = fetchurl { 823 name = "asap___asap_2.0.6.tgz"; ··· 858 }; 859 } 860 { 861 + name = "astral_regex___astral_regex_2.0.0.tgz"; 862 path = fetchurl { 863 + name = "astral_regex___astral_regex_2.0.0.tgz"; 864 + url = "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz"; 865 + sha1 = "483143c567aeed4785759c0865786dc77d7d2e31"; 866 }; 867 } 868 { ··· 935 name = "aws4___aws4_1.9.0.tgz"; 936 url = "https://registry.yarnpkg.com/aws4/-/aws4-1.9.0.tgz"; 937 sha1 = "24390e6ad61386b0a747265754d2a17219de862c"; 938 }; 939 } 940 { ··· 1226 }; 1227 } 1228 { 1229 name = "chownr___chownr_1.1.4.tgz"; 1230 path = fetchurl { 1231 name = "chownr___chownr_1.1.4.tgz"; ··· 1298 }; 1299 } 1300 { 1301 name = "cli_table3___cli_table3_0.5.1.tgz"; 1302 path = fetchurl { 1303 name = "cli_table3___cli_table3_0.5.1.tgz"; ··· 1311 name = "cli_truncate___cli_truncate_1.1.0.tgz"; 1312 url = "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-1.1.0.tgz"; 1313 sha1 = "2b2dfd83c53cfd3572b87fc4d430a808afb04086"; 1314 }; 1315 } 1316 { ··· 1519 name = "console_control_strings___console_control_strings_1.1.0.tgz"; 1520 url = "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz"; 1521 sha1 = "3d7cf4464db6446ea644bf4b39507f9851008e8e"; 1522 }; 1523 } 1524 { ··· 1586 }; 1587 } 1588 { 1589 name = "cross_spawn___cross_spawn_7.0.3.tgz"; 1590 path = fetchurl { 1591 name = "cross_spawn___cross_spawn_7.0.3.tgz"; ··· 1655 name = "debug___debug_3.1.0.tgz"; 1656 url = "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz"; 1657 sha1 = "5bb5a0672628b64149566ba16819e61518c67261"; 1658 }; 1659 } 1660 { ··· 1834 }; 1835 } 1836 { 1837 name = "doctrine___doctrine_3.0.0.tgz"; 1838 path = fetchurl { 1839 name = "doctrine___doctrine_3.0.0.tgz"; ··· 2074 }; 2075 } 2076 { 2077 name = "es_abstract___es_abstract_1.16.3.tgz"; 2078 path = fetchurl { 2079 name = "es_abstract___es_abstract_1.16.3.tgz"; ··· 2130 }; 2131 } 2132 { 2133 name = "eslint_config_google___eslint_config_google_0.14.0.tgz"; 2134 path = fetchurl { 2135 name = "eslint_config_google___eslint_config_google_0.14.0.tgz"; ··· 2138 }; 2139 } 2140 { 2141 + name = "53000626a9256811f6b355de4eafeb5575bda7fc"; 2142 path = fetchurl { 2143 + name = "53000626a9256811f6b355de4eafeb5575bda7fc"; 2144 + url = "https://codeload.github.com/matrix-org/eslint-plugin-matrix-org/tar.gz/53000626a9256811f6b355de4eafeb5575bda7fc"; 2145 + sha1 = "12617a8105ab0ea2e7df2567928260a41ebffd58"; 2146 }; 2147 } 2148 { 2149 + name = "eslint_scope___eslint_scope_5.1.1.tgz"; 2150 path = fetchurl { 2151 + name = "eslint_scope___eslint_scope_5.1.1.tgz"; 2152 + url = "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz"; 2153 + sha1 = "e786e59a66cb92b3f6c1fb0d508aab174848f48c"; 2154 }; 2155 } 2156 { ··· 2178 }; 2179 } 2180 { 2181 + name = "eslint_visitor_keys___eslint_visitor_keys_2.1.0.tgz"; 2182 path = fetchurl { 2183 + name = "eslint_visitor_keys___eslint_visitor_keys_2.1.0.tgz"; 2184 + url = "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz"; 2185 + sha1 = "f65328259305927392c938ed44eb0a5c9b2bd303"; 2186 }; 2187 } 2188 { 2189 + name = "eslint___eslint_7.18.0.tgz"; 2190 path = fetchurl { 2191 + name = "eslint___eslint_7.18.0.tgz"; 2192 + url = "https://registry.yarnpkg.com/eslint/-/eslint-7.18.0.tgz"; 2193 + sha1 = "7fdcd2f3715a41fe6295a16234bd69aed2c75e67"; 2194 }; 2195 } 2196 { 2197 + name = "espree___espree_7.3.1.tgz"; 2198 path = fetchurl { 2199 + name = "espree___espree_7.3.1.tgz"; 2200 + url = "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz"; 2201 + sha1 = "f2df330b752c6f55019f8bd89b7660039c1bbbb6"; 2202 }; 2203 } 2204 { ··· 2210 }; 2211 } 2212 { 2213 name = "esquery___esquery_1.3.1.tgz"; 2214 path = fetchurl { 2215 name = "esquery___esquery_1.3.1.tgz"; ··· 2218 }; 2219 } 2220 { 2221 + name = "esrecurse___esrecurse_4.3.0.tgz"; 2222 path = fetchurl { 2223 + name = "esrecurse___esrecurse_4.3.0.tgz"; 2224 + url = "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz"; 2225 + sha1 = "7ad7964d679abb28bee72cec63758b1c5d2c9921"; 2226 }; 2227 } 2228 { ··· 2242 }; 2243 } 2244 { 2245 + name = "estraverse___estraverse_5.2.0.tgz"; 2246 + path = fetchurl { 2247 + name = "estraverse___estraverse_5.2.0.tgz"; 2248 + url = "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz"; 2249 + sha1 = "307df42547e6cc7324d3cf03c155d5cdb8c53880"; 2250 + }; 2251 + } 2252 + { 2253 name = "esutils___esutils_2.0.3.tgz"; 2254 path = fetchurl { 2255 name = "esutils___esutils_2.0.3.tgz"; ··· 2295 name = "extend___extend_3.0.2.tgz"; 2296 url = "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz"; 2297 sha1 = "f8b1136b4071fbd8eb140aff858b1019ec2915fa"; 2298 }; 2299 } 2300 { ··· 2354 }; 2355 } 2356 { 2357 + name = "file_entry_cache___file_entry_cache_6.0.1.tgz"; 2358 path = fetchurl { 2359 + name = "file_entry_cache___file_entry_cache_6.0.1.tgz"; 2360 + url = "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz"; 2361 + sha1 = "211b2dd9659cb0394b073e7323ac3c933d522027"; 2362 }; 2363 } 2364 { ··· 2402 }; 2403 } 2404 { 2405 + name = "flat_cache___flat_cache_3.0.4.tgz"; 2406 path = fetchurl { 2407 + name = "flat_cache___flat_cache_3.0.4.tgz"; 2408 + url = "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz"; 2409 + sha1 = "61b0338302b2fe9f957dcc32fc2a87f1c3048b11"; 2410 }; 2411 } 2412 { 2413 + name = "flatted___flatted_3.1.1.tgz"; 2414 path = fetchurl { 2415 + name = "flatted___flatted_3.1.1.tgz"; 2416 + url = "https://registry.yarnpkg.com/flatted/-/flatted-3.1.1.tgz"; 2417 + sha1 = "c4b489e80096d9df1dfc97c79871aea7c617c469"; 2418 }; 2419 } 2420 { ··· 2986 }; 2987 } 2988 { 2989 + name = "import_fresh___import_fresh_3.3.0.tgz"; 2990 + path = fetchurl { 2991 + name = "import_fresh___import_fresh_3.3.0.tgz"; 2992 + url = "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz"; 2993 + sha1 = "37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"; 2994 + }; 2995 + } 2996 + { 2997 name = "import_lazy___import_lazy_2.1.0.tgz"; 2998 path = fetchurl { 2999 name = "import_lazy___import_lazy_2.1.0.tgz"; ··· 3066 }; 3067 } 3068 { 3069 name = "invert_kv___invert_kv_1.0.0.tgz"; 3070 path = fetchurl { 3071 name = "invert_kv___invert_kv_1.0.0.tgz"; ··· 3106 }; 3107 } 3108 { 3109 name = "is_ci___is_ci_1.2.1.tgz"; 3110 path = fetchurl { 3111 name = "is_ci___is_ci_1.2.1.tgz"; ··· 3274 }; 3275 } 3276 { 3277 name = "is_retry_allowed___is_retry_allowed_1.2.0.tgz"; 3278 path = fetchurl { 3279 name = "is_retry_allowed___is_retry_allowed_1.2.0.tgz"; ··· 3290 }; 3291 } 3292 { 3293 name = "is_symbol___is_symbol_1.0.3.tgz"; 3294 path = fetchurl { 3295 name = "is_symbol___is_symbol_1.0.3.tgz"; ··· 3442 }; 3443 } 3444 { 3445 + name = "json_schema_traverse___json_schema_traverse_1.0.0.tgz"; 3446 + path = fetchurl { 3447 + name = "json_schema_traverse___json_schema_traverse_1.0.0.tgz"; 3448 + url = "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz"; 3449 + sha1 = "ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2"; 3450 + }; 3451 + } 3452 + { 3453 name = "json_schema_typed___json_schema_typed_7.0.3.tgz"; 3454 path = fetchurl { 3455 name = "json_schema_typed___json_schema_typed_7.0.3.tgz"; ··· 3482 }; 3483 } 3484 { 3485 name = "json5___json5_2.1.3.tgz"; 3486 path = fetchurl { 3487 name = "json5___json5_2.1.3.tgz"; ··· 3519 name = "jsprim___jsprim_1.4.1.tgz"; 3520 url = "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz"; 3521 sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"; 3522 }; 3523 } 3524 { ··· 3583 name = "lcid___lcid_1.0.0.tgz"; 3584 url = "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz"; 3585 sha1 = "308accafa0bc483a3867b4b6f2b9506251d1b835"; 3586 }; 3587 } 3588 { ··· 3794 }; 3795 } 3796 { 3797 + name = "lodash.truncate___lodash.truncate_4.4.2.tgz"; 3798 + path = fetchurl { 3799 + name = "lodash.truncate___lodash.truncate_4.4.2.tgz"; 3800 + url = "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz"; 3801 + sha1 = "5a350da0b1113b837ecfffd5812cbe58d6eae193"; 3802 + }; 3803 + } 3804 + { 3805 name = "lodash.union___lodash.union_4.6.0.tgz"; 3806 path = fetchurl { 3807 name = "lodash.union___lodash.union_4.6.0.tgz"; ··· 3826 }; 3827 } 3828 { 3829 + name = "lodash___lodash_4.17.21.tgz"; 3830 path = fetchurl { 3831 + name = "lodash___lodash_4.17.21.tgz"; 3832 + url = "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz"; 3833 + sha1 = "679591c564c3bffaae8454cf0b3df370c3d6911c"; 3834 }; 3835 } 3836 { ··· 4154 }; 4155 } 4156 { 4157 name = "node_addon_api___node_addon_api_1.7.2.tgz"; 4158 path = fetchurl { 4159 name = "node_addon_api___node_addon_api_1.7.2.tgz"; ··· 4434 }; 4435 } 4436 { 4437 name = "object.getownpropertydescriptors___object.getownpropertydescriptors_2.0.3.tgz"; 4438 path = fetchurl { 4439 name = "object.getownpropertydescriptors___object.getownpropertydescriptors_2.0.3.tgz"; ··· 4442 }; 4443 } 4444 { 4445 name = "omggif___omggif_1.0.10.tgz"; 4446 path = fetchurl { 4447 name = "omggif___omggif_1.0.10.tgz"; ··· 4471 name = "opener___opener_1.5.2.tgz"; 4472 url = "https://registry.yarnpkg.com/opener/-/opener-1.5.2.tgz"; 4473 sha1 = "5d37e1f35077b9dcac4301372271afdeb2a13598"; 4474 }; 4475 } 4476 { ··· 4762 }; 4763 } 4764 { 4765 name = "pkg_up___pkg_up_3.1.0.tgz"; 4766 path = fetchurl { 4767 name = "pkg_up___pkg_up_3.1.0.tgz"; ··· 4810 }; 4811 } 4812 { 4813 name = "prepend_http___prepend_http_1.0.4.tgz"; 4814 path = fetchurl { 4815 name = "prepend_http___prepend_http_1.0.4.tgz"; ··· 4879 name = "promzard___promzard_0.3.0.tgz"; 4880 url = "https://registry.yarnpkg.com/promzard/-/promzard-0.3.0.tgz"; 4881 sha1 = "26a5d6ee8c7dee4cb12208305acfb93ba382a9ee"; 4882 }; 4883 } 4884 { ··· 5018 }; 5019 } 5020 { 5021 name = "read_cmd_shim___read_cmd_shim_1.0.5.tgz"; 5022 path = fetchurl { 5023 name = "read_cmd_shim___read_cmd_shim_1.0.5.tgz"; ··· 5130 }; 5131 } 5132 { 5133 name = "regexpp___regexpp_3.1.0.tgz"; 5134 path = fetchurl { 5135 name = "regexpp___regexpp_3.1.0.tgz"; ··· 5194 }; 5195 } 5196 { 5197 + name = "require_from_string___require_from_string_2.0.2.tgz"; 5198 + path = fetchurl { 5199 + name = "require_from_string___require_from_string_2.0.2.tgz"; 5200 + url = "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz"; 5201 + sha1 = "89a7fdd938261267318eafe14f9c32e598c36909"; 5202 + }; 5203 + } 5204 + { 5205 name = "require_main_filename___require_main_filename_1.0.1.tgz"; 5206 path = fetchurl { 5207 name = "require_main_filename___require_main_filename_1.0.1.tgz"; ··· 5234 }; 5235 } 5236 { 5237 name = "resolve___resolve_1.20.0.tgz"; 5238 path = fetchurl { 5239 name = "resolve___resolve_1.20.0.tgz"; ··· 5250 }; 5251 } 5252 { 5253 name = "retry___retry_0.10.1.tgz"; 5254 path = fetchurl { 5255 name = "retry___retry_0.10.1.tgz"; ··· 5266 }; 5267 } 5268 { 5269 name = "rimraf___rimraf_2.7.1.tgz"; 5270 path = fetchurl { 5271 name = "rimraf___rimraf_2.7.1.tgz"; ··· 5282 }; 5283 } 5284 { 5285 name = "run_queue___run_queue_1.0.3.tgz"; 5286 path = fetchurl { 5287 name = "run_queue___run_queue_1.0.3.tgz"; 5288 url = "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz"; 5289 sha1 = "e848396f057d223f24386924618e25694161ec47"; 5290 }; 5291 } 5292 { ··· 5442 }; 5443 } 5444 { 5445 name = "signal_exit___signal_exit_3.0.2.tgz"; 5446 path = fetchurl { 5447 name = "signal_exit___signal_exit_3.0.2.tgz"; ··· 5458 }; 5459 } 5460 { 5461 + name = "slice_ansi___slice_ansi_4.0.0.tgz"; 5462 path = fetchurl { 5463 + name = "slice_ansi___slice_ansi_4.0.0.tgz"; 5464 + url = "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz"; 5465 + sha1 = "500e8dd0fd55b05815086255b3195adf2a45fe6b"; 5466 }; 5467 } 5468 { ··· 5682 }; 5683 } 5684 { 5685 name = "string.prototype.trimleft___string.prototype.trimleft_2.1.0.tgz"; 5686 path = fetchurl { 5687 name = "string.prototype.trimleft___string.prototype.trimleft_2.1.0.tgz"; ··· 5698 }; 5699 } 5700 { 5701 name = "string_decoder___string_decoder_1.3.0.tgz"; 5702 path = fetchurl { 5703 name = "string_decoder___string_decoder_1.3.0.tgz"; ··· 5810 }; 5811 } 5812 { 5813 + name = "table___table_6.7.1.tgz"; 5814 path = fetchurl { 5815 + name = "table___table_6.7.1.tgz"; 5816 + url = "https://registry.yarnpkg.com/table/-/table-6.7.1.tgz"; 5817 + sha1 = "ee05592b7143831a8c94f3cee6aae4c1ccef33e2"; 5818 }; 5819 } 5820 { ··· 5938 }; 5939 } 5940 { 5941 name = "to_fast_properties___to_fast_properties_2.0.0.tgz"; 5942 path = fetchurl { 5943 name = "to_fast_properties___to_fast_properties_2.0.0.tgz"; ··· 5978 }; 5979 } 5980 { 5981 name = "tunnel_agent___tunnel_agent_0.6.0.tgz"; 5982 path = fetchurl { 5983 name = "tunnel_agent___tunnel_agent_0.6.0.tgz"; ··· 6002 }; 6003 } 6004 { 6005 name = "type_fest___type_fest_0.16.0.tgz"; 6006 path = fetchurl { 6007 name = "type_fest___type_fest_0.16.0.tgz"; ··· 6039 name = "typedarray___typedarray_0.0.6.tgz"; 6040 url = "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz"; 6041 sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777"; 6042 }; 6043 } 6044 { ··· 6431 name = "write_file_atomic___write_file_atomic_3.0.1.tgz"; 6432 url = "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.1.tgz"; 6433 sha1 = "558328352e673b5bb192cf86500d60b230667d4b"; 6434 }; 6435 } 6436 {
+2 -2
pkgs/applications/networking/instant-messengers/element/element-desktop.nix
··· 8 9 let 10 executableName = "element-desktop"; 11 - version = "1.7.29"; 12 src = fetchFromGitHub { 13 owner = "vector-im"; 14 repo = "element-desktop"; 15 rev = "v${version}"; 16 - sha256 = "sha256-nCtgVVOdjZ/OK8gMInBbNeuJadchDYUO2UQxEmcOm4s="; 17 }; 18 in mkYarnPackage rec { 19 name = "element-desktop-${version}";
··· 8 9 let 10 executableName = "element-desktop"; 11 + version = "1.7.30"; 12 src = fetchFromGitHub { 13 owner = "vector-im"; 14 repo = "element-desktop"; 15 rev = "v${version}"; 16 + sha256 = "09k1xxmzqvw8c1x9ndsdvwj4598rdx9zqraz3rmr3i58s51vycxp"; 17 }; 18 in mkYarnPackage rec { 19 name = "element-desktop-${version}";
+2 -2
pkgs/applications/networking/instant-messengers/element/element-web.nix
··· 12 13 in stdenv.mkDerivation rec { 14 pname = "element-web"; 15 - version = "1.7.29"; 16 17 src = fetchurl { 18 url = "https://github.com/vector-im/element-web/releases/download/v${version}/element-v${version}.tar.gz"; 19 - sha256 = "sha256-wFC0B9v0V3JK9sLKH7GviVO/JEjePOJ06PwRq/MVqDE="; 20 }; 21 22 installPhase = ''
··· 12 13 in stdenv.mkDerivation rec { 14 pname = "element-web"; 15 + version = "1.7.30"; 16 17 src = fetchurl { 18 url = "https://github.com/vector-im/element-web/releases/download/v${version}/element-v${version}.tar.gz"; 19 + sha256 = "1pnmgdyacxfk8hdf930rqqvqrcvckc3m4pb5mkznlirsmw06nfay"; 20 }; 21 22 installPhase = ''
+29 -6
pkgs/applications/virtualization/gvisor/default.nix
··· 1 { lib 2 , buildBazelPackage 3 , fetchFromGitHub 4 , cacert 5 , git 6 , glibcLocales ··· 9 , iptables 10 , makeWrapper 11 , procps 12 , python3 13 }: 14 ··· 16 preBuild = '' 17 patchShebangs . 18 19 # Tell rules_go to use the Go binary found in the PATH 20 sed -E -i \ 21 - -e 's|go_version\s*=\s*"[^"]+",|go_version = "host",|g' \ 22 WORKSPACE 23 24 # The gazelle Go tooling needs CA certs ··· 31 export GOPATH= 32 ''; 33 34 in buildBazelPackage rec { 35 name = "gvisor-${version}"; 36 - version = "2019-11-14"; 37 38 src = fetchFromGitHub { 39 owner = "google"; 40 repo = "gvisor"; 41 - rev = "release-20191114.0"; 42 - sha256 = "0kyixjjlws9iz2r2srgpdd4rrq94vpxkmh2rmmzxd9mcqy2i9bg1"; 43 }; 44 45 nativeBuildInputs = [ git glibcLocales go makeWrapper python3 ]; 46 47 bazelTarget = "//runsc:runsc"; 48 49 # gvisor uses the Starlark implementation of rules_cc, not the built-in one, 50 # so we shouldn't delete it from our dependencies. ··· 76 rm -f "$bazelOut"/java.log "$bazelOut"/java.log.* 77 ''; 78 79 - sha256 = "0fhmlq0d2317gwhma2mz1anb69j4chybk90j71j88wpgw1hxbk34"; 80 }; 81 82 buildAttrs = { 83 inherit preBuild; 84 85 installPhase = '' 86 - install -Dm755 bazel-bin/runsc/*_pure_stripped/runsc $out/bin/runsc 87 88 # Needed for the 'runsc do' subcomand 89 wrapProgram $out/bin/runsc \
··· 1 { lib 2 , buildBazelPackage 3 , fetchFromGitHub 4 + , callPackage 5 + , bash 6 , cacert 7 , git 8 , glibcLocales ··· 11 , iptables 12 , makeWrapper 13 , procps 14 + , protobuf 15 , python3 16 }: 17 ··· 19 preBuild = '' 20 patchShebangs . 21 22 + substituteInPlace tools/defs.bzl \ 23 + --replace "#!/bin/bash" "#!${bash}/bin/bash" 24 + 25 # Tell rules_go to use the Go binary found in the PATH 26 sed -E -i \ 27 + -e 's|go_version\s*=\s*"[^"]+"|go_version = "host"|g' \ 28 WORKSPACE 29 30 # The gazelle Go tooling needs CA certs ··· 37 export GOPATH= 38 ''; 39 40 + # Patch the protoc alias so that it always builds from source. 41 + rulesProto = fetchFromGitHub { 42 + owner = "bazelbuild"; 43 + repo = "rules_proto"; 44 + rev = "f7a30f6f80006b591fa7c437fe5a951eb10bcbcf"; 45 + sha256 = "10bcw0ir0skk7h33lmqm38n9w4nfs24mwajnngkbs6jb5wsvkqv8"; 46 + extraPostFetch = '' 47 + sed -i 's|name = "protoc"|name = "_protoc_original"|' $out/proto/private/BUILD.release 48 + cat <<EOF >>$out/proto/private/BUILD.release 49 + alias(name = "protoc", actual = "@com_github_protocolbuffers_protobuf//:protoc", visibility = ["//visibility:public"]) 50 + EOF 51 + ''; 52 + }; 53 + 54 in buildBazelPackage rec { 55 name = "gvisor-${version}"; 56 + version = "20210518.0"; 57 58 src = fetchFromGitHub { 59 owner = "google"; 60 repo = "gvisor"; 61 + rev = "release-${version}"; 62 + sha256 = "15a6mlclnyfc9mx3bjksnnf4vla0xh0rv9kxdp34la4gw3c4hksn"; 63 }; 64 65 nativeBuildInputs = [ git glibcLocales go makeWrapper python3 ]; 66 67 bazelTarget = "//runsc:runsc"; 68 + bazelFlags = [ 69 + "--override_repository=rules_proto=${rulesProto}" 70 + ]; 71 72 # gvisor uses the Starlark implementation of rules_cc, not the built-in one, 73 # so we shouldn't delete it from our dependencies. ··· 99 rm -f "$bazelOut"/java.log "$bazelOut"/java.log.* 100 ''; 101 102 + sha256 = "13pahppm431m198v5bffrzq5iw8m79riplbfqp0afh384ln669hb"; 103 }; 104 105 buildAttrs = { 106 inherit preBuild; 107 108 installPhase = '' 109 + install -Dm755 bazel-out/*/bin/runsc/runsc_/runsc $out/bin/runsc 110 111 # Needed for the 'runsc do' subcomand 112 wrapProgram $out/bin/runsc \
+2 -2
pkgs/build-support/build-bazel-package/default.nix
··· 35 # required for the build as configured, rather than fetching all the dependencies 36 # which may not work in some situations (e.g. Java code which ends up relying on 37 # Debian-specific /usr/share/java paths, but doesn't in the configured build). 38 - , fetchConfigured ? false 39 40 # Don’t add Bazel --copt and --linkopt from NIX_CFLAGS_COMPILE / 41 # NIX_LDFLAGS. This is necessary when using a custom toolchain which ··· 126 find $bazelOut/external -maxdepth 1 -type l | while read symlink; do 127 name="$(basename "$symlink")" 128 rm "$symlink" 129 - test -f "$bazelOut/external/@$name.marker" && rm "$bazelOut/external/@$name.marker" 130 done 131 132 # Patching symlinks to remove build directory reference
··· 35 # required for the build as configured, rather than fetching all the dependencies 36 # which may not work in some situations (e.g. Java code which ends up relying on 37 # Debian-specific /usr/share/java paths, but doesn't in the configured build). 38 + , fetchConfigured ? true 39 40 # Don’t add Bazel --copt and --linkopt from NIX_CFLAGS_COMPILE / 41 # NIX_LDFLAGS. This is necessary when using a custom toolchain which ··· 126 find $bazelOut/external -maxdepth 1 -type l | while read symlink; do 127 name="$(basename "$symlink")" 128 rm "$symlink" 129 + test -f "$bazelOut/external/@$name.marker" && rm "$bazelOut/external/@$name.marker" || true 130 done 131 132 # Patching symlinks to remove build directory reference
+6 -9
pkgs/development/compilers/cc65/default.nix
··· 1 - { lib, stdenv 2 - , fetchFromGitHub 3 - }: 4 5 - stdenv.mkDerivation rec { 6 pname = "cc65"; 7 version = "2.19"; 8 ··· 13 sha256 = "01a15yvs455qp20hri2pbg2wqvcip0d50kb7dibi9427hqk9cnj4"; 14 }; 15 16 - makeFlags = [ 17 - "PREFIX=${placeholder "out"}" 18 - "CC=${stdenv.cc.targetPrefix}cc" 19 - ]; 20 21 meta = with lib; { 22 homepage = "https://cc65.github.io/"; ··· 56 ''; 57 license = licenses.zlib; 58 maintainers = with maintainers; [ AndersonTorres ]; 59 - platforms = with platforms; unix; 60 }; 61 }
··· 1 + { lib, gccStdenv, fetchFromGitHub }: 2 3 + gccStdenv.mkDerivation rec { 4 pname = "cc65"; 5 version = "2.19"; 6 ··· 11 sha256 = "01a15yvs455qp20hri2pbg2wqvcip0d50kb7dibi9427hqk9cnj4"; 12 }; 13 14 + makeFlags = [ "PREFIX=${placeholder "out"}" ]; 15 + 16 + enableParallelBuilding = true; 17 18 meta = with lib; { 19 homepage = "https://cc65.github.io/"; ··· 53 ''; 54 license = licenses.zlib; 55 maintainers = with maintainers; [ AndersonTorres ]; 56 + platforms = platforms.unix; 57 }; 58 }
+2 -2
pkgs/development/interpreters/clips/default.nix
··· 1 { lib, stdenv, fetchurl }: 2 3 stdenv.mkDerivation rec { 4 - version = "6.31"; 5 pname = "clips"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/clipsrules/CLIPS/${version}/clips_core_source_${ 9 builtins.replaceStrings [ "." ] [ "" ] version 10 }.tar.gz"; 11 - sha256 = "165k0z7dsv04q432sanmw0jxmxwf56cnhsdfw5ffjqxd3lzkjnv6"; 12 }; 13 14 postPatch = ''
··· 1 { lib, stdenv, fetchurl }: 2 3 stdenv.mkDerivation rec { 4 + version = "6.40"; 5 pname = "clips"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/clipsrules/CLIPS/${version}/clips_core_source_${ 9 builtins.replaceStrings [ "." ] [ "" ] version 10 }.tar.gz"; 11 + sha256 = "1pr5l61zxf6kjs8b2b028g2aq45pigavwjmrf4l5mrdmlnk3fq5d"; 12 }; 13 14 postPatch = ''
+2 -2
pkgs/development/libraries/igraph/default.nix
··· 21 22 stdenv.mkDerivation rec { 23 pname = "igraph"; 24 - version = "0.9.3"; 25 26 src = fetchFromGitHub { 27 owner = "igraph"; 28 repo = pname; 29 rev = version; 30 - sha256 = "sha256-StRXtP2PelPcS+l5O1AOVFkza3hiKFwCdp8XLal4grE="; 31 }; 32 33 # Normally, igraph wants us to call bootstrap.sh, which will call
··· 21 22 stdenv.mkDerivation rec { 23 pname = "igraph"; 24 + version = "0.9.4"; 25 26 src = fetchFromGitHub { 27 owner = "igraph"; 28 repo = pname; 29 rev = version; 30 + sha256 = "sha256-tF+cnJRv125bSpZIpABTIHAfJO4TNfSBHjnzpNTbFgk="; 31 }; 32 33 # Normally, igraph wants us to call bootstrap.sh, which will call
+2 -2
pkgs/development/libraries/leptonica/default.nix
··· 4 5 stdenv.mkDerivation rec { 6 pname = "leptonica"; 7 - version = "1.80.0"; 8 9 src = fetchurl { 10 url = "http://www.leptonica.org/source/${pname}-${version}.tar.gz"; 11 - sha256 = "192bs676ind8627f0v3v8d1q7r4xwc7q0zvbdbxn1fgvmv14d77c"; 12 }; 13 14 nativeBuildInputs = [ autoreconfHook pkg-config ];
··· 4 5 stdenv.mkDerivation rec { 6 pname = "leptonica"; 7 + version = "1.81.0"; 8 9 src = fetchurl { 10 url = "http://www.leptonica.org/source/${pname}-${version}.tar.gz"; 11 + sha256 = "sha256-0ZKwVem9YLhBEQI8yYDDc5Dm1CexlKj9K9YRVDo73a0="; 12 }; 13 14 nativeBuildInputs = [ autoreconfHook pkg-config ];
+2 -2
pkgs/development/libraries/physics/lhapdf/default.nix
··· 1 - { lib, stdenv, fetchurl, python2, makeWrapper }: 2 3 stdenv.mkDerivation rec { 4 pname = "lhapdf"; ··· 10 }; 11 12 nativeBuildInputs = [ makeWrapper ]; 13 - buildInputs = [ python2 ]; 14 15 enableParallelBuilding = true; 16
··· 1 + { lib, stdenv, fetchurl, python, makeWrapper }: 2 3 stdenv.mkDerivation rec { 4 pname = "lhapdf"; ··· 10 }; 11 12 nativeBuildInputs = [ makeWrapper ]; 13 + buildInputs = [ python ]; 14 15 enableParallelBuilding = true; 16
+15 -14
pkgs/development/ocaml-modules/octavius/default.nix
··· 1 - { stdenv, lib, fetchurl, ocaml, findlib, ocamlbuild, topkg }: 2 3 - if !lib.versionAtLeast ocaml.version "4.03" 4 - then throw "octavius is not available for OCaml ${ocaml.version}" else 5 6 - stdenv.mkDerivation { 7 - name = "ocaml${ocaml.version}-octavius-0.2.0"; 8 - src = fetchurl { 9 - url = "https://github.com/ocaml-doc/octavius/releases/download/v0.2.0/octavius-0.2.0.tbz"; 10 - sha256 = "02milzzlr4xk5aymg2fjz27f528d5pyscqvld3q0dm41zcpkz5ml"; 11 }; 12 13 - buildInputs = [ ocaml findlib ocamlbuild topkg ]; 14 15 - inherit (topkg) buildPhase installPhase; 16 17 - meta = { 18 description = "Ocamldoc comment syntax parser"; 19 homepage = "https://github.com/ocaml-doc/octavius"; 20 - license = lib.licenses.isc; 21 - maintainers = [ lib.maintainers.vbgl ]; 22 - inherit (ocaml.meta) platforms; 23 }; 24 }
··· 1 + { lib, fetchFromGitHub, buildDunePackage, ocaml }: 2 3 + buildDunePackage rec { 4 + pname = "octavius"; 5 + version = "1.2.2"; 6 7 + src = fetchFromGitHub { 8 + owner = "ocaml-doc"; 9 + repo = "octavius"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-/S6WpIo1c5J9uM3xgtAM/elhnsl0XimnIFsKy3ootbA="; 12 }; 13 14 + minimumOCamlVersion = "4.03"; 15 + useDune2 = lib.versionAtLeast ocaml.version "4.08"; 16 17 + doCheck = true; 18 19 + meta = with lib; { 20 description = "Ocamldoc comment syntax parser"; 21 homepage = "https://github.com/ocaml-doc/octavius"; 22 + license = licenses.isc; 23 + maintainers = with maintainers; [ vbgl ]; 24 }; 25 }
+2 -2
pkgs/development/python-modules/aio-georss-gdacs/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "aio-georss-gdacs"; 14 - version = "0.4"; 15 disabled = pythonOlder "3.7"; 16 17 src = fetchFromGitHub { 18 owner = "exxamalte"; 19 repo = "python-aio-georss-gdacs"; 20 rev = "v${version}"; 21 - sha256 = "0rcrhdpgj84hfifx9rzxz15ajzsk069iknb28gicw1cm1qv4vfxm"; 22 }; 23 24 propagatedBuildInputs = [
··· 11 12 buildPythonPackage rec { 13 pname = "aio-georss-gdacs"; 14 + version = "0.5"; 15 disabled = pythonOlder "3.7"; 16 17 src = fetchFromGitHub { 18 owner = "exxamalte"; 19 repo = "python-aio-georss-gdacs"; 20 rev = "v${version}"; 21 + sha256 = "sha256-CIQoQRk5KIPEa/Y/7C1NPctuHvoiZ/o2bDa5YSWY+9M="; 22 }; 23 24 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/dwdwfsapi/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "dwdwfsapi"; 10 - version = "1.0.3"; 11 12 src = fetchPypi { 13 inherit pname version; 14 - sha256 = "sha256-PX1b1msaZH8HKVBo3GU7TOr8Lo7INLjjJBkDHHs6mzk="; 15 }; 16 17 propagatedBuildInputs = [
··· 7 8 buildPythonPackage rec { 9 pname = "dwdwfsapi"; 10 + version = "1.0.4"; 11 12 src = fetchPypi { 13 inherit pname version; 14 + sha256 = "sha256-JOIg6rLrU8v39z1I6smIPEeiUPdSdJcD2avUsTQq+bU="; 15 }; 16 17 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/georss-qld-bushfire-alert-client/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "georss-qld-bushfire-alert-client"; 11 - version = "0.4"; 12 disabled = pythonOlder "3.7"; 13 14 src = fetchFromGitHub { 15 owner = "exxamalte"; 16 repo = "python-georss-qld-bushfire-alert-client"; 17 rev = "v${version}"; 18 - sha256 = "14k7q0ynray1fj0lhxvgxpbdh4pmsqqk9gzmv38p9i7ijx8h1sc8"; 19 }; 20 21 propagatedBuildInputs = [
··· 8 9 buildPythonPackage rec { 10 pname = "georss-qld-bushfire-alert-client"; 11 + version = "0.5"; 12 disabled = pythonOlder "3.7"; 13 14 src = fetchFromGitHub { 15 owner = "exxamalte"; 16 repo = "python-georss-qld-bushfire-alert-client"; 17 rev = "v${version}"; 18 + sha256 = "sha256-G7rIoG48MTWngtXCT5xzcjntzsYxtVWVhXflLsWY/dk="; 19 }; 20 21 propagatedBuildInputs = [
+26 -11
pkgs/development/python-modules/minio/default.nix
··· 1 - { lib, buildPythonPackage, isPy3k, fetchPypi 2 , configparser 3 , faker 4 , future 5 , mock 6 , nose 7 , python-dateutil 8 , pytz 9 - , pytestCheckHook 10 , urllib3 11 - , certifi 12 }: 13 14 buildPythonPackage rec { 15 pname = "minio"; 16 - version = "7.0.2"; 17 - disabled = !isPy3k; 18 19 - src = fetchPypi { 20 - inherit pname version; 21 - sha256 = "f2f6022cfe4694d946972efef2a752f87d08cc030940faa50a640088772953c8"; 22 }; 23 24 propagatedBuildInputs = [ 25 configparser 26 future 27 python-dateutil 28 pytz 29 urllib3 30 - certifi 31 ]; 32 33 - checkInputs = [ faker mock nose pytestCheckHook ]; 34 # example credentials aren't present 35 - pytestFlagsArray = [ "--ignore=tests/unit/credentials_test.py" ]; 36 37 meta = with lib; { 38 description = "Simple APIs to access any Amazon S3 compatible object storage server";
··· 1 + { lib 2 + , buildPythonPackage 3 + , certifi 4 , configparser 5 , faker 6 + , fetchFromGitHub 7 , future 8 , mock 9 , nose 10 + , pytestCheckHook 11 , python-dateutil 12 + , pythonOlder 13 , pytz 14 , urllib3 15 }: 16 17 buildPythonPackage rec { 18 pname = "minio"; 19 + version = "7.0.3"; 20 + disabled = pythonOlder "3.6"; 21 22 + src = fetchFromGitHub { 23 + owner = "minio"; 24 + repo = "minio-py"; 25 + rev = version; 26 + sha256 = "14symk7b3i9xzfc2wkcnqmfsvh9j3jx2ijz7dgy1xyrbjwb7yzhc"; 27 }; 28 29 propagatedBuildInputs = [ 30 + certifi 31 configparser 32 future 33 python-dateutil 34 pytz 35 urllib3 36 ]; 37 38 + checkInputs = [ 39 + faker 40 + mock 41 + nose 42 + pytestCheckHook 43 + ]; 44 + 45 # example credentials aren't present 46 + disabledTestPaths = [ 47 + "tests/unit/credentials_test.py" 48 + ]; 49 + 50 + pythonImportsCheck = [ "minio" ]; 51 52 meta = with lib; { 53 description = "Simple APIs to access any Amazon S3 compatible object storage server";
+2 -2
pkgs/development/python-modules/pyialarm/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "pyialarm"; 11 - version = "1.7"; 12 disabled = pythonOlder "3.7"; 13 14 src = fetchFromGitHub { 15 owner = "RyuzakiKK"; 16 repo = pname; 17 rev = "v${version}"; 18 - sha256 = "sha256-Gk5kWOqsPyq/0Vc+jdRRyj+ko3CpmqQ6/McvJYAGjLY="; 19 }; 20 21 propagatedBuildInputs = [
··· 8 9 buildPythonPackage rec { 10 pname = "pyialarm"; 11 + version = "1.8.1"; 12 disabled = pythonOlder "3.7"; 13 14 src = fetchFromGitHub { 15 owner = "RyuzakiKK"; 16 repo = pname; 17 rev = "v${version}"; 18 + sha256 = "sha256-Hig1BlgZX2FBh+wx7qz9lmkBIFn/IHActf9FXDU6Yz8="; 19 }; 20 21 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/python-igraph/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "python-igraph"; 13 - version = "0.9.1"; 14 15 disabled = pythonOlder "3.6"; 16 ··· 18 owner = "igraph"; 19 repo = "python-igraph"; 20 rev = version; 21 - sha256 = "1ldyzza25zvwh144lw8x856z76s8gfvnbdm56fcmwkvm7aj81npw"; 22 }; 23 24 nativeBuildInputs = [
··· 10 11 buildPythonPackage rec { 12 pname = "python-igraph"; 13 + version = "0.9.4"; 14 15 disabled = pythonOlder "3.6"; 16 ··· 18 owner = "igraph"; 19 repo = "python-igraph"; 20 rev = version; 21 + sha256 = "sha256-0iqYzeqVJwBqDL7AllrNaI5c7fmtrVwWpinCnO+ACzo="; 22 }; 23 24 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/tensorflow/default.nix
··· 288 fetchAttrs = { 289 # cudaSupport causes fetch of ncclArchive, resulting in different hashes 290 sha256 = if cudaSupport then 291 - "1i7z2a7bc2q1vn1h9nx1xc6g1r1cby2xvbcs20fj9h6c2fgaw9j4" 292 else 293 - "0s8q5rxq8abr50c5jpwv96ncfc0k8jw7w70ri8viqy031g9v9v45"; 294 }; 295 296 buildAttrs = {
··· 288 fetchAttrs = { 289 # cudaSupport causes fetch of ncclArchive, resulting in different hashes 290 sha256 = if cudaSupport then 291 + "10m6qj3kchgxfgb6qh59vc51knm9r9pkng8bf90h00dnggvv8234" 292 else 293 + "04a98yrp09nd0p17k0jbzkgjppxs0yma7m5zkfrwgvr4g0w71v68"; 294 }; 295 296 buildAttrs = {
+1 -1
pkgs/development/tools/bazel-watcher/default.nix
··· 56 sed -e '/^FILE:@bazel_gazelle_go_repository_tools.*/d' -i $bazelOut/external/\@*.marker 57 ''; 58 59 - sha256 = "0rwwjjj6zaj4hdcbsbp0di53xn6203r2vgpddhdrp8iph9ab60cg"; 60 }; 61 62 buildAttrs = {
··· 56 sed -e '/^FILE:@bazel_gazelle_go_repository_tools.*/d' -i $bazelOut/external/\@*.marker 57 ''; 58 59 + sha256 = "1j175z3d4fbi4pl35py7yjq7ywrvwin6id131jv32hx0ck4g1m46"; 60 }; 61 62 buildAttrs = {
+2 -2
pkgs/misc/vim-plugins/vim-utils.nix
··· 184 185 rtpPath = "share/vim-plugins"; 186 187 - nativeImpl = packages: lib.optionalString (packages != null) 188 (let 189 link = (packageName: dir: pluginPath: "ln -sf ${pluginPath}/share/vim-plugins/* $out/pack/${packageName}/${dir}"); 190 packageLinks = (packageName: {start ? [], opt ? []}: ··· 340 entries = [ 341 beforePlugins 342 vamImpl 343 - (nativeImpl packages) 344 ] 345 ++ lib.optional (pathogen != null) pathogenImpl 346 ++ lib.optional (plug != null) plugImpl 347 ++ [ customRC ];
··· 184 185 rtpPath = "share/vim-plugins"; 186 187 + nativeImpl = packages: 188 (let 189 link = (packageName: dir: pluginPath: "ln -sf ${pluginPath}/share/vim-plugins/* $out/pack/${packageName}/${dir}"); 190 packageLinks = (packageName: {start ? [], opt ? []}: ··· 340 entries = [ 341 beforePlugins 342 vamImpl 343 ] 344 + ++ lib.optional (packages != null && packages != []) (nativeImpl packages) 345 ++ lib.optional (pathogen != null) pathogenImpl 346 ++ lib.optional (plug != null) plugImpl 347 ++ [ customRC ];
+24
pkgs/misc/vscode-extensions/default.nix
··· 668 }; 669 }; 670 671 jpoissonnier.vscode-styled-components = buildVscodeMarketplaceExtension { 672 mktplcRef = { 673 name = "vscode-styled-components"; ··· 1170 }; 1171 meta = { 1172 license = lib.licenses.mit; 1173 }; 1174 }; 1175
··· 668 }; 669 }; 670 671 + johnpapa.vscode-peacock = buildVscodeMarketplaceExtension { 672 + mktplcRef = { 673 + name = "vscode-peacock"; 674 + publisher = "johnpapa"; 675 + version = "3.9.1"; 676 + sha256 = "1g7apzzgfm8s9sjavhwr8jpf9slhq8b9jfkww3q5n41mzzx8m94p"; 677 + }; 678 + meta = with lib; { 679 + license = licenses.mit; 680 + }; 681 + }; 682 + 683 jpoissonnier.vscode-styled-components = buildVscodeMarketplaceExtension { 684 mktplcRef = { 685 name = "vscode-styled-components"; ··· 1182 }; 1183 meta = { 1184 license = lib.licenses.mit; 1185 + }; 1186 + }; 1187 + 1188 + wix.vscode-import-cost = buildVscodeMarketplaceExtension { 1189 + mktplcRef = { 1190 + name = "vscode-import-cost"; 1191 + publisher = "wix"; 1192 + version = "2.15.0"; 1193 + sha256 = "0d3b6654cdck1syn74vmmd1jmgkrw5v4c4cyrhdxbhggkip732bc"; 1194 + }; 1195 + meta = with lib; { 1196 + license = licenses.mit; 1197 }; 1198 }; 1199
+19 -14
pkgs/servers/http/envoy/default.nix
··· 3 , fetchFromGitHub 4 , stdenv 5 , cmake 6 , go 7 , ninja 8 , python3 9 , nixosTests ··· 15 # However, the version string is more useful for end-users. 16 # These are contained in a attrset of their own to make it obvious that 17 # people should update both. 18 - version = "1.16.2"; 19 - commit = "e98e41a8e168af7acae8079fc0cd68155f699aa3"; 20 }; 21 in 22 buildBazelPackage rec { ··· 26 owner = "envoyproxy"; 27 repo = "envoy"; 28 rev = srcVer.commit; 29 - hash = "sha256-aWVMRKFCZzf9/96NRPCP4jiW38DJhXyi0gEqW7uIpnQ="; 30 31 extraPostFetch = '' 32 chmod -R +w $out ··· 36 ''; 37 }; 38 39 - patches = [ 40 - # Quiche needs to be updated to compile under newer GCC. 41 - # This is a manual backport of https://github.com/envoyproxy/envoy/pull/13949. 42 - ./0001-quiche-update-QUICHE-tar-13949.patch 43 - 44 - # upb needs to be updated to compile under newer GCC. 45 - # This is a manual backport of https://github.com/protocolbuffers/upb/commit/9bd23dab4240b015321a53c45b3c9e4847fbf020. 46 - ./0002-Add-upb-patch-to-make-it-compile-under-GCC10.patch 47 - ]; 48 postPatch = '' 49 sed -i 's,#!/usr/bin/env python3,#!${python3}/bin/python,' bazel/foreign_cc/luajit.patch 50 ''; 51 52 nativeBuildInputs = [ 53 cmake 54 python3 55 go 56 ninja 57 ]; 58 59 fetchAttrs = { 60 - sha256 = "0q72c2zrl5vc8afkhkwyalb2h0mxn3133d4b9z4gag0p95wbwgc0"; 61 dontUseCmakeConfigure = true; 62 preInstall = '' 63 # Strip out the path to the build location (by deleting the comment line). 64 find $bazelOut/external -name requirements.bzl | while read requirements; do ··· 78 >$bazelOut/external/config_validation_pip3/PyYAML-5.3.1-cp38-cp38-linux_x86_64.whl 79 >$bazelOut/external/protodoc_pip3/PyYAML-5.3.1-cp38-cp38-linux_x86_64.whl 80 >$bazelOut/external/thrift_pip3/thrift-0.13.0-cp38-cp38-linux_x86_64.whl 81 ''; 82 }; 83 buildAttrs = { 84 dontUseCmakeConfigure = true; 85 dontUseNinjaInstall = true; 86 preConfigure = '' 87 sed -i 's,#!/usr/bin/env bash,#!${stdenv.shell},' $bazelOut/external/rules_foreign_cc/tools/build_defs/framework.bzl ··· 98 ''; 99 }; 100 101 - fetchConfigured = true; 102 removeRulesCC = false; 103 removeLocalConfigCc = true; 104 removeLocal = false;
··· 3 , fetchFromGitHub 4 , stdenv 5 , cmake 6 + , gn 7 , go 8 + , jdk 9 , ninja 10 , python3 11 , nixosTests ··· 17 # However, the version string is more useful for end-users. 18 # These are contained in a attrset of their own to make it obvious that 19 # people should update both. 20 + version = "1.17.3"; 21 + commit = "46bf743b97d0d3f01ff437b2f10cc0bd9cdfe6e4"; 22 }; 23 in 24 buildBazelPackage rec { ··· 28 owner = "envoyproxy"; 29 repo = "envoy"; 30 rev = srcVer.commit; 31 + hash = "sha256:09zzr4h3zjsb2rkxrvlazpx0jy33yn9j65ilxiqbvv0ckaralqfc"; 32 33 extraPostFetch = '' 34 chmod -R +w $out ··· 38 ''; 39 }; 40 41 postPatch = '' 42 sed -i 's,#!/usr/bin/env python3,#!${python3}/bin/python,' bazel/foreign_cc/luajit.patch 43 + sed -i '/javabase=/d' .bazelrc 44 + # Patch paths to build tools, and disable gold because it just segfaults. 45 + substituteInPlace bazel/external/wee8.genrule_cmd \ 46 + --replace '"''$$gn"' '"''$$(command -v gn)"' \ 47 + --replace '"''$$ninja"' '"''$$(command -v ninja)"' \ 48 + --replace '"''$$WEE8_BUILD_ARGS"' '"''$$WEE8_BUILD_ARGS use_gold=false"' 49 ''; 50 51 nativeBuildInputs = [ 52 cmake 53 python3 54 + gn 55 go 56 + jdk 57 ninja 58 ]; 59 60 fetchAttrs = { 61 + sha256 = "sha256:1cy2b73x8jzczq9z9c1kl7zrg5iasvsakb50zxn4mswpmajkbj5h"; 62 dontUseCmakeConfigure = true; 63 + dontUseGnConfigure = true; 64 preInstall = '' 65 # Strip out the path to the build location (by deleting the comment line). 66 find $bazelOut/external -name requirements.bzl | while read requirements; do ··· 80 >$bazelOut/external/config_validation_pip3/PyYAML-5.3.1-cp38-cp38-linux_x86_64.whl 81 >$bazelOut/external/protodoc_pip3/PyYAML-5.3.1-cp38-cp38-linux_x86_64.whl 82 >$bazelOut/external/thrift_pip3/thrift-0.13.0-cp38-cp38-linux_x86_64.whl 83 + 84 + # Remove Unix timestamps from go cache. 85 + rm -rf $bazelOut/external/bazel_gazelle_go_repository_cache/{gocache,pkg/mod/cache,pkg/sumdb} 86 ''; 87 }; 88 buildAttrs = { 89 dontUseCmakeConfigure = true; 90 + dontUseGnConfigure = true; 91 dontUseNinjaInstall = true; 92 preConfigure = '' 93 sed -i 's,#!/usr/bin/env bash,#!${stdenv.shell},' $bazelOut/external/rules_foreign_cc/tools/build_defs/framework.bzl ··· 104 ''; 105 }; 106 107 removeRulesCC = false; 108 removeLocalConfigCc = true; 109 removeLocal = false;
+3 -3
pkgs/servers/http/pomerium/default.nix
··· 11 in 12 buildGoModule rec { 13 pname = "pomerium"; 14 - version = "0.13.3"; 15 src = fetchFromGitHub { 16 owner = "pomerium"; 17 repo = "pomerium"; 18 rev = "v${version}"; 19 - hash = "sha256-g0w1aIHvf2rJANvGWHeUxdnyCDsvy/PQ9Kp8nDdT/0w="; 20 }; 21 22 - vendorSha256 = "sha256-grihU85OcGyf9/KKrv87xZonX5r+Z1oHQTf84Ya61fg="; 23 subPackages = [ 24 "cmd/pomerium" 25 "cmd/pomerium-cli"
··· 11 in 12 buildGoModule rec { 13 pname = "pomerium"; 14 + version = "0.14.4"; 15 src = fetchFromGitHub { 16 owner = "pomerium"; 17 repo = "pomerium"; 18 rev = "v${version}"; 19 + hash = "sha256:097csr8f43cn0iq030ajvvpwnwcfmjxyyk6pcisdy937axlrzska"; 20 }; 21 22 + vendorSha256 = "sha256:0n45xvwjiqyh41dsm4z1rnkgkycf5wfmacm804hqnd5rz7xk2shf"; 23 subPackages = [ 24 "cmd/pomerium" 25 "cmd/pomerium-cli"
+13 -6
pkgs/tools/misc/nvimpager/default.nix
··· 1 { fetchFromGitHub 2 , lib, stdenv 3 , ncurses, neovim, procps 4 - , pandoc, lua51Packages, util-linux 5 }: 6 7 stdenv.mkDerivation rec { 8 pname = "nvimpager"; 9 - version = "0.9"; 10 11 src = fetchFromGitHub { 12 owner = "lucc"; 13 repo = pname; 14 rev = "v${version}"; 15 - sha256 = "1xy5387szfw0bp8dr7d4z33wd4xva7q219rvz8gc0vvv1vsy73va"; 16 }; 17 18 buildInputs = [ 19 ncurses # for tput 20 procps # for nvim_get_proc() which uses ps(1) 21 ]; 22 - nativeBuildInputs = [ pandoc ]; 23 24 makeFlags = [ "PREFIX=$(out)" ]; 25 - buildFlags = [ "nvimpager.configured" ]; 26 preBuild = '' 27 patchShebangs nvimpager 28 substituteInPlace nvimpager --replace ':-nvim' ':-${neovim}/bin/nvim' 29 ''; 30 31 doCheck = true; 32 checkInputs = [ lua51Packages.busted util-linux neovim ]; 33 - checkPhase = ''script -c "busted --lpath './?.lua' test"''; 34 35 meta = with lib; { 36 description = "Use neovim as pager";
··· 1 { fetchFromGitHub 2 , lib, stdenv 3 , ncurses, neovim, procps 4 + , scdoc, lua51Packages, util-linux 5 }: 6 7 stdenv.mkDerivation rec { 8 pname = "nvimpager"; 9 + version = "0.10"; 10 11 src = fetchFromGitHub { 12 owner = "lucc"; 13 repo = pname; 14 rev = "v${version}"; 15 + sha256 = "sha256-okYnPwuxU/syxcKIMUBc25r791D6Bug2w2axH4vvmAY="; 16 }; 17 18 buildInputs = [ 19 ncurses # for tput 20 procps # for nvim_get_proc() which uses ps(1) 21 ]; 22 + nativeBuildInputs = [ scdoc ]; 23 24 makeFlags = [ "PREFIX=$(out)" ]; 25 + buildFlags = [ "nvimpager.configured" "nvimpager.1" ]; 26 preBuild = '' 27 patchShebangs nvimpager 28 substituteInPlace nvimpager --replace ':-nvim' ':-${neovim}/bin/nvim' 29 + # remove git command from makefile as we run from a tarball 30 + # replace with actual timestamp of the commit 31 + substituteInPlace makefile --replace '$(shell git log -1 --no-show-signature --pretty="%ct")' 1623019602 32 ''; 33 34 doCheck = true; 35 checkInputs = [ lua51Packages.busted util-linux neovim ]; 36 + checkPhase = '' 37 + runHook preCheck 38 + script -c "busted --lpath './?.lua' test" 39 + runHook postCheck 40 + ''; 41 42 meta = with lib; { 43 description = "Use neovim as pager";
+2 -2
pkgs/tools/networking/isync/default.nix
··· 5 6 stdenv.mkDerivation rec { 7 pname = "isync"; 8 - version = "1.4.1"; 9 10 src = fetchurl { 11 url = "mirror://sourceforge/isync/${pname}-${version}.tar.gz"; 12 - sha256 = "0l01880fcyqn6xq9n8236ha5n2a3wl5g8rmv22z8nv5hgfsxndhd"; 13 }; 14 15 nativeBuildInputs = [ pkg-config perl ];
··· 5 6 stdenv.mkDerivation rec { 7 pname = "isync"; 8 + version = "1.4.2"; 9 10 src = fetchurl { 11 url = "mirror://sourceforge/isync/${pname}-${version}.tar.gz"; 12 + sha256 = "0hskfpj4r4q3959k3npyqli353daj3r5d9mfia9bbmig87nyfd8r"; 13 }; 14 15 nativeBuildInputs = [ pkg-config perl ];
+8 -3
pkgs/top-level/all-packages.nix
··· 19109 19110 engelsystem = callPackage ../servers/web-apps/engelsystem { php = php74; }; 19111 19112 - envoy = callPackage ../servers/http/envoy { }; 19113 19114 etcd = callPackage ../servers/etcd { }; 19115 etcd_3_4 = callPackage ../servers/etcd/3.4.nix { }; ··· 24174 gv = callPackage ../applications/misc/gv { }; 24175 24176 gvisor = callPackage ../applications/virtualization/gvisor { 24177 - go = go_1_14; 24178 }; 24179 24180 gvisor-containerd-shim = callPackage ../applications/virtualization/gvisor/containerd-shim.nix { }; ··· 30218 30219 herwig = callPackage ../development/libraries/physics/herwig { }; 30220 30221 - lhapdf = callPackage ../development/libraries/physics/lhapdf { }; 30222 30223 mela = callPackage ../development/libraries/physics/mela { }; 30224
··· 19109 19110 engelsystem = callPackage ../servers/web-apps/engelsystem { php = php74; }; 19111 19112 + envoy = callPackage ../servers/http/envoy { 19113 + go = go_1_15; 19114 + jdk = openjdk11; 19115 + }; 19116 19117 etcd = callPackage ../servers/etcd { }; 19118 etcd_3_4 = callPackage ../servers/etcd/3.4.nix { }; ··· 24177 gv = callPackage ../applications/misc/gv { }; 24178 24179 gvisor = callPackage ../applications/virtualization/gvisor { 24180 + go = go_1_16; 24181 }; 24182 24183 gvisor-containerd-shim = callPackage ../applications/virtualization/gvisor/containerd-shim.nix { }; ··· 30221 30222 herwig = callPackage ../development/libraries/physics/herwig { }; 30223 30224 + lhapdf = callPackage ../development/libraries/physics/lhapdf { 30225 + python = python3; 30226 + }; 30227 30228 mela = callPackage ../development/libraries/physics/mela { }; 30229
+4
pkgs/top-level/python-packages.nix
··· 3840 3841 lexid = callPackage ../development/python-modules/lexid { }; 3842 3843 libagent = callPackage ../development/python-modules/libagent { }; 3844 3845 pa-ringbuffer = callPackage ../development/python-modules/pa-ringbuffer { };
··· 3840 3841 lexid = callPackage ../development/python-modules/lexid { }; 3842 3843 + lhapdf = toPythonModule (pkgs.lhapdf.override { 3844 + inherit python; 3845 + }); 3846 + 3847 libagent = callPackage ../development/python-modules/libagent { }; 3848 3849 pa-ringbuffer = callPackage ../development/python-modules/pa-ringbuffer { };