Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
74200a71 b3a0328b

+8081 -2460
+1
.github/workflows/labels.yml
··· 2 3 on: 4 pull_request_target: 5 6 jobs: 7 labels:
··· 2 3 on: 4 pull_request_target: 5 + types: [edited, opened, synchronize, reopened] 6 7 jobs: 8 labels:
+6
maintainers/maintainer-list.nix
··· 9821 githubId = 27586264; 9822 name = "Tobias Schmidt"; 9823 }; 9824 travisbhartwell = { 9825 email = "nafai@travishartwell.net"; 9826 github = "travisbhartwell";
··· 9821 githubId = 27586264; 9822 name = "Tobias Schmidt"; 9823 }; 9824 + totoroot = { 9825 + name = "Matthias Thym"; 9826 + email = "git@thym.at"; 9827 + github = "totoroot"; 9828 + githubId = 39650930; 9829 + }; 9830 travisbhartwell = { 9831 email = "nafai@travishartwell.net"; 9832 github = "travisbhartwell";
+9
nixos/modules/services/monitoring/grafana.nix
··· 15 SERVER_PROTOCOL = cfg.protocol; 16 SERVER_HTTP_ADDR = cfg.addr; 17 SERVER_HTTP_PORT = cfg.port; 18 SERVER_DOMAIN = cfg.domain; 19 SERVER_ROOT_URL = cfg.rootUrl; 20 SERVER_STATIC_ROOT_PATH = cfg.staticRootPath; ··· 289 description = "Listening port."; 290 default = 3000; 291 type = types.int; 292 }; 293 294 domain = mkOption { ··· 622 serviceConfig = { 623 WorkingDirectory = cfg.dataDir; 624 User = "grafana"; 625 }; 626 preStart = '' 627 ln -fs ${cfg.package}/share/grafana/conf ${cfg.dataDir}
··· 15 SERVER_PROTOCOL = cfg.protocol; 16 SERVER_HTTP_ADDR = cfg.addr; 17 SERVER_HTTP_PORT = cfg.port; 18 + SERVER_SOCKET = cfg.socket; 19 SERVER_DOMAIN = cfg.domain; 20 SERVER_ROOT_URL = cfg.rootUrl; 21 SERVER_STATIC_ROOT_PATH = cfg.staticRootPath; ··· 290 description = "Listening port."; 291 default = 3000; 292 type = types.int; 293 + }; 294 + 295 + socket = mkOption { 296 + description = "Listening socket."; 297 + default = "/run/grafana/grafana.sock"; 298 + type = types.str; 299 }; 300 301 domain = mkOption { ··· 629 serviceConfig = { 630 WorkingDirectory = cfg.dataDir; 631 User = "grafana"; 632 + RuntimeDirectory = "grafana"; 633 + RuntimeDirectoryMode = "0755"; 634 }; 635 preStart = '' 636 ln -fs ${cfg.package}/share/grafana/conf ${cfg.dataDir}
+12 -2
nixos/modules/services/x11/desktop-managers/kodi.nix
··· 14 default = false; 15 description = "Enable the kodi multimedia center."; 16 }; 17 }; 18 }; 19 ··· 21 services.xserver.desktopManager.session = [{ 22 name = "kodi"; 23 start = '' 24 - LIRC_SOCKET_PATH=/run/lirc/lircd ${pkgs.kodi}/bin/kodi --standalone & 25 waitPID=$! 26 ''; 27 }]; 28 29 - environment.systemPackages = [ pkgs.kodi ]; 30 }; 31 }
··· 14 default = false; 15 description = "Enable the kodi multimedia center."; 16 }; 17 + 18 + package = mkOption { 19 + type = types.package; 20 + default = pkgs.kodi; 21 + defaultText = "pkgs.kodi"; 22 + example = "pkgs.kodi.withPackages (p: with p; [ jellyfin pvr-iptvsimple vfs-sftp ])"; 23 + description = '' 24 + Package that should be used for Kodi. 25 + ''; 26 + }; 27 }; 28 }; 29 ··· 31 services.xserver.desktopManager.session = [{ 32 name = "kodi"; 33 start = '' 34 + LIRC_SOCKET_PATH=/run/lirc/lircd ${cfg.package}/bin/kodi --standalone & 35 waitPID=$! 36 ''; 37 }]; 38 39 + environment.systemPackages = [ cfg.package ]; 40 }; 41 }
+2 -2
nixos/tests/pomerium.nix
··· 1 - import ./make-test-python.nix ({ pkgs, ... }: { 2 name = "pomerium"; 3 - meta = with pkgs.stdenv.lib.maintainers; { 4 maintainers = [ lukegb ]; 5 }; 6
··· 1 + import ./make-test-python.nix ({ pkgs, lib, ... }: { 2 name = "pomerium"; 3 + meta = with lib.maintainers; { 4 maintainers = [ lukegb ]; 5 }; 6
+1 -1
pkgs/applications/audio/bitwig-studio/bitwig-studio3.nix
··· 10 11 src = fetchurl { 12 url = "https://downloads.bitwig.com/stable/${version}/${pname}-${version}.deb"; 13 - sha256 = "10nf29zr0xg9mxmknkc39jh3y9kpxzy5wg1v0s3kkd180lja9zpn"; 14 }; 15 16 nativeBuildInputs = [ dpkg makeWrapper wrapGAppsHook ];
··· 10 11 src = fetchurl { 12 url = "https://downloads.bitwig.com/stable/${version}/${pname}-${version}.deb"; 13 + sha256 = "sha256-k7L6CU2lY9192tfaWtVOxq9BCY7FZZdxmHT8EA+ZFsk="; 14 }; 15 16 nativeBuildInputs = [ dpkg makeWrapper wrapGAppsHook ];
+36
pkgs/applications/audio/spotify-qt/default.nix
···
··· 1 + { fetchFromGitHub 2 + , lib 3 + , cmake 4 + , mkDerivation 5 + , libxcb 6 + , qtbase 7 + , qtsvg 8 + }: 9 + 10 + mkDerivation rec { 11 + pname = "spotify-qt"; 12 + version = "3.5"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "kraxarn"; 16 + repo = pname; 17 + rev = "v${version}"; 18 + sha256 = "1bgd0q4sbbww3lbrx2zwgaz0sl7qh195s4kvgsq16gv7ij82bskn"; 19 + }; 20 + 21 + buildInputs = [ libxcb qtbase qtsvg ]; 22 + 23 + nativeBuildInputs = [ cmake ]; 24 + 25 + cmakeFlags = [ "-DCMAKE_BUILD_TYPE=Release" "-DCMAKE_INSTALL_PREFIX=" ]; 26 + 27 + installFlags = [ "DESTDIR=$(out)" ]; 28 + 29 + meta = with lib; { 30 + description = "Lightweight unofficial Spotify client using Qt"; 31 + homepage = "https://github.com/kraxarn/spotify-qt"; 32 + license = licenses.gpl3Only; 33 + maintainers = with maintainers; [ kiyengar ]; 34 + platforms = platforms.unix; 35 + }; 36 + }
+3
pkgs/applications/editors/jucipp/default.nix
··· 15 license = licenses.mit; 16 platforms = platforms.linux; 17 maintainers = with maintainers; [ xnwdd ]; 18 }; 19 20 src = fetchgit {
··· 15 license = licenses.mit; 16 platforms = platforms.linux; 17 maintainers = with maintainers; [ xnwdd ]; 18 + # error: token ""1.1"" is not valid in preprocessor expression 19 + # TODO: fix pname being different from the attribute name 20 + broken = true; 21 }; 22 23 src = fetchgit {
+6 -1
pkgs/applications/misc/khard/default.nix
··· 1 - { lib, glibcLocales, python3 }: 2 3 python3.pkgs.buildPythonApplication rec { 4 version = "0.17.0"; ··· 8 inherit pname version; 9 sha256 = "062nv4xkfsjc11k9m52dh6xjn9z68a4a6x1s8z05wwv4jbp1lkhn"; 10 }; 11 12 propagatedBuildInputs = with python3.pkgs; [ 13 atomicwrites
··· 1 + { lib, python3 }: 2 3 python3.pkgs.buildPythonApplication rec { 4 version = "0.17.0"; ··· 8 inherit pname version; 9 sha256 = "062nv4xkfsjc11k9m52dh6xjn9z68a4a6x1s8z05wwv4jbp1lkhn"; 10 }; 11 + 12 + SETUPTOOLS_SCM_PRETEND_VERSION = version; 13 + nativeBuildInputs = [ 14 + python3.pkgs.setuptools-scm 15 + ]; 16 17 propagatedBuildInputs = with python3.pkgs; [ 18 atomicwrites
+5 -5
pkgs/applications/networking/browsers/chromium/upstream-info.json
··· 44 } 45 }, 46 "ungoogled-chromium": { 47 - "version": "89.0.4389.90", 48 - "sha256": "16i7bgk2jbcqs2p28nk5mlf0k6wah594pcsfm8b154nxbyf0iihi", 49 - "sha256bin64": "1hgpx7isp9krarj7jpbhs97ym4i9j9a1srywv9pdfzbhw6cid2pk", 50 "deps": { 51 "gn": { 52 "version": "2021-01-07", ··· 55 "sha256": "08y7cjlgjdbzja5ij31wxc9i191845m01v1hc7y176svk9y0hj1d" 56 }, 57 "ungoogled-patches": { 58 - "rev": "89.0.4389.90-1", 59 - "sha256": "0pr756d1b4wc67d61b21yszi7mx1hsjy14i44j0kvcwm05pgnf79" 60 } 61 } 62 }
··· 44 } 45 }, 46 "ungoogled-chromium": { 47 + "version": "89.0.4389.114", 48 + "sha256": "007df9p78bbmk3iyfi8qn57mmn68qqrdhx6z8n2hl8ksd7lspw7j", 49 + "sha256bin64": "06wblyvyr93032fbzwm6qpzz4jjm6adziq4i4n6kmfdix2ajif8a", 50 "deps": { 51 "gn": { 52 "version": "2021-01-07", ··· 55 "sha256": "08y7cjlgjdbzja5ij31wxc9i191845m01v1hc7y176svk9y0hj1d" 56 }, 57 "ungoogled-patches": { 58 + "rev": "89.0.4389.114-1", 59 + "sha256": "0cr2i51gxhgl55c8f9w0ra3m5q2dk03sf7p2qn4bqq1l1l72hw6s" 60 } 61 } 62 }
+30 -26
pkgs/applications/office/fava/default.nix
··· 1 - { lib, python3, beancount }: 2 3 - let 4 - inherit (python3.pkgs) buildPythonApplication fetchPypi; 5 - in 6 - buildPythonApplication rec { 7 pname = "fava"; 8 version = "1.18"; 9 10 - src = fetchPypi { 11 inherit pname version; 12 sha256 = "21336b695708497e6f00cab77135b174c51feb2713b657e0e208282960885bf5"; 13 }; 14 15 - checkInputs = [ python3.pkgs.pytest ]; 16 - propagatedBuildInputs = with python3.pkgs; 17 - [ 18 - Babel 19 - cheroot 20 - flaskbabel 21 - flask 22 - jinja2 23 - beancount 24 - click 25 - markdown2 26 - ply 27 - simplejson 28 - werkzeug 29 - jaraco_functools 30 - ]; 31 32 - # CLI test expects fava on $PATH. Not sure why static_url fails. 33 - # the entry_slices and render_entries requires other files to pass 34 - checkPhase = '' 35 - py.test tests -k 'not cli and not static_url and not entry_slice and not render_entries' 36 ''; 37 38 meta = { 39 homepage = "https://beancount.github.io/fava";
··· 1 + { lib, python3 }: 2 3 + python3.pkgs.buildPythonApplication rec { 4 pname = "fava"; 5 version = "1.18"; 6 7 + src = python3.pkgs.fetchPypi { 8 inherit pname version; 9 sha256 = "21336b695708497e6f00cab77135b174c51feb2713b657e0e208282960885bf5"; 10 }; 11 12 + nativeBuildInputs = with python3.pkgs; [ setuptools-scm ]; 13 14 + propagatedBuildInputs = with python3.pkgs; [ 15 + Babel 16 + cheroot 17 + flaskbabel 18 + flask 19 + jinja2 20 + beancount 21 + click 22 + markdown2 23 + ply 24 + simplejson 25 + werkzeug 26 + jaraco_functools 27 + ]; 28 + 29 + checkInputs = with python3.pkgs; [ 30 + pytestCheckHook 31 + ]; 32 + 33 + preCheck = '' 34 + export HOME=$TEMPDIR 35 ''; 36 + 37 + disabledTests = [ 38 + # runs fava in debug mode, which tries to interpret bash wrapper as Python 39 + "test_cli" 40 + ]; 41 42 meta = { 43 homepage = "https://beancount.github.io/fava";
+7 -7
pkgs/applications/office/qownnotes/default.nix
··· 1 - { mkDerivation, lib, fetchurl, qmake, qttools, qtbase, qtsvg, qtdeclarative, qtxmlpatterns, qtwayland, qtwebsockets, stdenv /* for isLinux */ }: 2 3 mkDerivation rec { 4 pname = "qownnotes"; 5 - version = "20.2.5"; 6 7 src = fetchurl { 8 url = "https://download.tuxfamily.org/${pname}/src/${pname}-${version}.tar.xz"; 9 # Can grab official version like so: 10 - # $ curl https://download.tuxfamily.org/qownnotes/src/qownnotes-20.2.5.tar.xz.sha256 11 - sha256 = "c26d2a86a521cd243ec0a4788e7627e91cb5877dace73d93dd7d35dd02e9e4c5"; 12 }; 13 14 nativeBuildInputs = [ qmake qttools ]; 15 buildInputs = [ 16 - qtbase qtsvg qtdeclarative qtxmlpatterns qtwebsockets 17 ] ++ lib.optional stdenv.isLinux qtwayland; 18 19 meta = with lib; { ··· 21 22 homepage = "https://www.qownnotes.org/"; 23 platforms = platforms.all; 24 - license = licenses.gpl2; 25 - maintainers = with maintainers; [ dtzWill ]; 26 }; 27 }
··· 1 + { mkDerivation, lib, fetchurl, qmake, qttools, qtbase, qtsvg, qtdeclarative, qtxmlpatterns, qtwayland, qtwebsockets, stdenv, qtx11extras }: 2 3 mkDerivation rec { 4 pname = "qownnotes"; 5 + version = "21.3.2"; 6 7 src = fetchurl { 8 url = "https://download.tuxfamily.org/${pname}/src/${pname}-${version}.tar.xz"; 9 # Can grab official version like so: 10 + # $ curl https://download.tuxfamily.org/qownnotes/src/qownnotes-21.3.2.tar.xz.sha256 11 + sha256 = "a8e8ab2ca1ef6684407adeb8fc63abcafff407a367471e053c583a1c4215e5ee"; 12 }; 13 14 nativeBuildInputs = [ qmake qttools ]; 15 buildInputs = [ 16 + qtbase qtsvg qtdeclarative qtxmlpatterns qtwebsockets qtx11extras 17 ] ++ lib.optional stdenv.isLinux qtwayland; 18 19 meta = with lib; { ··· 21 22 homepage = "https://www.qownnotes.org/"; 23 platforms = platforms.all; 24 + license = licenses.gpl2Only; 25 + maintainers = with maintainers; [ dtzWill totoroot ]; 26 }; 27 }
+2 -2
pkgs/applications/version-management/git-and-tools/gh/default.nix
··· 2 3 buildGoModule rec { 4 pname = "gh"; 5 - version = "1.8.0"; 6 7 src = fetchFromGitHub { 8 owner = "cli"; 9 repo = "cli"; 10 rev = "v${version}"; 11 - sha256 = "009jh1i1ji7d773ismifdw4qvwlb8s1zn14d0n84j9h3n0hyynbc"; 12 }; 13 14 vendorSha256 = "1wv30z0jg195nkpz3rwvhixyw81lg2wzwwajq9g6s3rfjj8gs9v2";
··· 2 3 buildGoModule rec { 4 pname = "gh"; 5 + version = "1.8.1"; 6 7 src = fetchFromGitHub { 8 owner = "cli"; 9 repo = "cli"; 10 rev = "v${version}"; 11 + sha256 = "1q0vc9wr4n813mxkf7jjj3prw1n7xv4l985qd57pg4a2js1dqa1y"; 12 }; 13 14 vendorSha256 = "1wv30z0jg195nkpz3rwvhixyw81lg2wzwwajq9g6s3rfjj8gs9v2";
+2 -2
pkgs/applications/virtualization/libnvidia-container/default.nix
··· 20 in 21 stdenv.mkDerivation rec { 22 pname = "libnvidia-container"; 23 - version = "1.3.1"; 24 25 src = fetchFromGitHub { 26 owner = "NVIDIA"; 27 repo = pname; 28 rev = "v${version}"; 29 - sha256 = "0j6b8z9x9hrrs4xp11zyjjd7kyl7fzcicpiis8k1qb1q2afnqsrq"; 30 }; 31 32 patches = [
··· 20 in 21 stdenv.mkDerivation rec { 22 pname = "libnvidia-container"; 23 + version = "1.3.3"; 24 25 src = fetchFromGitHub { 26 owner = "NVIDIA"; 27 repo = pname; 28 rev = "v${version}"; 29 + sha256 = "0rr6ngkzqgw250nilv36fz7fhsqxcgl4nhld2hnr0sr4ngirqcjp"; 30 }; 31 32 patches = [
+5 -7
pkgs/desktops/gnome-3/extensions/topicons-plus/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, glib, gnome3, gettext }: 2 3 stdenv.mkDerivation rec { 4 pname = "gnome-shell-extension-topicons-plus"; 5 - version = "22"; 6 7 src = fetchFromGitHub { 8 owner = "phocean"; 9 repo = "TopIcons-plus"; 10 - rev = "v${version}"; 11 - sha256 = "196s1gdir52gbc444pzrb5l7gn5xr5vqk5ajqaiqryqlmp3i8vil"; 12 }; 13 14 buildInputs = [ glib ]; ··· 21 22 meta = with lib; { 23 description = "Brings all icons back to the top panel, so that it's easier to keep track of apps running in the backround"; 24 - license = licenses.gpl2; 25 maintainers = with maintainers; [ eperuffo ]; 26 homepage = "https://github.com/phocean/TopIcons-plus"; 27 - # Unmaintained and no longer working with GNOME Shell 3.34+ 28 - broken = lib.versionAtLeast gnome3.gnome-shell.version "3.32"; 29 }; 30 }
··· 1 + { lib, stdenv, fetchFromGitHub, glib, gettext }: 2 3 stdenv.mkDerivation rec { 4 pname = "gnome-shell-extension-topicons-plus"; 5 + version = "27"; 6 7 src = fetchFromGitHub { 8 owner = "phocean"; 9 repo = "TopIcons-plus"; 10 + rev = version; 11 + sha256 = "1p3jlvs4zgnrvy8am7myivv4rnnshjp49kg87rd22qqyvcz51ykr"; 12 }; 13 14 buildInputs = [ glib ]; ··· 21 22 meta = with lib; { 23 description = "Brings all icons back to the top panel, so that it's easier to keep track of apps running in the backround"; 24 + license = licenses.gpl2Only; 25 maintainers = with maintainers; [ eperuffo ]; 26 homepage = "https://github.com/phocean/TopIcons-plus"; 27 }; 28 }
+5 -5
pkgs/development/compilers/gleam/default.nix
··· 1 - { lib, stdenv, rustPlatform, fetchFromGitHub, pkg-config, openssl, Security }: 2 3 rustPlatform.buildRustPackage rec { 4 pname = "gleam"; 5 - version = "0.14.3"; 6 7 src = fetchFromGitHub { 8 owner = "gleam-lang"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-NCLPatJWpvYKM+QdJB/Gfldlz5MQynWZB8o4x4cf5cA="; 12 }; 13 14 nativeBuildInputs = [ pkg-config ]; 15 16 buildInputs = [ openssl ] ++ 17 - lib.optionals stdenv.isDarwin [ Security ]; 18 19 - cargoSha256 = "sha256-Tvb6QJubV8FS8UER++bEhst7Z0hVw42TCl+wOzZzi8Y="; 20 21 meta = with lib; { 22 description = "A statically typed language for the Erlang VM";
··· 1 + { lib, stdenv, rustPlatform, fetchFromGitHub, pkg-config, openssl, Security, libiconv }: 2 3 rustPlatform.buildRustPackage rec { 4 pname = "gleam"; 5 + version = "0.14.4"; 6 7 src = fetchFromGitHub { 8 owner = "gleam-lang"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-iW4mH9zLJzD+E+H/b0NAbPWzfSbDmRpirDwrLlyZppI="; 12 }; 13 14 nativeBuildInputs = [ pkg-config ]; 15 16 buildInputs = [ openssl ] ++ 17 + lib.optionals stdenv.isDarwin [ Security libiconv ]; 18 19 + cargoSha256 = "sha256-ErLwrve2Fpyg9JaH3y7VIYuFcOPVP++XAIrRvv5dGm0="; 20 21 meta = with lib; { 22 description = "A statically typed language for the Erlang VM";
+114 -13
pkgs/development/haskell-modules/configuration-common.nix
··· 64 name = "git-annex-${super.git-annex.version}-src"; 65 url = "git://git-annex.branchable.com/"; 66 rev = "refs/tags/" + super.git-annex.version; 67 - sha256 = "1y9js3n8ml2g492nivy7gk371rdmibwydb4fwzzwbviya280akaq"; 68 }; 69 }).override { 70 dbus = if pkgs.stdenv.isLinux then self.dbus else null; ··· 91 tdigest = doJailbreak super.tdigest; 92 text-short = doJailbreak super.text-short; 93 tree-diff = doJailbreak super.tree-diff; 94 95 # Tests require a Kafka broker running locally 96 haskakafka = dontCheck super.haskakafka; ··· 708 diagrams-postscript = doJailbreak super.diagrams-postscript; 709 diagrams-svg = doJailbreak super.diagrams-svg; 710 diagrams-contrib = doJailbreak super.diagrams-contrib; 711 - # https://github.com/diagrams/diagrams-lib/issues/288 712 - diagrams-lib = doJailbreak (overrideCabal super.diagrams-lib (drv: { doCheck = !pkgs.stdenv.isi686; })); 713 714 # https://github.com/danidiaz/streaming-eversion/issues/1 715 streaming-eversion = dontCheck super.streaming-eversion; ··· 1159 # $HOME, which we don't have in our build sandbox. 1160 cabal-install-parsers = dontCheck super.cabal-install-parsers; 1161 1162 - # version constraints break the build, so we jailbreak 1163 - # can be removed at a new release which also fixes 1164 - # https://github.com/jgm/gitit/issues/665 1165 - gitit = doJailbreak super.gitit; 1166 1167 # Test suite requires database 1168 persistent-mysql = dontCheck super.persistent-mysql; ··· 1407 # 2021-03-19: https://github.com/Avi-D-coder/implicit-hie-cradle/pull/8 1408 implicit-hie-cradle = doJailbreak super.implicit-hie-cradle; 1409 1410 - # 2021-03-09: Overrides because nightly is to old for hls 1.0.0 1411 - lsp-test = doDistribute (dontCheck self.lsp-test_0_13_0_0); 1412 - 1413 # 2021-03-09: Golden tests seem to be missing in hackage release: 1414 # https://github.com/haskell/haskell-language-server/issues/1536 1415 hls-tactics-plugin = dontCheck super.hls-tactics-plugin; 1416 1417 # 2021-03-21 Test hangs 1418 # https://github.com/haskell/haskell-language-server/issues/1562 1419 # Jailbreak because of: https://github.com/haskell/haskell-language-server/pull/1595 ··· 1593 vivid-osc = dontCheck super.vivid-osc; 1594 vivid-supercollider = dontCheck super.vivid-supercollider; 1595 1596 - # Overly strict version bounds: https://github.com/Profpatsch/yarn-lock/issues/8 1597 - yarn-lock = doJailbreak super.yarn-lock; 1598 - 1599 # Dependency to regex-tdfa-text can be removed for later regex-tdfa versions. 1600 # Fix protolude compilation error by applying patch from pull-request. 1601 # Override can be removed for the next release > 0.8.0. ··· 1675 # https://github.com/jgm/pandoc/issues/7163 1676 pandoc = dontCheck super.pandoc; 1677 1678 # Too strict version bounds on cryptonite. 1679 # Issue reported upstream, no bug tracker url yet. 1680 darcs = doJailbreak super.darcs; 1681 1682 } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super
··· 64 name = "git-annex-${super.git-annex.version}-src"; 65 url = "git://git-annex.branchable.com/"; 66 rev = "refs/tags/" + super.git-annex.version; 67 + sha256 = "13n62v3cdkx23fywdccczcr8vsf0vmjbimmgin766bf428jlhh6h"; 68 }; 69 }).override { 70 dbus = if pkgs.stdenv.isLinux then self.dbus else null; ··· 91 tdigest = doJailbreak super.tdigest; 92 text-short = doJailbreak super.text-short; 93 tree-diff = doJailbreak super.tree-diff; 94 + zinza = doJailbreak super.zinza; 95 96 # Tests require a Kafka broker running locally 97 haskakafka = dontCheck super.haskakafka; ··· 709 diagrams-postscript = doJailbreak super.diagrams-postscript; 710 diagrams-svg = doJailbreak super.diagrams-svg; 711 diagrams-contrib = doJailbreak super.diagrams-contrib; 712 + # apply patch from master to add compat with optparse-applicative >= 0.16 713 + diagrams-lib = doJailbreak (appendPatch super.diagrams-lib 714 + (pkgs.fetchpatch { 715 + url = "https://github.com/diagrams/diagrams-lib/commit/4b9842c3e3d653be69af19778970337775e2404d.patch"; 716 + sha256 = "0xqvzh3ip9i0nv8xnh41afxki64r259pxq8ir1a4v99ggnldpjaa"; 717 + includes = [ "*/CmdLine.hs" ]; 718 + })); 719 720 # https://github.com/danidiaz/streaming-eversion/issues/1 721 streaming-eversion = dontCheck super.streaming-eversion; ··· 1165 # $HOME, which we don't have in our build sandbox. 1166 cabal-install-parsers = dontCheck super.cabal-install-parsers; 1167 1168 + # * jailbreak can be removed at the next release (current is 0.13.0.0) 1169 + # * patch fixes compilation with pandoc >= 2.12, can be removed if a 1170 + # release contains https://github.com/jgm/gitit/pull/670 or equivalent. 1171 + # Patch is vendored in as it may change upstream in the future. 1172 + gitit = doJailbreak (appendPatch super.gitit ./patches/gitit-pandoc-2.12.patch); 1173 1174 # Test suite requires database 1175 persistent-mysql = dontCheck super.persistent-mysql; ··· 1414 # 2021-03-19: https://github.com/Avi-D-coder/implicit-hie-cradle/pull/8 1415 implicit-hie-cradle = doJailbreak super.implicit-hie-cradle; 1416 1417 # 2021-03-09: Golden tests seem to be missing in hackage release: 1418 # https://github.com/haskell/haskell-language-server/issues/1536 1419 hls-tactics-plugin = dontCheck super.hls-tactics-plugin; 1420 1421 + # 2021-03-24: hlint 3.3 is for ghc 9 compat, but hls only supports ghc 8.10 1422 + hls-hlint-plugin = super.hls-hlint-plugin.override { 1423 + hlint = super.hlint_3_2_7; 1424 + }; 1425 + 1426 + # hlint 3.3 needs a ghc-lib-parser newer than the one from stackage 1427 + hlint = super.hlint.overrideScope (self: super: { 1428 + ghc-lib-parser = overrideCabal self.ghc-lib-parser_9_0_1_20210324 { 1429 + doHaddock = false; 1430 + }; 1431 + ghc-lib-parser-ex = self.ghc-lib-parser-ex_9_0_0_4; 1432 + }); 1433 + 1434 + # 2021-03-09: Overrides because nightly is to old for hls 1.0.0 1435 + lsp-test = doDistribute (dontCheck self.lsp-test_0_13_0_0); 1436 + 1437 # 2021-03-21 Test hangs 1438 # https://github.com/haskell/haskell-language-server/issues/1562 1439 # Jailbreak because of: https://github.com/haskell/haskell-language-server/pull/1595 ··· 1613 vivid-osc = dontCheck super.vivid-osc; 1614 vivid-supercollider = dontCheck super.vivid-supercollider; 1615 1616 # Dependency to regex-tdfa-text can be removed for later regex-tdfa versions. 1617 # Fix protolude compilation error by applying patch from pull-request. 1618 # Override can be removed for the next release > 0.8.0. ··· 1692 # https://github.com/jgm/pandoc/issues/7163 1693 pandoc = dontCheck super.pandoc; 1694 1695 + # test suite triggers some kind of linking bug at runtime 1696 + # https://github.com/noinia/hgeometry/issues/132 1697 + hgeometry-combinatorial = dontCheck super.hgeometry-combinatorial; 1698 + 1699 + # Too strict version bounds on ansi-terminal 1700 + # https://github.com/kowainik/co-log/pull/218 1701 + co-log = doJailbreak super.co-log; 1702 + 1703 + # Test suite has a too strict bound on base 1704 + # https://github.com/jswebtools/language-ecmascript/pull/88 1705 + language-ecmascript = doJailbreak super.language-ecmascript; 1706 + 1707 + # Too strict bounds on containers 1708 + # https://github.com/jswebtools/language-ecmascript-analysis/issues/1 1709 + language-ecmascript-analysis = doJailbreak super.language-ecmascript-analysis; 1710 + 1711 + # Too strict bounds on optparse-applicative 1712 + # https://github.com/faylang/fay/pull/474 1713 + fay = doJailbreak super.fay; 1714 + 1715 # Too strict version bounds on cryptonite. 1716 # Issue reported upstream, no bug tracker url yet. 1717 darcs = doJailbreak super.darcs; 1718 + 1719 + # Too strict version bounds on ansi-terminal 1720 + # This patch will be contained with the next release (current is 0.1.0.0). 1721 + colourista = appendPatch super.colourista 1722 + (pkgs.fetchpatch { 1723 + url = "https://github.com/kowainik/colourista/commit/15ace92105b56eba4ea3717bd55f733afe5be401.patch"; 1724 + sha256 = "sha256-9gJFlyWUkO5sJodDRNuH10I66j8/0ZZIv6nJQkhlA0s="; 1725 + }); 1726 + 1727 + # Too strict version bounds on base16-bytestring and http-link-header. 1728 + # This patch will be merged when next release comes. 1729 + github = appendPatch super.github (pkgs.fetchpatch { 1730 + url = "https://github.com/phadej/github/commit/514b175851dd7c4a9722ff203dd6f652a15d33e8.patch"; 1731 + sha256 = "0pmx54xd7ah85y9mfi5366wbnwrp918j0wbx8yw8hrdac92qi4gh"; 1732 + }); 1733 + 1734 + # 2021-04-02: Outdated optparse-applicative bound is fixed but not realeased on upstream. 1735 + trial-optparse-applicative = assert super.trial-optparse-applicative.version == "0.0.0.0"; doJailbreak super.trial-optparse-applicative; 1736 + 1737 + # 2021-04-02: Outdated optparse-applicative bound is fixed but not realeased on upstream. 1738 + extensions = assert super.extensions.version == "0.0.0.1"; doJailbreak super.extensions; 1739 + 1740 + # 2021-04-02: iCalendar is basically unmaintained. 1741 + # There are PRs for bumping the bounds: https://github.com/chrra/iCalendar/pull/46 1742 + iCalendar = overrideCabal (doJailbreak super.iCalendar) { 1743 + # Overriding bounds behind a cabal flag 1744 + preConfigure = ''substituteInPlace iCalendar.cabal --replace "network >=2.6 && <2.7" "network -any"''; 1745 + }; 1746 + 1747 + # Too strict bounds on base: https://github.com/runarorama/fuzzyfind/issues/1 1748 + fuzzyfind = doJailbreak super.fuzzyfind; 1749 + 1750 + # Apply patch from master relaxing the version bounds on tasty. 1751 + # Can be removed at next release (current is 0.10.1.0). 1752 + ginger = appendPatch super.ginger 1753 + (pkgs.fetchpatch { 1754 + url = "https://github.com/tdammers/ginger/commit/bd8cb39c1853d4fb4f663c4c201884575906acea.patch"; 1755 + sha256 = "1rdy53k0384g52bnc59j1f0i13hr4lbnbksfsabr4av6zmw9wmzf"; 1756 + }); 1757 + 1758 + # Too strict version bounds on cryptonite 1759 + # https://github.com/obsidiansystems/haveibeenpwned/issues/7 1760 + haveibeenpwned = doJailbreak super.haveibeenpwned; 1761 + 1762 + # Too strict version bounds on ghc-events 1763 + # https://github.com/haskell/ThreadScope/issues/118 1764 + threadscope = doJailbreak super.threadscope; 1765 + 1766 + # Too strict version bounds on tasty 1767 + # Can likely be removed next week (2021-04-09) when 1.1.1.1 is released. 1768 + fused-effects = doJailbreak super.fused-effects; 1769 + 1770 + # Test suite doesn't support base16-bytestring >= 1.0 1771 + # https://github.com/centromere/blake2/issues/6 1772 + blake2 = dontCheck super.blake2; 1773 + 1774 + # Test suite doesn't support base16-bytestring >= 1.0 1775 + # https://github.com/serokell/haskell-crypto/issues/25 1776 + crypto-sodium = dontCheck super.crypto-sodium; 1777 + 1778 + # Too strict version bounds on a bunch of libraries: 1779 + # https://github.com/smallhadroncollider/taskell/issues/100 1780 + # May be possible to remove at the next release (1.11.0) 1781 + taskell = doJailbreak super.taskell; 1782 1783 } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super
+155 -48
pkgs/development/haskell-modules/configuration-hackage2nix.yaml
··· 73 # gi-gdkx11-4.x requires gtk-4.x, which is still under development and 74 # not yet available in Nixpkgs 75 - gi-gdkx11 < 4 76 - - hlint < 3.3 # We don‘t have ghc-lib-parser 9.0.X yet. 77 - - ghcide < 1.1 # To stay hls 1.0 compatible 78 - - hls-retrie-plugin < 1.0.0.1 # To stay hls 1.0 compatible 79 80 - # Stackage Nightly 2021-03-17 81 - abstract-deque ==0.3 82 - abstract-par ==0.3.3 83 - AC-Angle ==1.0 ··· 112 - alarmclock ==0.7.0.5 113 - alerts ==0.1.2.0 114 - alex ==3.2.6 115 - alg ==0.2.13.1 116 - algebraic-graphs ==0.5 117 - Allure ==0.9.5.0 ··· 350 - blaze-textual ==0.2.1.0 351 - bmp ==1.2.6.3 352 - BNFC ==2.9.1 353 - board-games ==0.3 354 - boltzmann-samplers ==0.1.1.0 355 - Boolean ==0.2.4 ··· 409 - cache ==0.1.3.0 410 - cacophony ==0.10.1 411 - calendar-recycling ==0.0.0.1 412 - - call-stack ==0.2.0 413 - can-i-haz ==0.3.1.0 414 - ca-province-codes ==1.0.0.0 415 - cardano-coin-selection ==1.0.1 ··· 707 - dotnet-timespan ==0.0.1.0 708 - double-conversion ==2.0.2.0 709 - download ==0.3.2.7 710 - drinkery ==0.4 711 - dsp ==0.2.5.1 712 - dual ==0.1.1.1 ··· 829 - filelock ==0.1.1.5 830 - filemanip ==0.3.6.3 831 - file-modules ==0.1.2.4 832 - file-path-th ==0.1.0.0 833 - filepattern ==0.1.2 834 - fileplow ==0.1.0.0 ··· 1010 - gluturtle ==0.0.58.1 1011 - gnuplot ==0.5.6.1 1012 - google-isbn ==1.0.3 1013 - gothic ==0.1.6 1014 - gpolyline ==0.1.0.1 1015 - graph-core ==0.3.0.0 ··· 1042 - hapistrano ==0.4.1.2 1043 - happstack-server ==7.7.0 1044 - happy ==1.20.0 1045 - HasBigDecimal ==0.1.1 1046 - hasbolt ==0.1.4.4 1047 - hashable ==1.3.0.0 ··· 1050 - hashing ==0.1.0.1 1051 - hashmap ==1.3.3 1052 - hashtables ==1.2.4.1 1053 - - haskeline ==0.8.1.1 1054 - haskell-gi ==0.24.7 1055 - haskell-gi-base ==0.24.5 1056 - haskell-gi-overloading ==1.0 ··· 1080 - HDBC-session ==0.1.2.0 1081 - headroom ==0.4.1.0 1082 - heap ==1.0.4 1083 - - heaps ==0.3.6.1 1084 - hebrew-time ==0.1.2 1085 - hedgehog ==1.0.5 1086 - hedgehog-corpus ==0.2.0 ··· 1157 - hslua-module-path ==0.1.0.1 1158 - hslua-module-system ==0.2.2.1 1159 - hslua-module-text ==0.3.0.1 1160 - - HsOpenSSL ==0.11.5.1 1161 - HsOpenSSL-x509-system ==0.1.0.4 1162 - hsp ==0.10.0 1163 - hspec ==2.7.8 ··· 1173 - hspec-golden ==0.1.0.3 1174 - hspec-golden-aeson ==0.7.0.0 1175 - hspec-hedgehog ==0.0.1.2 1176 - hspec-leancheck ==0.0.4 1177 - hspec-megaparsec ==2.2.0 1178 - hspec-meta ==2.7.8 ··· 1198 - html-entity-map ==0.1.0.0 1199 - htoml ==1.0.0.3 1200 - http2 ==2.0.6 1201 - - HTTP ==4000.3.15 1202 - http-api-data ==0.4.2 1203 - http-client ==0.6.4.1 1204 - http-client-openssl ==0.3.2.0 ··· 1217 - http-streams ==0.8.7.2 1218 - http-types ==0.12.3 1219 - human-readable-duration ==0.2.1.4 1220 - - HUnit ==1.6.1.0 1221 - HUnit-approx ==1.1.1.1 1222 - hunit-dejafu ==2.0.0.4 1223 - hvect ==0.4.0.0 ··· 1377 - ki ==0.2.0.1 1378 - kind-apply ==0.3.2.0 1379 - kind-generics ==0.4.1.0 1380 - - kind-generics-th ==0.2.2.1 1381 - kmeans ==0.1.3 1382 - koofr-client ==1.0.0.3 1383 - krank ==0.2.2 ··· 1793 - persist ==0.1.1.5 1794 - persistable-record ==0.6.0.5 1795 - persistable-types-HDBC-pg ==0.0.3.5 1796 - - persistent ==2.11.0.2 1797 - persistent-documentation ==0.1.0.2 1798 - - persistent-mtl ==0.2.0.0 1799 - persistent-mysql ==2.10.3.1 1800 - persistent-pagination ==0.1.1.2 1801 - persistent-postgresql ==2.11.0.1 ··· 1830 - pipes-wai ==3.2.0 1831 - pkcs10 ==0.2.0.0 1832 - pkgtreediff ==0.4 1833 - placeholders ==0.1 1834 - plaid ==0.1.0.4 1835 - plotlyhs ==0.2.1 ··· 1965 - rate-limit ==1.4.2 1966 - ratel-wai ==1.1.5 1967 - rattle ==0.2 1968 - - rattletrap ==11.0.0 1969 - Rattus ==0.5 1970 - rawfilepath ==0.2.4 1971 - rawstring-qm ==0.2.3.0 ··· 1982 - record-hasfield ==1.0 1983 - records-sop ==0.1.0.3 1984 - record-wrangler ==0.1.1.0 1985 - - recursion-schemes ==5.2.2 1986 - reducers ==3.12.3 1987 - refact ==0.3.0.2 1988 - ref-fd ==0.4.0.2 ··· 2104 - semiring-simple ==1.0.0.1 2105 - semver ==0.4.0.1 2106 - sendfile ==0.7.11.1 2107 - seqalign ==0.2.0.4 2108 - seqid ==0.6.2 2109 - seqid-streams ==0.7.2 ··· 2179 - skein ==1.0.9.4 2180 - skews ==0.1.0.3 2181 - skip-var ==0.1.1.0 2182 - - skylighting ==0.10.4.1 2183 - - skylighting-core ==0.10.4.1 2184 - slack-api ==0.12 2185 - slack-progressbar ==0.1.0.1 2186 - - slist ==0.1.1.0 2187 - slynx ==0.5.0.2 2188 - smallcheck ==1.2.1 2189 - smash ==0.1.1.0 ··· 2199 - soap ==0.2.3.6 2200 - soap-openssl ==0.1.0.2 2201 - soap-tls ==0.1.1.4 2202 - socks ==0.6.1 2203 - some ==1.0.2 2204 - sop-core ==0.5.0.1 ··· 2207 - sourcemap ==0.1.6 2208 - sox ==0.2.3.1 2209 - soxlib ==0.0.3.1 2210 - sparse-linear-algebra ==0.3.1 2211 - sparse-tensor ==0.2.1.5 2212 - spatial-math ==0.5.0.1 ··· 2327 - tardis ==0.4.3.0 2328 - tasty ==1.4.1 2329 - tasty-ant-xml ==1.1.8 2330 - - tasty-bench ==0.2.2 2331 - tasty-dejafu ==2.0.0.7 2332 - tasty-discover ==4.2.2 2333 - tasty-expected-failure ==0.12.3 ··· 2486 - type-level-numbers ==0.1.1.1 2487 - type-map ==0.1.6.0 2488 - type-natural ==1.1.0.0 2489 - type-of-html ==1.6.2.0 2490 - type-of-html-static ==0.1.0.2 2491 - type-operators ==0.2.0.0 ··· 2570 - vector-algorithms ==0.8.0.4 2571 - vector-binary-instances ==0.2.5.1 2572 - vector-buffer ==0.4.1 2573 - - vector-builder ==0.3.8 2574 - vector-bytes-instances ==0.1.1 2575 - vector-circular ==0.1.3 2576 - vector-instances ==3.4 ··· 2599 - wai-feature-flags ==0.1.0.1 2600 - wai-handler-launch ==3.0.3.1 2601 - wai-logger ==2.3.6 2602 - wai-middleware-caching ==0.1.0.2 2603 - wai-middleware-clacks ==0.1.0.1 2604 - wai-middleware-static ==0.9.0 ··· 2750 - dependent-sum == 0.4 # required by Hasura 1.3.1, 2020-08-20 2751 - network == 2.6.3.1 # required by pkgs/games/hedgewars/default.nix, 2020-11-15 2752 - mmorph == 1.1.3 # Newest working version of mmorph on ghc 8.6.5. needed for hls 2753 - - haskell-lsp == 0.23.0.0 # required by hls-plugin-api 0.7.0.0, 2021-02-08 2754 - - haskell-lsp-types == 0.23.0.0 # required by hls-plugin-api 0.7.0.0, 2021-02-08 2755 - - lsp-test == 0.11.0.7 # required by hls-plugin-api 0.7.0.0, 2021-02-08 2756 - optparse-applicative < 0.16 # needed for niv-0.2.19 2757 2758 package-maintainers: 2759 peti: ··· 2831 - taskwarrior 2832 - haskell-language-server 2833 - shake-bench 2834 sorki: 2835 - cayene-lpp 2836 - data-stm32 ··· 3075 - ACME 3076 - acme-all-monad 3077 - acme-comonad 3078 - acme-flipping-tables 3079 - acme-hq9plus 3080 - acme-http ··· 3147 - aeson-tiled 3148 - aeson-typescript 3149 - aeson-utils 3150 - affection 3151 - affine-invariant-ensemble-mcmc 3152 - afv ··· 3204 - amazon-emailer 3205 - amazon-emailer-client-snap 3206 - amazon-products 3207 - amazonka-s3-streaming 3208 - amby 3209 - AMI ··· 3282 - apiary-session 3283 - apiary-websockets 3284 - apis 3285 - apotiki 3286 - app-lens 3287 - appc ··· 3291 - applicative-parsec 3292 - applicative-quoters 3293 - applicative-splice 3294 - approveapi 3295 - approx 3296 - ApproxFun-hs ··· 3298 - arbb-vm 3299 - arbor-datadog 3300 - arbor-monad-counter 3301 - arbor-monad-metric 3302 - arbor-monad-metric-datadog 3303 - arch-hs 3304 - arch-web 3305 - archive-libarchive ··· 3351 - asn1-codec 3352 - asn1-data 3353 - assert 3354 - assertions 3355 - asset-map 3356 - assimp ··· 3460 - azure-service-api 3461 - azure-servicebus 3462 - azurify 3463 - b9 3464 - babylon 3465 - backblaze-b2-hs ··· 3491 - barrier 3492 - barrier-monad 3493 - base-compat-migrate 3494 - base-feature-macros 3495 - base-generics 3496 - base-io-access 3497 - base32-bytestring 3498 - base62 3499 - base64-bytes ··· 3553 - betacode 3554 - betris 3555 - bff 3556 - bgmax 3557 - bgzf 3558 - bhoogle 3559 - bibdb 3560 - bidirectional 3561 - bidirectionalization-combined 3562 - bidispec ··· 3646 - biopsl 3647 - biosff 3648 - biostockholm 3649 - birch-beer 3650 - bird 3651 - BirdPP ··· 3660 - bitcoin-block 3661 - bitcoin-compact-filters 3662 - bitcoin-hs 3663 - bitcoin-rpc 3664 - bitcoin-script 3665 - bitcoin-scripting 3666 - bitcoin-tx 3667 - bitcoind-regtest 3668 - bitcoind-rpc 3669 - Bitly ··· 3721 - blunk-hask-tests 3722 - blunt 3723 - bno055-haskell 3724 - bogre-banana 3725 - boilerplate 3726 - bolt ··· 3743 - boring-window-switcher 3744 - bot 3745 - botpp 3746 - bounded-array 3747 - bowntz 3748 - box ··· 3851 - cabal-dependency-licenses 3852 - cabal-dev 3853 - cabal-dir 3854 - cabal-file-th 3855 - cabal-ghc-dynflags 3856 - cabal-ghci ··· 4281 - conferer-provider-dhall 4282 - conferer-provider-json 4283 - conferer-provider-yaml 4284 - conferer-source-dhall 4285 - conferer-source-json 4286 - conferer-source-yaml ··· 4467 - ctkl 4468 - ctpl 4469 - cube 4470 - cuboid 4471 - cuckoo 4472 - curl-runnings ··· 4744 - dingo-core 4745 - dingo-example 4746 - dingo-widgets 4747 - diophantine 4748 - diplomacy 4749 - diplomacy-server ··· 4964 - eibd-client-simple 4965 - eigen 4966 - Eight-Ball-Pool-Hack-Cheats 4967 - either-list-functions 4968 - either-unwrap 4969 - EitherT ··· 5042 - equeue 5043 - erf-native 5044 - erlang 5045 - eros 5046 - eros-client 5047 - eros-http ··· 5080 - ethereum-analyzer-webui 5081 - ethereum-client-haskell 5082 - ethereum-merkle-patricia-db 5083 - euphoria 5084 - eurofxref 5085 - evdev ··· 5176 - fastedit 5177 - fastirc 5178 - fastly 5179 - FastPush 5180 - fastsum 5181 - FastxPipe 5182 - fathead-util 5183 - fault-tree 5184 - - fay 5185 - - fay-base 5186 - fay-builder 5187 - - fay-dom 5188 - - fay-geoposition 5189 - fay-hsx 5190 - - fay-jquery 5191 - - fay-ref 5192 - fay-simplejson 5193 - - fay-text 5194 - - fay-uri 5195 - - fay-websockets 5196 - fb-persistent 5197 - fbmessenger-api 5198 - fbrnch ··· 5307 - fizzbuzz-as-a-service 5308 - flac 5309 - flac-picture 5310 - flamethrower 5311 - flamingra 5312 - flashblast ··· 5451 - ft-generator 5452 - ftdi 5453 - FTGL-bytestring 5454 - ftp-conduit 5455 - ftphs 5456 - FTPLine ··· 5495 - fwgl 5496 - fwgl-glfw 5497 - fwgl-javascript 5498 - g-npm 5499 - g2 5500 - g2q ··· 5576 - GenSmsPdu 5577 - gentlemark 5578 - GenussFold 5579 - geo-resolver 5580 - GeocoderOpenCage 5581 - geodetic ··· 5591 - GGg 5592 - ggtsTC 5593 - gh-labeler 5594 - ghc-clippy-plugin 5595 - ghc-core-smallstep 5596 - ghc-datasize ··· 5642 - gi-gstaudio 5643 - gi-gstpbutils 5644 - gi-gsttag 5645 - - gi-gtk-declarative 5646 - - gi-gtk-declarative-app-simple 5647 - gi-gtkosxapplication 5648 - gi-gtksheet 5649 - gi-handy ··· 5849 - gross 5850 - GroteTrap 5851 - groundhog-converters 5852 - group-theory 5853 - group-with 5854 - grouped-list ··· 5934 - hackernews 5935 - HackMail 5936 - hackmanager 5937 - hactor 5938 - hactors 5939 - haddock ··· 6122 - haskell-ml 6123 - haskell-mpfr 6124 - haskell-mpi 6125 - haskell-neo4j-client 6126 - haskell-openflow 6127 - haskell-overridez ··· 6244 - haskyapi 6245 - haslo 6246 - hasloGUI 6247 - hasparql-client 6248 - hasql-backend 6249 - hasql-class ··· 6355 - heckle 6356 - hedgehog-checkers 6357 - hedgehog-checkers-lens 6358 - - hedgehog-classes 6359 - hedgehog-fakedata 6360 - hedgehog-gen-json 6361 - hedgehog-generic ··· 6407 - heterolist 6408 - hetris 6409 - heukarya 6410 - hevolisa 6411 - hevolisa-dph 6412 - hex-text ··· 6420 - hexpr 6421 - hexpress 6422 - hexquote 6423 - hext 6424 - hextream 6425 - heyefi ··· 6443 - hGelf 6444 - hgen 6445 - hgeometric 6446 - - hgeometry 6447 - - hgeometry-combinatorial 6448 - hgeometry-ipe 6449 - hgeometry-svg 6450 - hgeos ··· 6461 - HHDL 6462 - hhp 6463 - hhwloc 6464 - hi3status 6465 - hiccup 6466 - hichi ··· 6549 - hlrdb 6550 - hlrdb-core 6551 - hls 6552 - hlwm 6553 - hly 6554 - hmark ··· 6601 - hol 6602 - hold-em 6603 - hole 6604 - Holumbus-Searchengine 6605 - holy-project 6606 - homeomorphic ··· 6724 - hs-scrape 6725 - hs-snowtify 6726 - hs-speedscope 6727 - hs-twitter 6728 - hs-twitterarchiver 6729 - hs-vcard ··· 6789 - HsHyperEstraier 6790 - hsI2C 6791 - hSimpleDB 6792 - hsinspect 6793 - hsinspect-lsp 6794 - HsJudy ··· 6935 - human-text 6936 - humble-prelude 6937 - hums 6938 - HUnit-Diff 6939 - hunit-gui 6940 - hunit-rematch ··· 7023 - ib-api 7024 - iban 7025 - ical 7026 - - iCalendar 7027 - ice40-prim 7028 - IcoGrid 7029 - iconv-typed ··· 7103 - indentation-core 7104 - indentation-parsec 7105 - indentation-trifecta 7106 - index-core 7107 - indexation 7108 - IndexedList ··· 7153 - interruptible 7154 - interval 7155 - IntFormats 7156 - intro-prelude 7157 - introduction 7158 - introduction-test ··· 7293 - json-builder 7294 - JSON-Combinator 7295 - JSON-Combinator-Examples 7296 - - json-directory 7297 - json-encoder 7298 - json-enumerator 7299 - json-extra ··· 7319 - jsonextfilter 7320 - JsonGrammar 7321 - jsonifier 7322 - jsonresume 7323 - jsonrpc-conduit 7324 - jsons-to-schema ··· 7496 - language-dart 7497 - language-dickinson 7498 - language-dockerfile 7499 - - language-ecmascript 7500 - - language-ecmascript-analysis 7501 - language-eiffel 7502 - language-elm 7503 - language-fortran ··· 7546 - latex-svg-image 7547 - latex-svg-pandoc 7548 - LATS 7549 - - lattices 7550 - launchdarkly-server-sdk 7551 - launchpad-control 7552 - lawless-concurrent-machines ··· 7647 - libxml-enumerator 7648 - libxslt 7649 - lie 7650 - lifetimes 7651 - lifted-base-tf 7652 - lifted-protolude ··· 7705 - liquid-platform 7706 - liquid-prelude 7707 - liquid-vector 7708 - liquidhaskell-cabal 7709 - Liquorice 7710 - list-fusion-probe ··· 7936 - math-grads 7937 - math-interpolate 7938 - math-metric 7939 - math-programming-glpk 7940 - math-programming-tests 7941 - mathblog ··· 8000 - memorypool 8001 - menoh 8002 - menshen 8003 - merkle-patricia-db 8004 - merkle-tree 8005 - messagepack-rpc ··· 8027 - mi 8028 - Michelangelo 8029 - miconix-test 8030 - micro-recursion-schemes 8031 - microbase 8032 - microformats2-parser ··· 8077 - miss-porcelain 8078 - missing-py2 8079 - MissingPy 8080 - mix-arrows 8081 - mixed-strategies 8082 - mixpanel-client ··· 8282 - muon 8283 - murder 8284 - murmur 8285 - murmurhash3 8286 - mushu 8287 - music-graphics ··· 8355 - nationstates 8356 - nats-client 8357 - nats-queue 8358 - natural-number 8359 - NaturalLanguageAlphabets 8360 - NaturalSort ··· 8417 - network-minihttp 8418 - network-msgpack-rpc 8419 - network-netpacket 8420 - network-protocol-xmpp 8421 - network-rpca 8422 - network-server ··· 8529 - NXTDSL 8530 - nylas 8531 - nymphaea 8532 - oanda-rest-api 8533 - oasis-xrd 8534 - oauth2-jwt-bearer ··· 8693 - pam 8694 - pan-os-syslog 8695 - panda 8696 - pandoc-csv2table 8697 - pandoc-filter-graphviz 8698 - pandoc-filter-indent ··· 8763 - parsers-megaparsec 8764 - parsestar 8765 - parsimony 8766 - partage 8767 - partial-lens 8768 - partial-records ··· 8853 - persistent-odbc 8854 - persistent-protobuf 8855 - persistent-ratelimit 8856 - persistent-relational-record 8857 - persistent-template-classy 8858 - persistent-test ··· 8925 - pipes-extra 8926 - pipes-files 8927 - pipes-illumina 8928 - pipes-io 8929 - pipes-key-value-csv 8930 - pipes-mongodb ··· 8945 - pivotal-tracker 8946 - pixel-printer 8947 - pixelated-avatar-generator 8948 - pkcs10 8949 - pkcs7 8950 - pkggraph ··· 9058 - postgresql-simple-queue 9059 - postgresql-simple-sop 9060 - postgresql-simple-typed 9061 - postgresql-syntax 9062 - postgresql-tx-query 9063 - postgresql-tx-squeal ··· 9124 - primitive-checked 9125 - primitive-containers 9126 - primitive-convenience 9127 - - primitive-extras 9128 - primitive-foreign 9129 - primitive-indexed 9130 - primitive-maybe ··· 9191 - proto-lens-arbitrary 9192 - proto-lens-combinators 9193 - proto-lens-descriptors 9194 - proto3-suite 9195 - proto3-wire 9196 - protobuf-native ··· 9264 - QIO 9265 - QLearn 9266 - qlinear 9267 - qr-imager 9268 - qr-repa 9269 - qsem ··· 9301 - quickcheck-string-random 9302 - quickcheck-webdriver 9303 - QuickCheckVariant 9304 - QuickPlot 9305 - quickpull 9306 - quickset ··· 9363 - random-stream 9364 - RandomDotOrg 9365 - Range 9366 - range-space 9367 - rangemin 9368 - Ranka ··· 9420 - read-bounded 9421 - read-ctags 9422 - read-io 9423 - readline 9424 - readline-statevar 9425 - readme-lhs ··· 9511 - regions-monadstf 9512 - regions-mtl 9513 - register-machine-typelevel 9514 - registry-hedgehog 9515 - regress 9516 - regression-simple ··· 9524 - reified-records 9525 - reify 9526 - relacion 9527 - relational-postgresql8 9528 - relational-query-postgresql-pure 9529 - relative-date ··· 9848 - seclib 9849 - second-transfer 9850 - secp256k1 9851 - secp256k1-legacy 9852 - secret-santa 9853 - secrm ··· 9888 - sequent-core 9889 - sequor 9890 - serialize-instances 9891 - serokell-util 9892 - serpentine 9893 - serv ··· 10020 - shake-extras 10021 - shake-futhark 10022 - shake-minify 10023 - shake-pack 10024 - shake-path 10025 - shake-persist ··· 10060 - Shpadoinkle-examples 10061 - Shpadoinkle-html 10062 - Shpadoinkle-router 10063 - Shpadoinkle-template 10064 - Shpadoinkle-widgets 10065 - shpider ··· 10073 - sign 10074 - signable 10075 - signals 10076 - signed-multiset 10077 - signify-hs 10078 - silkscreen ··· 10100 - simple-pipe 10101 - simple-rope 10102 - simple-server 10103 - simple-stacked-vm 10104 - simple-tabular 10105 - simple-tar ··· 10121 - simseq 10122 - singleton-dict 10123 - singleton-typelits 10124 - singnal 10125 - singular-factory 10126 - sink ··· 10147 - skype4hs 10148 - slack 10149 - slack-notify-haskell 10150 - slack-web 10151 - slave-thread 10152 - sliceofpy ··· 10327 - splaytree 10328 - spline3 10329 - splines 10330 - split-morphism 10331 - splitter 10332 - Spock ··· 10437 - STL 10438 - STLinkUSB 10439 - stm-chunked-queues 10440 - - stm-containers 10441 - stm-firehose 10442 - - stm-hamt 10443 - stm-promise 10444 - stm-stats 10445 - STM32-Zombie ··· 10505 - stripe-hs 10506 - stripe-http-streams 10507 - stripe-scotty 10508 - stripe-wreq 10509 - strongswan-sql 10510 - structural-induction ··· 10552 - supplemented 10553 - surjective 10554 - sv 10555 - sv-svfactor 10556 - SVD2HS 10557 - svfactor ··· 10667 - target 10668 - task 10669 - task-distribution 10670 - - taskell 10671 - TaskMonad 10672 - tasty-auto 10673 - tasty-bdd 10674 - tasty-fail-fast 10675 - tasty-groundhog-converters 10676 - tasty-hedgehog-coverage 10677 - tasty-html ··· 10682 - tasty-mgolden 10683 - tasty-silver 10684 - tasty-stats 10685 - tateti-tateti 10686 - Taxonomy 10687 - TaxonomyTools ··· 10932 - trace-function-call 10933 - traced 10934 - tracetree 10935 - tracked-files 10936 - tracker 10937 - trackit ··· 11109 - uhc-light 11110 - uhc-util 11111 - uhexdump 11112 - ui-command 11113 - UMM 11114 - unagi-bloomfilter ··· 11148 - universe-instances-base 11149 - universe-instances-extended 11150 - universe-instances-trans 11151 - - universe-reverse-instances 11152 - universe-th 11153 - unix-fcntl 11154 - unix-handle ··· 11181 - upskirt 11182 - urbit-airlock 11183 - urbit-api 11184 - ureader 11185 - urembed 11186 - uri ··· 11274 - vect-floating-accelerate 11275 - vect-opengl 11276 - vector-bytestring 11277 - - vector-circular 11278 - vector-clock 11279 - vector-conduit 11280 - vector-endian ··· 11397 - waitra 11398 - waldo 11399 - wallpaper 11400 - warp-dynamic 11401 - warp-static 11402 - warp-systemd ··· 11442 - webdriver-w3c 11443 - WeberLogic 11444 - webfinger-client 11445 - webkit-javascriptcore 11446 - Webrexp 11447 - webserver 11448 - webshow ··· 11505 - WordNet 11506 - WordNet-ghc74 11507 - wordpass 11508 - wordsearch 11509 - work-time 11510 - workdays
··· 73 # gi-gdkx11-4.x requires gtk-4.x, which is still under development and 74 # not yet available in Nixpkgs 75 - gi-gdkx11 < 4 76 + # Needs Cabal 3.4 for Setup.hs 77 + - gi-javascriptcore < 4.0.23 # 78 + - gi-soup < 2.4.24 # 79 + - gi-webkit2 < 4.0.27 # 80 + # To stay hls 1.0 compatible 81 + - ghcide < 1.1 82 + - hls-retrie-plugin < 1.0.0.1 83 + - lsp < 1.2 84 + - lsp-types < 1.2 85 + # 2021-04-02: Stackage Nighlty has haskell-gi* < 0.25, 86 + # so we need to restrict these to compatible versions 87 + # Remove these as soon as haskell-gi{,-base} are 0.25.* 88 + # in Stackage Nightly! 89 + - gi-ggit < 1.0.10 90 + - gi-girepository < 1.0.24 91 + - gi-gst < 1.0.24 92 + - gi-gstbase < 1.0.24 93 + - gi-gstvideo < 1.0.24 94 + - gi-gtksource < 3.0.24 95 + - gi-ibus < 1.5.3 96 + - gi-notify < 0.7.23 97 + - gi-ostree < 1.0.14 98 + - gi-pangocairo < 1.0.25 99 + - gi-secret < 0.0.13 100 + - gi-vte < 2.91.28 101 102 + # Stackage Nightly 2021-03-21 103 - abstract-deque ==0.3 104 - abstract-par ==0.3.3 105 - AC-Angle ==1.0 ··· 134 - alarmclock ==0.7.0.5 135 - alerts ==0.1.2.0 136 - alex ==3.2.6 137 + - alex-meta ==0.3.0.13 138 - alg ==0.2.13.1 139 - algebraic-graphs ==0.5 140 - Allure ==0.9.5.0 ··· 373 - blaze-textual ==0.2.1.0 374 - bmp ==1.2.6.3 375 - BNFC ==2.9.1 376 + - BNFC-meta ==0.6.1 377 - board-games ==0.3 378 - boltzmann-samplers ==0.1.1.0 379 - Boolean ==0.2.4 ··· 433 - cache ==0.1.3.0 434 - cacophony ==0.10.1 435 - calendar-recycling ==0.0.0.1 436 + - call-stack ==0.3.0 437 - can-i-haz ==0.3.1.0 438 - ca-province-codes ==1.0.0.0 439 - cardano-coin-selection ==1.0.1 ··· 731 - dotnet-timespan ==0.0.1.0 732 - double-conversion ==2.0.2.0 733 - download ==0.3.2.7 734 + - download-curl ==0.1.4 735 - drinkery ==0.4 736 - dsp ==0.2.5.1 737 - dual ==0.1.1.1 ··· 854 - filelock ==0.1.1.5 855 - filemanip ==0.3.6.3 856 - file-modules ==0.1.2.4 857 + - filepath-bytestring ==1.4.2.1.7 858 - file-path-th ==0.1.0.0 859 - filepattern ==0.1.2 860 - fileplow ==0.1.0.0 ··· 1036 - gluturtle ==0.0.58.1 1037 - gnuplot ==0.5.6.1 1038 - google-isbn ==1.0.3 1039 + - gopher-proxy ==0.1.1.2 1040 - gothic ==0.1.6 1041 - gpolyline ==0.1.0.1 1042 - graph-core ==0.3.0.0 ··· 1069 - hapistrano ==0.4.1.2 1070 - happstack-server ==7.7.0 1071 - happy ==1.20.0 1072 + - happy-meta ==0.2.0.11 1073 - HasBigDecimal ==0.1.1 1074 - hasbolt ==0.1.4.4 1075 - hashable ==1.3.0.0 ··· 1078 - hashing ==0.1.0.1 1079 - hashmap ==1.3.3 1080 - hashtables ==1.2.4.1 1081 + - haskeline ==0.8.1.2 1082 - haskell-gi ==0.24.7 1083 - haskell-gi-base ==0.24.5 1084 - haskell-gi-overloading ==1.0 ··· 1108 - HDBC-session ==0.1.2.0 1109 - headroom ==0.4.1.0 1110 - heap ==1.0.4 1111 + - heaps ==0.4 1112 - hebrew-time ==0.1.2 1113 - hedgehog ==1.0.5 1114 - hedgehog-corpus ==0.2.0 ··· 1185 - hslua-module-path ==0.1.0.1 1186 - hslua-module-system ==0.2.2.1 1187 - hslua-module-text ==0.3.0.1 1188 + - HsOpenSSL ==0.11.6 1189 - HsOpenSSL-x509-system ==0.1.0.4 1190 - hsp ==0.10.0 1191 - hspec ==2.7.8 ··· 1201 - hspec-golden ==0.1.0.3 1202 - hspec-golden-aeson ==0.7.0.0 1203 - hspec-hedgehog ==0.0.1.2 1204 + - hspec-junit-formatter ==1.0.0.0 1205 - hspec-leancheck ==0.0.4 1206 - hspec-megaparsec ==2.2.0 1207 - hspec-meta ==2.7.8 ··· 1227 - html-entity-map ==0.1.0.0 1228 - htoml ==1.0.0.3 1229 - http2 ==2.0.6 1230 + - HTTP ==4000.3.16 1231 - http-api-data ==0.4.2 1232 - http-client ==0.6.4.1 1233 - http-client-openssl ==0.3.2.0 ··· 1246 - http-streams ==0.8.7.2 1247 - http-types ==0.12.3 1248 - human-readable-duration ==0.2.1.4 1249 + - HUnit ==1.6.2.0 1250 - HUnit-approx ==1.1.1.1 1251 - hunit-dejafu ==2.0.0.4 1252 - hvect ==0.4.0.0 ··· 1406 - ki ==0.2.0.1 1407 - kind-apply ==0.3.2.0 1408 - kind-generics ==0.4.1.0 1409 + - kind-generics-th ==0.2.2.2 1410 - kmeans ==0.1.3 1411 - koofr-client ==1.0.0.3 1412 - krank ==0.2.2 ··· 1822 - persist ==0.1.1.5 1823 - persistable-record ==0.6.0.5 1824 - persistable-types-HDBC-pg ==0.0.3.5 1825 + - persistent ==2.11.0.4 1826 - persistent-documentation ==0.1.0.2 1827 + - persistent-mtl ==0.2.1.0 1828 - persistent-mysql ==2.10.3.1 1829 - persistent-pagination ==0.1.1.2 1830 - persistent-postgresql ==2.11.0.1 ··· 1859 - pipes-wai ==3.2.0 1860 - pkcs10 ==0.2.0.0 1861 - pkgtreediff ==0.4 1862 + - place-cursor-at ==1.0.1 1863 - placeholders ==0.1 1864 - plaid ==0.1.0.4 1865 - plotlyhs ==0.2.1 ··· 1995 - rate-limit ==1.4.2 1996 - ratel-wai ==1.1.5 1997 - rattle ==0.2 1998 + - rattletrap ==11.0.1 1999 - Rattus ==0.5 2000 - rawfilepath ==0.2.4 2001 - rawstring-qm ==0.2.3.0 ··· 2012 - record-hasfield ==1.0 2013 - records-sop ==0.1.0.3 2014 - record-wrangler ==0.1.1.0 2015 + - recursion-schemes ==5.2.2.1 2016 - reducers ==3.12.3 2017 - refact ==0.3.0.2 2018 - ref-fd ==0.4.0.2 ··· 2134 - semiring-simple ==1.0.0.1 2135 - semver ==0.4.0.1 2136 - sendfile ==0.7.11.1 2137 + - sendgrid-v3 ==0.3.0.0 2138 - seqalign ==0.2.0.4 2139 - seqid ==0.6.2 2140 - seqid-streams ==0.7.2 ··· 2210 - skein ==1.0.9.4 2211 - skews ==0.1.0.3 2212 - skip-var ==0.1.1.0 2213 + - skylighting ==0.10.5 2214 + - skylighting-core ==0.10.5 2215 - slack-api ==0.12 2216 - slack-progressbar ==0.1.0.1 2217 + - slist ==0.2.0.0 2218 - slynx ==0.5.0.2 2219 - smallcheck ==1.2.1 2220 - smash ==0.1.1.0 ··· 2230 - soap ==0.2.3.6 2231 - soap-openssl ==0.1.0.2 2232 - soap-tls ==0.1.1.4 2233 + - socket ==0.8.3.0 2234 - socks ==0.6.1 2235 - some ==1.0.2 2236 - sop-core ==0.5.0.1 ··· 2239 - sourcemap ==0.1.6 2240 - sox ==0.2.3.1 2241 - soxlib ==0.0.3.1 2242 + - spacecookie ==1.0.0.0 2243 - sparse-linear-algebra ==0.3.1 2244 - sparse-tensor ==0.2.1.5 2245 - spatial-math ==0.5.0.1 ··· 2360 - tardis ==0.4.3.0 2361 - tasty ==1.4.1 2362 - tasty-ant-xml ==1.1.8 2363 + - tasty-bench ==0.2.3 2364 - tasty-dejafu ==2.0.0.7 2365 - tasty-discover ==4.2.2 2366 - tasty-expected-failure ==0.12.3 ··· 2519 - type-level-numbers ==0.1.1.1 2520 - type-map ==0.1.6.0 2521 - type-natural ==1.1.0.0 2522 + - typenums ==0.1.3 2523 - type-of-html ==1.6.2.0 2524 - type-of-html-static ==0.1.0.2 2525 - type-operators ==0.2.0.0 ··· 2604 - vector-algorithms ==0.8.0.4 2605 - vector-binary-instances ==0.2.5.1 2606 - vector-buffer ==0.4.1 2607 + - vector-builder ==0.3.8.1 2608 - vector-bytes-instances ==0.1.1 2609 - vector-circular ==0.1.3 2610 - vector-instances ==3.4 ··· 2633 - wai-feature-flags ==0.1.0.1 2634 - wai-handler-launch ==3.0.3.1 2635 - wai-logger ==2.3.6 2636 + - wai-middleware-auth ==0.2.4.1 2637 - wai-middleware-caching ==0.1.0.2 2638 - wai-middleware-clacks ==0.1.0.1 2639 - wai-middleware-static ==0.9.0 ··· 2785 - dependent-sum == 0.4 # required by Hasura 1.3.1, 2020-08-20 2786 - network == 2.6.3.1 # required by pkgs/games/hedgewars/default.nix, 2020-11-15 2787 - mmorph == 1.1.3 # Newest working version of mmorph on ghc 8.6.5. needed for hls 2788 + - hlint < 3.3 # We don‘t have ghc-lib-parser 9.0.X yet. 2789 - optparse-applicative < 0.16 # needed for niv-0.2.19 2790 + - lsp-test < 0.14 # needed for hls 1.0.0 2791 2792 package-maintainers: 2793 peti: ··· 2865 - taskwarrior 2866 - haskell-language-server 2867 - shake-bench 2868 + - iCalendar 2869 + - stm-containers 2870 sorki: 2871 - cayene-lpp 2872 - data-stm32 ··· 3111 - ACME 3112 - acme-all-monad 3113 - acme-comonad 3114 + - acme-dont 3115 - acme-flipping-tables 3116 - acme-hq9plus 3117 - acme-http ··· 3184 - aeson-tiled 3185 - aeson-typescript 3186 - aeson-utils 3187 + - aeson-via 3188 - affection 3189 - affine-invariant-ensemble-mcmc 3190 - afv ··· 3242 - amazon-emailer 3243 - amazon-emailer-client-snap 3244 - amazon-products 3245 + - amazonka-ec2 3246 - amazonka-s3-streaming 3247 - amby 3248 - AMI ··· 3321 - apiary-session 3322 - apiary-websockets 3323 - apis 3324 + - apns-http2 3325 - apotiki 3326 - app-lens 3327 - appc ··· 3331 - applicative-parsec 3332 - applicative-quoters 3333 - applicative-splice 3334 + - apply-unordered 3335 - approveapi 3336 - approx 3337 - ApproxFun-hs ··· 3339 - arbb-vm 3340 - arbor-datadog 3341 - arbor-monad-counter 3342 + - arbor-monad-logger 3343 - arbor-monad-metric 3344 - arbor-monad-metric-datadog 3345 + - arbor-postgres 3346 - arch-hs 3347 - arch-web 3348 - archive-libarchive ··· 3394 - asn1-codec 3395 - asn1-data 3396 - assert 3397 + - assert4hs 3398 + - assert4hs-tasty 3399 - assertions 3400 - asset-map 3401 - assimp ··· 3505 - azure-service-api 3506 - azure-servicebus 3507 - azurify 3508 + - b-tree 3509 - b9 3510 - babylon 3511 - backblaze-b2-hs ··· 3537 - barrier 3538 - barrier-monad 3539 - base-compat-migrate 3540 + - base-encoding 3541 - base-feature-macros 3542 - base-generics 3543 - base-io-access 3544 + - base16 3545 + - base16-lens 3546 - base32-bytestring 3547 - base62 3548 - base64-bytes ··· 3602 - betacode 3603 - betris 3604 - bff 3605 + - bglib 3606 - bgmax 3607 - bgzf 3608 - bhoogle 3609 - bibdb 3610 + - bidi-icu 3611 - bidirectional 3612 - bidirectionalization-combined 3613 - bidispec ··· 3697 - biopsl 3698 - biosff 3699 - biostockholm 3700 + - bip32 3701 - birch-beer 3702 - bird 3703 - BirdPP ··· 3712 - bitcoin-block 3713 - bitcoin-compact-filters 3714 - bitcoin-hs 3715 + - bitcoin-keys 3716 - bitcoin-rpc 3717 - bitcoin-script 3718 - bitcoin-scripting 3719 - bitcoin-tx 3720 + - bitcoin-types 3721 - bitcoind-regtest 3722 - bitcoind-rpc 3723 - Bitly ··· 3775 - blunk-hask-tests 3776 - blunt 3777 - bno055-haskell 3778 + - bogocopy 3779 - bogre-banana 3780 - boilerplate 3781 - bolt ··· 3798 - boring-window-switcher 3799 - bot 3800 - botpp 3801 + - bound-extras 3802 - bounded-array 3803 - bowntz 3804 - box ··· 3907 - cabal-dependency-licenses 3908 - cabal-dev 3909 - cabal-dir 3910 + - cabal-edit 3911 - cabal-file-th 3912 - cabal-ghc-dynflags 3913 - cabal-ghci ··· 4338 - conferer-provider-dhall 4339 - conferer-provider-json 4340 - conferer-provider-yaml 4341 + - conferer-snap 4342 - conferer-source-dhall 4343 - conferer-source-json 4344 - conferer-source-yaml ··· 4525 - ctkl 4526 - ctpl 4527 - cube 4528 + - cubical 4529 - cuboid 4530 - cuckoo 4531 - curl-runnings ··· 4803 - dingo-core 4804 - dingo-example 4805 - dingo-widgets 4806 + - diohsc 4807 - diophantine 4808 - diplomacy 4809 - diplomacy-server ··· 5024 - eibd-client-simple 5025 - eigen 5026 - Eight-Ball-Pool-Hack-Cheats 5027 + - eio 5028 - either-list-functions 5029 - either-unwrap 5030 - EitherT ··· 5103 - equeue 5104 - erf-native 5105 - erlang 5106 + - erlang-ffi 5107 - eros 5108 - eros-client 5109 - eros-http ··· 5142 - ethereum-analyzer-webui 5143 - ethereum-client-haskell 5144 - ethereum-merkle-patricia-db 5145 + - ethereum-rlp 5146 - euphoria 5147 - eurofxref 5148 - evdev ··· 5239 - fastedit 5240 - fastirc 5241 - fastly 5242 + - fastpbkdf2 5243 - FastPush 5244 - fastsum 5245 - FastxPipe 5246 - fathead-util 5247 - fault-tree 5248 - fay-builder 5249 - fay-hsx 5250 - fay-simplejson 5251 - fb-persistent 5252 - fbmessenger-api 5253 - fbrnch ··· 5362 - fizzbuzz-as-a-service 5363 - flac 5364 - flac-picture 5365 + - flaccuraterip 5366 - flamethrower 5367 - flamingra 5368 - flashblast ··· 5507 - ft-generator 5508 - ftdi 5509 - FTGL-bytestring 5510 + - ftp-client 5511 + - ftp-client-conduit 5512 - ftp-conduit 5513 - ftphs 5514 - FTPLine ··· 5553 - fwgl 5554 - fwgl-glfw 5555 - fwgl-javascript 5556 + - fxpak 5557 - g-npm 5558 - g2 5559 - g2q ··· 5635 - GenSmsPdu 5636 - gentlemark 5637 - GenussFold 5638 + - genvalidity-persistent 5639 - geo-resolver 5640 - GeocoderOpenCage 5641 - geodetic ··· 5651 - GGg 5652 - ggtsTC 5653 - gh-labeler 5654 + - ghc-bignum 5655 - ghc-clippy-plugin 5656 - ghc-core-smallstep 5657 - ghc-datasize ··· 5703 - gi-gstaudio 5704 - gi-gstpbutils 5705 - gi-gsttag 5706 - gi-gtkosxapplication 5707 - gi-gtksheet 5708 - gi-handy ··· 5908 - gross 5909 - GroteTrap 5910 - groundhog-converters 5911 + - groundhog-mysql 5912 - group-theory 5913 - group-with 5914 - grouped-list ··· 5994 - hackernews 5995 - HackMail 5996 - hackmanager 5997 + - hackport 5998 - hactor 5999 - hactors 6000 - haddock ··· 6183 - haskell-ml 6184 - haskell-mpfr 6185 - haskell-mpi 6186 + - haskell-names 6187 - haskell-neo4j-client 6188 - haskell-openflow 6189 - haskell-overridez ··· 6306 - haskyapi 6307 - haslo 6308 - hasloGUI 6309 + - hasmin 6310 - hasparql-client 6311 - hasql-backend 6312 - hasql-class ··· 6418 - heckle 6419 - hedgehog-checkers 6420 - hedgehog-checkers-lens 6421 - hedgehog-fakedata 6422 - hedgehog-gen-json 6423 - hedgehog-generic ··· 6469 - heterolist 6470 - hetris 6471 - heukarya 6472 + - hevm 6473 - hevolisa 6474 - hevolisa-dph 6475 - hex-text ··· 6483 - hexpr 6484 - hexpress 6485 - hexquote 6486 + - hexstring 6487 - hext 6488 - hextream 6489 - heyefi ··· 6507 - hGelf 6508 - hgen 6509 - hgeometric 6510 - hgeometry-ipe 6511 - hgeometry-svg 6512 - hgeos ··· 6523 - HHDL 6524 - hhp 6525 - hhwloc 6526 + - hi 6527 - hi3status 6528 - hiccup 6529 - hichi ··· 6612 - hlrdb 6613 - hlrdb-core 6614 - hls 6615 + - hls-exactprint-utils 6616 - hlwm 6617 - hly 6618 - hmark ··· 6665 - hol 6666 - hold-em 6667 - hole 6668 + - holmes 6669 - Holumbus-Searchengine 6670 - holy-project 6671 - homeomorphic ··· 6789 - hs-scrape 6790 - hs-snowtify 6791 - hs-speedscope 6792 + - hs-tags 6793 - hs-twitter 6794 - hs-twitterarchiver 6795 - hs-vcard ··· 6855 - HsHyperEstraier 6856 - hsI2C 6857 - hSimpleDB 6858 + - hsimport 6859 - hsinspect 6860 - hsinspect-lsp 6861 - HsJudy ··· 7002 - human-text 7003 - humble-prelude 7004 - hums 7005 + - hunch 7006 - HUnit-Diff 7007 - hunit-gui 7008 - hunit-rematch ··· 7091 - ib-api 7092 - iban 7093 - ical 7094 - ice40-prim 7095 - IcoGrid 7096 - iconv-typed ··· 7170 - indentation-core 7171 - indentation-parsec 7172 - indentation-trifecta 7173 + - indents 7174 - index-core 7175 - indexation 7176 - IndexedList ··· 7221 - interruptible 7222 - interval 7223 - IntFormats 7224 + - intricacy 7225 - intro-prelude 7226 - introduction 7227 - introduction-test ··· 7362 - json-builder 7363 - JSON-Combinator 7364 - JSON-Combinator-Examples 7365 - json-encoder 7366 - json-enumerator 7367 - json-extra ··· 7387 - jsonextfilter 7388 - JsonGrammar 7389 - jsonifier 7390 + - jsonnet 7391 - jsonresume 7392 - jsonrpc-conduit 7393 - jsons-to-schema ··· 7565 - language-dart 7566 - language-dickinson 7567 - language-dockerfile 7568 - language-eiffel 7569 - language-elm 7570 - language-fortran ··· 7613 - latex-svg-image 7614 - latex-svg-pandoc 7615 - LATS 7616 - launchdarkly-server-sdk 7617 - launchpad-control 7618 - lawless-concurrent-machines ··· 7713 - libxml-enumerator 7714 - libxslt 7715 - lie 7716 + - life-sync 7717 - lifetimes 7718 - lifted-base-tf 7719 - lifted-protolude ··· 7772 - liquid-platform 7773 - liquid-prelude 7774 - liquid-vector 7775 + - liquidhaskell 7776 - liquidhaskell-cabal 7777 - Liquorice 7778 - list-fusion-probe ··· 8004 - math-grads 8005 - math-interpolate 8006 - math-metric 8007 + - math-programming 8008 - math-programming-glpk 8009 - math-programming-tests 8010 - mathblog ··· 8069 - memorypool 8070 - menoh 8071 - menshen 8072 + - mergeful-persistent 8073 + - mergeless-persistent 8074 - merkle-patricia-db 8075 - merkle-tree 8076 - messagepack-rpc ··· 8098 - mi 8099 - Michelangelo 8100 - miconix-test 8101 + - micro-gateway 8102 - micro-recursion-schemes 8103 - microbase 8104 - microformats2-parser ··· 8149 - miss-porcelain 8150 - missing-py2 8151 - MissingPy 8152 + - mit-3qvpPyAi6mH 8153 - mix-arrows 8154 - mixed-strategies 8155 - mixpanel-client ··· 8355 - muon 8356 - murder 8357 - murmur 8358 + - murmur3 8359 - murmurhash3 8360 - mushu 8361 - music-graphics ··· 8429 - nationstates 8430 - nats-client 8431 - nats-queue 8432 + - natural 8433 - natural-number 8434 - NaturalLanguageAlphabets 8435 - NaturalSort ··· 8492 - network-minihttp 8493 - network-msgpack-rpc 8494 - network-netpacket 8495 + - network-packet-linux 8496 - network-protocol-xmpp 8497 - network-rpca 8498 - network-server ··· 8605 - NXTDSL 8606 - nylas 8607 - nymphaea 8608 + - nyx-game 8609 - oanda-rest-api 8610 - oasis-xrd 8611 - oauth2-jwt-bearer ··· 8770 - pam 8771 - pan-os-syslog 8772 - panda 8773 + - pandoc-citeproc 8774 - pandoc-csv2table 8775 - pandoc-filter-graphviz 8776 - pandoc-filter-indent ··· 8841 - parsers-megaparsec 8842 - parsestar 8843 - parsimony 8844 + - parsnip 8845 - partage 8846 - partial-lens 8847 - partial-records ··· 8932 - persistent-odbc 8933 - persistent-protobuf 8934 - persistent-ratelimit 8935 + - persistent-redis 8936 - persistent-relational-record 8937 - persistent-template-classy 8938 - persistent-test ··· 9005 - pipes-extra 9006 - pipes-files 9007 - pipes-illumina 9008 + - pipes-interleave 9009 - pipes-io 9010 - pipes-key-value-csv 9011 - pipes-mongodb ··· 9026 - pivotal-tracker 9027 - pixel-printer 9028 - pixelated-avatar-generator 9029 + - pixiv 9030 - pkcs10 9031 - pkcs7 9032 - pkggraph ··· 9140 - postgresql-simple-queue 9141 - postgresql-simple-sop 9142 - postgresql-simple-typed 9143 + - postgresql-simple-url 9144 - postgresql-syntax 9145 - postgresql-tx-query 9146 - postgresql-tx-squeal ··· 9207 - primitive-checked 9208 - primitive-containers 9209 - primitive-convenience 9210 - primitive-foreign 9211 - primitive-indexed 9212 - primitive-maybe ··· 9273 - proto-lens-arbitrary 9274 - proto-lens-combinators 9275 - proto-lens-descriptors 9276 + - proto-lens-optparse 9277 - proto3-suite 9278 - proto3-wire 9279 - protobuf-native ··· 9347 - QIO 9348 - QLearn 9349 - qlinear 9350 + - qnap-decrypt 9351 - qr-imager 9352 - qr-repa 9353 - qsem ··· 9385 - quickcheck-string-random 9386 - quickcheck-webdriver 9387 - QuickCheckVariant 9388 + - quickjs-hs 9389 - QuickPlot 9390 - quickpull 9391 - quickset ··· 9448 - random-stream 9449 - RandomDotOrg 9450 - Range 9451 + - range-set-list 9452 - range-space 9453 - rangemin 9454 - Ranka ··· 9506 - read-bounded 9507 - read-ctags 9508 - read-io 9509 + - readability 9510 - readline 9511 - readline-statevar 9512 - readme-lhs ··· 9598 - regions-monadstf 9599 - regions-mtl 9600 - register-machine-typelevel 9601 + - registry 9602 - registry-hedgehog 9603 - regress 9604 - regression-simple ··· 9612 - reified-records 9613 - reify 9614 - relacion 9615 + - relapse 9616 - relational-postgresql8 9617 - relational-query-postgresql-pure 9618 - relative-date ··· 9937 - seclib 9938 - second-transfer 9939 - secp256k1 9940 + - secp256k1-haskell 9941 - secp256k1-legacy 9942 - secret-santa 9943 - secrm ··· 9978 - sequent-core 9979 - sequor 9980 - serialize-instances 9981 + - serialport 9982 - serokell-util 9983 - serpentine 9984 - serv ··· 10111 - shake-extras 10112 - shake-futhark 10113 - shake-minify 10114 + - shake-minify-css 10115 - shake-pack 10116 - shake-path 10117 - shake-persist ··· 10152 - Shpadoinkle-examples 10153 - Shpadoinkle-html 10154 - Shpadoinkle-router 10155 + - Shpadoinkle-streaming 10156 - Shpadoinkle-template 10157 - Shpadoinkle-widgets 10158 - shpider ··· 10166 - sign 10167 - signable 10168 - signals 10169 + - signature 10170 - signed-multiset 10171 - signify-hs 10172 - silkscreen ··· 10194 - simple-pipe 10195 - simple-rope 10196 - simple-server 10197 + - simple-sql-parser 10198 - simple-stacked-vm 10199 - simple-tabular 10200 - simple-tar ··· 10216 - simseq 10217 - singleton-dict 10218 - singleton-typelits 10219 + - singletons-base 10220 + - singletons-th 10221 - singnal 10222 - singular-factory 10223 - sink ··· 10244 - skype4hs 10245 - slack 10246 - slack-notify-haskell 10247 + - slack-verify 10248 - slack-web 10249 - slave-thread 10250 - sliceofpy ··· 10425 - splaytree 10426 - spline3 10427 - splines 10428 + - splint 10429 - split-morphism 10430 - splitter 10431 - Spock ··· 10536 - STL 10537 - STLinkUSB 10538 - stm-chunked-queues 10539 - stm-firehose 10540 - stm-promise 10541 - stm-stats 10542 - STM32-Zombie ··· 10602 - stripe-hs 10603 - stripe-http-streams 10604 - stripe-scotty 10605 + - stripe-signature 10606 - stripe-wreq 10607 - strongswan-sql 10608 - structural-induction ··· 10650 - supplemented 10651 - surjective 10652 - sv 10653 + - sv-cassava 10654 + - sv-core 10655 - sv-svfactor 10656 - SVD2HS 10657 - svfactor ··· 10767 - target 10768 - task 10769 - task-distribution 10770 - TaskMonad 10771 - tasty-auto 10772 - tasty-bdd 10773 - tasty-fail-fast 10774 + - tasty-grading-system 10775 - tasty-groundhog-converters 10776 - tasty-hedgehog-coverage 10777 - tasty-html ··· 10782 - tasty-mgolden 10783 - tasty-silver 10784 - tasty-stats 10785 + - tasty-test-vector 10786 - tateti-tateti 10787 - Taxonomy 10788 - TaxonomyTools ··· 11033 - trace-function-call 11034 - traced 11035 - tracetree 11036 + - tracing 11037 + - tracing-control 11038 - tracked-files 11039 - tracker 11040 - trackit ··· 11212 - uhc-light 11213 - uhc-util 11214 - uhexdump 11215 + - uhttpc 11216 - ui-command 11217 - UMM 11218 - unagi-bloomfilter ··· 11252 - universe-instances-base 11253 - universe-instances-extended 11254 - universe-instances-trans 11255 - universe-th 11256 - unix-fcntl 11257 - unix-handle ··· 11284 - upskirt 11285 - urbit-airlock 11286 - urbit-api 11287 + - urbit-hob 11288 - ureader 11289 - urembed 11290 - uri ··· 11378 - vect-floating-accelerate 11379 - vect-opengl 11380 - vector-bytestring 11381 - vector-clock 11382 - vector-conduit 11383 - vector-endian ··· 11500 - waitra 11501 - waldo 11502 - wallpaper 11503 + - warc 11504 - warp-dynamic 11505 - warp-static 11506 - warp-systemd ··· 11546 - webdriver-w3c 11547 - WeberLogic 11548 - webfinger-client 11549 + - webify 11550 - webkit-javascriptcore 11551 + - webmention 11552 - Webrexp 11553 - webserver 11554 - webshow ··· 11611 - WordNet 11612 - WordNet-ghc74 11613 - wordpass 11614 + - wordpress-auth 11615 - wordsearch 11616 - work-time 11617 - workdays
+1 -1
pkgs/development/haskell-modules/configuration-nix.nix
··· 445 446 # requires an X11 display in test suite 447 gi-gtk-declarative = dontCheck super.gi-gtk-declarative; 448 449 # tests depend on executable 450 ghcide = overrideCabal super.ghcide (drv: { ··· 815 816 # Tests access internet 817 prune-juice = dontCheck super.prune-juice; 818 - 819 }
··· 445 446 # requires an X11 display in test suite 447 gi-gtk-declarative = dontCheck super.gi-gtk-declarative; 448 + gi-gtk-declarative-app-simple = dontCheck super.gi-gtk-declarative-app-simple; 449 450 # tests depend on executable 451 ghcide = overrideCabal super.ghcide (drv: { ··· 816 817 # Tests access internet 818 prune-juice = dontCheck super.prune-juice; 819 }
+4151 -817
pkgs/development/haskell-modules/hackage-packages.nix
··· 2266 }: 2267 mkDerivation { 2268 pname = "C-structs"; 2269 - version = "0.2.0.1"; 2270 - sha256 = "1l7mygk0ia93wqcm61v8mdlnspxscdplxg4qpffvx4ldfafxc7x9"; 2271 libraryHaskellDepends = [ base template-haskell ]; 2272 testHaskellDepends = [ 2273 base doctest Glob HUnit QuickCheck template-haskell test-framework ··· 6433 }: 6434 mkDerivation { 6435 pname = "Frames"; 6436 - version = "0.7.0"; 6437 - sha256 = "0g4c8s4v3lg7bnsz8n09zrf8cwyywmxpv97wkwx6xvflknb7z0cc"; 6438 isLibrary = true; 6439 isExecutable = true; 6440 libraryHaskellDepends = [ ··· 9431 }: 9432 mkDerivation { 9433 pname = "HTTP"; 9434 - version = "4000.3.15"; 9435 - sha256 = "150m5v125s4jrxzl85jhnh69kp4mjyzhkqp0c1k087008f73csqd"; 9436 - revision = "2"; 9437 - editedCabalFile = "1rkazrbxfpx7bhp6fhgx97j58i4ccyp8bxjgdhr33cpv1b2cza9b"; 9438 libraryHaskellDepends = [ 9439 array base bytestring mtl network network-uri parsec time 9440 ]; ··· 9501 ({ mkDerivation, base, call-stack, deepseq, filepath }: 9502 mkDerivation { 9503 pname = "HUnit"; 9504 - version = "1.6.1.0"; 9505 - sha256 = "1rpi52rnjpyv379rm6n3s706z6mv114aychf03dq456wfa4b7123"; 9506 - revision = "1"; 9507 - editedCabalFile = "1pb42lix1fzhvcc2g7kz5lw8fsz6kcj9b7almr7kvv38f8vmbn5i"; 9508 - libraryHaskellDepends = [ base call-stack deepseq ]; 9509 - testHaskellDepends = [ base call-stack deepseq filepath ]; 9510 - description = "A unit testing framework for Haskell"; 9511 - license = lib.licenses.bsd3; 9512 - }) {}; 9513 - 9514 - "HUnit_1_6_2_0" = callPackage 9515 - ({ mkDerivation, base, call-stack, deepseq, filepath }: 9516 - mkDerivation { 9517 - pname = "HUnit"; 9518 version = "1.6.2.0"; 9519 sha256 = "1as4sw5y39c3zrmr6sb8zbw74c9gdn4401y0dx45ih7zf6457dxh"; 9520 libraryHaskellDepends = [ base call-stack deepseq ]; 9521 testHaskellDepends = [ base call-stack deepseq filepath ]; 9522 description = "A unit testing framework for Haskell"; 9523 license = lib.licenses.bsd3; 9524 - hydraPlatforms = lib.platforms.none; 9525 }) {}; 9526 9527 "HUnit-Diff" = callPackage ··· 10823 ({ mkDerivation, base, bytestring, Cabal, network, openssl, time }: 10824 mkDerivation { 10825 pname = "HsOpenSSL"; 10826 - version = "0.11.5.1"; 10827 - sha256 = "1np4yyiq4935p1vbf89m0ifkilzc6vzab9i8x7c21y9s7rsv4rj9"; 10828 - setupHaskellDepends = [ base Cabal ]; 10829 - libraryHaskellDepends = [ base bytestring network time ]; 10830 - librarySystemDepends = [ openssl ]; 10831 - testHaskellDepends = [ base bytestring ]; 10832 - description = "Partial OpenSSL binding for Haskell"; 10833 - license = lib.licenses.publicDomain; 10834 - }) {inherit (pkgs) openssl;}; 10835 - 10836 - "HsOpenSSL_0_11_6" = callPackage 10837 - ({ mkDerivation, base, bytestring, Cabal, network, openssl, time }: 10838 - mkDerivation { 10839 - pname = "HsOpenSSL"; 10840 version = "0.11.6"; 10841 sha256 = "1gkx6kk03ziz9wk6iwxcdpf1ig8a9whwv3yjbzmqrwkp7fh1wdrw"; 10842 setupHaskellDepends = [ base Cabal ]; ··· 10845 testHaskellDepends = [ base bytestring ]; 10846 description = "Partial OpenSSL binding for Haskell"; 10847 license = lib.licenses.publicDomain; 10848 - hydraPlatforms = lib.platforms.none; 10849 }) {inherit (pkgs) openssl;}; 10850 10851 "HsOpenSSL-x509-system" = callPackage ··· 10982 pname = "HsYAML-aeson"; 10983 version = "0.2.0.0"; 10984 sha256 = "12sxww260pc0bbpiyirm7911haxhljdi2f08a9ddpbgw8d5n7ffg"; 10985 - revision = "2"; 10986 - editedCabalFile = "0sf4clxx3i3s6666w3il65fijx2xmgb1mxml9jgc5y40sj3qb3mm"; 10987 libraryHaskellDepends = [ 10988 aeson base bytestring containers HsYAML mtl scientific text 10989 unordered-containers vector ··· 11239 ]; 11240 description = "Library to deal with IPv6 address text representations"; 11241 license = lib.licenses.bsd3; 11242 }) {}; 11243 11244 "IPv6DB" = callPackage ··· 18632 libraryHaskellDepends = [ base lens Shpadoinkle streaming text ]; 18633 description = "Integration of the streaming library with Shpadoinkle continuations"; 18634 license = lib.licenses.bsd3; 18635 }) {}; 18636 18637 "Shpadoinkle-template" = callPackage ··· 20875 ({ mkDerivation, base, bytestring, transformers, vector, vulkan }: 20876 mkDerivation { 20877 pname = "VulkanMemoryAllocator"; 20878 - version = "0.4"; 20879 - sha256 = "1v4m9b13p0sf3gs8qvdgkai4r9kb6sszw2qdyxrn6i4nq62f19zq"; 20880 libraryHaskellDepends = [ 20881 base bytestring transformers vector vulkan 20882 ]; ··· 22033 }: 22034 mkDerivation { 22035 pname = "Z-Data"; 22036 - version = "0.7.1.0"; 22037 - sha256 = "12ay07rfyprdbgf6ndh4ywcklfqnjdk1gdf0xli27a96i86i7x44"; 22038 setupHaskellDepends = [ base Cabal ]; 22039 libraryHaskellDepends = [ 22040 base bytestring case-insensitive containers deepseq ghc-prim ··· 23408 testHaskellDepends = [ base tasty tasty-hunit ]; 23409 description = "A \"don't\" construct"; 23410 license = lib.licenses.bsd3; 23411 }) {}; 23412 23413 "acme-flipping-tables" = callPackage ··· 24451 pname = "aeson"; 24452 version = "1.5.6.0"; 24453 sha256 = "1s5z4bgb5150h6a4cjf5vh8dmyrn6ilh29gh05999v6jwd5w6q83"; 24454 libraryHaskellDepends = [ 24455 attoparsec base base-compat-batteries bytestring containers 24456 data-fix deepseq dlist ghc-prim hashable primitive scientific ··· 24605 pname = "aeson-compat"; 24606 version = "0.3.9"; 24607 sha256 = "1j13gykv4ryvmr14w5blz0nnpdb4p0hpa27wahw3mhb1lwdr8hz0"; 24608 - revision = "5"; 24609 - editedCabalFile = "11ca16ff12jp0kndhwaq8gm3jc2irs3hbmd1lh2lwrqyq498d8k6"; 24610 libraryHaskellDepends = [ 24611 aeson attoparsec attoparsec-iso8601 base base-compat bytestring 24612 containers exceptions hashable scientific tagged text time ··· 24721 }) {}; 24722 24723 "aeson-extra" = callPackage 24724 - ({ mkDerivation, aeson, aeson-compat, attoparsec 24725 - , attoparsec-iso8601, base, base-compat-batteries, bytestring 24726 - , containers, deepseq, exceptions, hashable, parsec 24727 - , quickcheck-instances, recursion-schemes, scientific, semialign 24728 - , tasty, tasty-hunit, tasty-quickcheck, template-haskell, text 24729 - , these, time, time-parsers, unordered-containers, vector 24730 }: 24731 mkDerivation { 24732 pname = "aeson-extra"; 24733 - version = "0.4.1.3"; 24734 - sha256 = "1k15vkyf635nh904diyg931ziwdngikvp7c9c339pys3savf5qr2"; 24735 - revision = "4"; 24736 - editedCabalFile = "0gwjgxpgq7lncylfpccikmn3jk2jmz54vsgjialhwa26iv9f9n4a"; 24737 libraryHaskellDepends = [ 24738 - aeson aeson-compat attoparsec attoparsec-iso8601 base 24739 - base-compat-batteries bytestring containers deepseq exceptions 24740 - hashable parsec recursion-schemes scientific semialign 24741 - template-haskell text these time unordered-containers vector 24742 ]; 24743 testHaskellDepends = [ 24744 - base containers quickcheck-instances tasty tasty-hunit 24745 - tasty-quickcheck time time-parsers unordered-containers vector 24746 ]; 24747 description = "Extra goodies for aeson"; 24748 license = lib.licenses.bsd3; ··· 24992 pname = "aeson-optics"; 24993 version = "1.1.0.1"; 24994 sha256 = "1pfi84cl7w5bp7dwdhcyi8kchvbfjybqcp0sifqrn70dj2b50mf7"; 24995 - revision = "4"; 24996 - editedCabalFile = "02g4438a6h2l0brvj1izagrsx9mgs1gqfds98vjzdsmamaqsm8fl"; 24997 libraryHaskellDepends = [ 24998 aeson attoparsec base base-compat bytestring optics-core 24999 optics-extra scientific text unordered-containers vector ··· 25374 ]; 25375 description = "Wrappers to derive-via Aeson ToJSON/FromJSON typeclasses"; 25376 license = lib.licenses.bsd3; 25377 }) {}; 25378 25379 "aeson-with" = callPackage ··· 25866 }: 25867 mkDerivation { 25868 pname = "aivika"; 25869 - version = "5.9"; 25870 - sha256 = "0chmrj8r1qh1k1xkp9gybadxz5zz04v2zh26byrckyx7l2bb7j8x"; 25871 libraryHaskellDepends = [ 25872 array base binary containers deepseq exceptions mtl mwc-random 25873 random semigroups vector ··· 25882 }: 25883 mkDerivation { 25884 pname = "aivika-branches"; 25885 - version = "0.3"; 25886 - sha256 = "1xb7l92vhaccfx9n83x6viamnkxy97c6a3plcf7gllijzrc4i1pf"; 25887 libraryHaskellDepends = [ 25888 aivika aivika-transformers base containers mtl mwc-random random 25889 ]; ··· 25916 }: 25917 mkDerivation { 25918 pname = "aivika-experiment"; 25919 - version = "5.3"; 25920 - sha256 = "0ch2h7scg43x5mdmvqyjabh96vhshz94r8b58pi9ikp7w4rm7wk9"; 25921 libraryHaskellDepends = [ 25922 aivika aivika-transformers base containers directory filepath mtl 25923 network-uri parallel-io split ··· 25983 }: 25984 mkDerivation { 25985 pname = "aivika-gpss"; 25986 - version = "0.6.1"; 25987 - sha256 = "06jx9340rr8a23gpzwwzqv0baqnv62w8cf8slcmcmlr0k84lg4ca"; 25988 libraryHaskellDepends = [ 25989 aivika aivika-transformers base containers hashable mtl 25990 unordered-containers ··· 25999 }: 26000 mkDerivation { 26001 pname = "aivika-lattice"; 26002 - version = "0.6"; 26003 - sha256 = "0199d3ycs98a7gbqaakv2s4aj1paw08ix32xv3ln4p7x56avc6rn"; 26004 libraryHaskellDepends = [ 26005 aivika aivika-transformers array base containers mtl mwc-random 26006 random ··· 26015 }: 26016 mkDerivation { 26017 pname = "aivika-realtime"; 26018 - version = "0.3"; 26019 - sha256 = "1qprmkklyna16n56zxkaryy0fawvc9mjws0mcw87bcl56m18npcm"; 26020 libraryHaskellDepends = [ 26021 aivika aivika-transformers async base containers mtl mwc-random 26022 random stm time vector ··· 26031 }: 26032 mkDerivation { 26033 pname = "aivika-transformers"; 26034 - version = "5.9"; 26035 - sha256 = "1vqwhjwjsnrbqp3n97arl2nz28xb0vwxvsn42iqf8fxj6xsks3y1"; 26036 libraryHaskellDepends = [ 26037 aivika array base containers exceptions mtl mwc-random random 26038 semigroups vector ··· 26991 ]; 26992 }) {inherit (pkgs) alsaLib;}; 26993 26994 "alsa-seq-tests" = callPackage 26995 ({ mkDerivation, alsa, base }: 26996 mkDerivation { ··· 28072 ]; 28073 description = "Amazon Elastic Compute Cloud SDK"; 28074 license = lib.licenses.mpl20; 28075 }) {}; 28076 28077 "amazonka-ecr" = callPackage ··· 31734 ]; 31735 description = "Apple Push Notification service HTTP/2 integration"; 31736 license = lib.licenses.bsd3; 31737 }) {}; 31738 31739 "apotiki" = callPackage ··· 31974 license = lib.licenses.bsd3; 31975 }) {}; 31976 31977 "apportionment" = callPackage 31978 ({ mkDerivation, base, containers, utility-ht }: 31979 mkDerivation { ··· 32245 testToolDepends = [ hspec-discover ]; 32246 description = "Simple logging library"; 32247 license = lib.licenses.mit; 32248 }) {}; 32249 32250 "arbor-monad-metric" = callPackage ··· 32315 ]; 32316 description = "Convenience types and functions for postgresql-simple"; 32317 license = lib.licenses.mit; 32318 }) {}; 32319 32320 "arbtt" = callPackage ··· 32327 }: 32328 mkDerivation { 32329 pname = "arbtt"; 32330 - version = "0.10.4"; 32331 - sha256 = "18lpwhkhw0nxzif9dyc29b9s8i0v26y9vdgh0laj3z9yyp805syc"; 32332 isLibrary = false; 32333 isExecutable = true; 32334 executableHaskellDepends = [ ··· 32386 }: 32387 mkDerivation { 32388 pname = "arch-hs"; 32389 - version = "0.7.1.0"; 32390 - sha256 = "120kxjz27llinggq6qwihqjbs1f4q0wdfb79fmrb80k25pvhkn8v"; 32391 isLibrary = true; 32392 isExecutable = true; 32393 libraryHaskellDepends = [ ··· 33974 license = lib.licenses.bsd3; 33975 }) {}; 33976 33977 "assertions" = callPackage 33978 ({ mkDerivation, ansi-terminal, base, containers, interpolate 33979 , process ··· 34517 license = lib.licenses.bsd3; 34518 }) {}; 34519 34520 "atlassian-connect-core" = callPackage 34521 ({ mkDerivation, aeson, atlassian-connect-descriptor, base 34522 , base64-bytestring, bytestring, case-insensitive, cipher-aes ··· 34551 }: 34552 mkDerivation { 34553 pname = "atlassian-connect-descriptor"; 34554 - version = "0.4.10.0"; 34555 - sha256 = "0nixj6cv367b6a2xa0pf37z6fcmrnwmngc27ps9qy85hc4nnl3cy"; 34556 libraryHaskellDepends = [ 34557 aeson base cases network network-uri text time-units 34558 unordered-containers ··· 35075 license = lib.licenses.bsd3; 35076 }) {}; 35077 35078 "attoparsec-arff" = callPackage 35079 ({ mkDerivation, attoparsec, base, bytestring }: 35080 mkDerivation { ··· 35169 pname = "attoparsec-expr"; 35170 version = "0.1.1.2"; 35171 sha256 = "0z25pc3rq98ysk92jclr90n35982a566sxri51yh1s9c24vd8k4d"; 35172 libraryHaskellDepends = [ attoparsec base ]; 35173 description = "Port of parsec's expression parser to attoparsec"; 35174 license = lib.licenses.bsd3; ··· 35200 pname = "attoparsec-iso8601"; 35201 version = "1.0.2.0"; 35202 sha256 = "162gc101mwhmjbfhhv1wm3yvk2h4ra34wpw5x87735cfqxvjv582"; 35203 libraryHaskellDepends = [ 35204 attoparsec base base-compat-batteries text time time-compat 35205 ]; ··· 36028 ({ mkDerivation, base, lens }: 36029 mkDerivation { 36030 pname = "aviation-units"; 36031 - version = "0.0.2"; 36032 - sha256 = "14m3sbic6zppg8hn1i7b6rd40bw731hz6mr393h897jjlvxygcc2"; 36033 libraryHaskellDepends = [ base lens ]; 36034 description = "Units of measurements used in aviation"; 36035 license = lib.licenses.bsd3; ··· 36039 ({ mkDerivation, aviation-units, base, lens }: 36040 mkDerivation { 36041 pname = "aviation-weight-balance"; 36042 - version = "0.0.2"; 36043 - sha256 = "1pqkqxdhl1a3pbrmjxz9vl3wjp90kic9vi6bjjr2q9i6six1xbjw"; 36044 libraryHaskellDepends = [ aviation-units base lens ]; 36045 description = "Weight and Balance structures used in aviation"; 36046 license = lib.licenses.bsd3; ··· 37231 benchmarkHaskellDepends = [ base criterion pipes ]; 37232 description = "Immutable disk-based B* trees"; 37233 license = lib.licenses.bsd3; 37234 }) {}; 37235 37236 "b9" = callPackage ··· 37927 broken = true; 37928 }) {}; 37929 37930 - "base_4_14_1_0" = callPackage 37931 - ({ mkDerivation, ghc-prim, invalid-cabal-flag-settings, rts }: 37932 mkDerivation { 37933 pname = "base"; 37934 - version = "4.14.1.0"; 37935 - sha256 = "15n0ya681yvfvccswcxxk855qv7wz886rmnabj0y6ah7mbf8aijs"; 37936 - libraryHaskellDepends = [ 37937 - ghc-prim invalid-cabal-flag-settings rts 37938 - ]; 37939 description = "Basic libraries"; 37940 license = lib.licenses.bsd3; 37941 hydraPlatforms = lib.platforms.none; 37942 - broken = true; 37943 - }) {invalid-cabal-flag-settings = null;}; 37944 37945 "base-compat" = callPackage 37946 ({ mkDerivation, base, unix }: ··· 37997 ]; 37998 description = "Binary-to-text encodings (e.g. base64)"; 37999 license = lib.licenses.bsd3; 38000 }) {}; 38001 38002 "base-feature-macros" = callPackage ··· 38111 ]; 38112 description = "Fast RFC 4648-compliant Base16 encoding"; 38113 license = lib.licenses.bsd3; 38114 }) {}; 38115 38116 "base16-bytestring_0_1_1_7" = callPackage ··· 38159 ]; 38160 description = "Optics for the Base16 library"; 38161 license = lib.licenses.bsd3; 38162 }) {}; 38163 38164 "base32" = callPackage ··· 39963 ]; 39964 description = "Implementation of the BGAPI serial protocol"; 39965 license = lib.licenses.mit; 39966 }) {}; 39967 39968 "bgmax" = callPackage ··· 40055 license = lib.licenses.bsd3; 40056 }) {}; 40057 40058 "bidirectional" = callPackage 40059 ({ mkDerivation, base, hedgehog, mtl, profunctors }: 40060 mkDerivation { ··· 40671 license = lib.licenses.mit; 40672 }) {}; 40673 40674 "binary-parsers" = callPackage 40675 ({ mkDerivation, attoparsec, base, binary, bytestring 40676 , bytestring-lexing, case-insensitive, criterion, deepseq ··· 42164 ]; 42165 description = "BIP-0032: Hierarchical Deterministic Wallets for Bitcoin and other cryptocurrencies"; 42166 license = lib.licenses.asl20; 42167 }) {}; 42168 42169 "birch-beer" = callPackage ··· 42566 ]; 42567 description = "Bitcoin keys"; 42568 license = lib.licenses.asl20; 42569 }) {}; 42570 42571 "bitcoin-payment-channel" = callPackage ··· 42718 ]; 42719 description = "Provides consistent low-level types used commonly among Bitcoin implementations"; 42720 license = lib.licenses.mit; 42721 }) {}; 42722 42723 "bitcoind-regtest" = callPackage ··· 43126 pname = "bitwise"; 43127 version = "1.0.0.1"; 43128 sha256 = "03xyzdkyb99gvm9g5chl07rqbnm7qrxba7wgmrfmal0rkwm0ibkn"; 43129 - revision = "3"; 43130 - editedCabalFile = "0sx6i1b9slicisnj53sv2jbdryyqd66amcm43xxqlv5srsqqijdm"; 43131 libraryHaskellDepends = [ array base bytestring ]; 43132 testHaskellDepends = [ base QuickCheck ]; 43133 benchmarkHaskellDepends = [ array base bytestring criterion ]; ··· 44425 ]; 44426 description = "Copy a directory tree, making zero-size sparse copies of big files"; 44427 license = lib.licenses.bsd2; 44428 }) {}; 44429 44430 "bogre-banana" = callPackage ··· 45162 broken = true; 45163 }) {}; 45164 45165 "bound" = callPackage 45166 ({ mkDerivation, base, bifunctors, binary, bytes, cereal, comonad 45167 , deepseq, deriving-compat, functor-classes-compat, hashable ··· 45205 ]; 45206 description = "ScopeH and ScopeT extras for bound"; 45207 license = lib.licenses.bsd3; 45208 }) {}; 45209 45210 "bound-gen" = callPackage ··· 45830 }: 45831 mkDerivation { 45832 pname = "brittany"; 45833 - version = "0.13.1.0"; 45834 - sha256 = "0dw4s4lcb34fkv4i0rylna6zrr55rgkqs1s75lhn8zskwl7j89bs"; 45835 isLibrary = true; 45836 isExecutable = true; 45837 libraryHaskellDepends = [ ··· 47808 license = lib.licenses.mit; 47809 }) {}; 47810 47811 "bytestring-substring" = callPackage 47812 ({ mkDerivation, base, bytestring, pipes, primitive }: 47813 mkDerivation { ··· 47872 ]; 47873 description = "A very efficient ByteString builder implementation based on the binary tree"; 47874 license = lib.licenses.mit; 47875 }) {}; 47876 47877 "bytestring-trie" = callPackage ··· 48618 ]; 48619 description = "Cabal utility"; 48620 license = lib.licenses.mit; 48621 }) {}; 48622 48623 "cabal-file" = callPackage ··· 49124 license = lib.licenses.gpl3Only; 49125 }) {}; 49126 49127 "cabal-scripts" = callPackage 49128 ({ mkDerivation, base }: 49129 mkDerivation { ··· 50120 broken = true; 50121 }) {}; 50122 50123 "calc" = callPackage 50124 ({ mkDerivation, array, base, harpy, haskell98, mtl }: 50125 mkDerivation { ··· 50305 ({ mkDerivation, base, nanospec }: 50306 mkDerivation { 50307 pname = "call-stack"; 50308 - version = "0.2.0"; 50309 - sha256 = "1iz0wkbcqchyji72c4j4zb72vfsfdp2ys8pf9mqqsxaq774r7ilm"; 50310 - libraryHaskellDepends = [ base ]; 50311 - testHaskellDepends = [ base nanospec ]; 50312 - description = "Use GHC call-stacks in a backward compatible way"; 50313 - license = lib.licenses.mit; 50314 - }) {}; 50315 - 50316 - "call-stack_0_3_0" = callPackage 50317 - ({ mkDerivation, base, nanospec }: 50318 - mkDerivation { 50319 - pname = "call-stack"; 50320 version = "0.3.0"; 50321 sha256 = "0ski7ihdxah7x4x07qgkjljg8hzqs9d6aa5k4cmr40bzp3i8s3mq"; 50322 libraryHaskellDepends = [ base ]; 50323 testHaskellDepends = [ base nanospec ]; 50324 description = "Use GHC call-stacks in a backward compatible way"; 50325 license = lib.licenses.mit; 50326 - hydraPlatforms = lib.platforms.none; 50327 }) {}; 50328 50329 "camfort" = callPackage ··· 50684 pname = "capability"; 50685 version = "0.4.0.0"; 50686 sha256 = "02dnvzfvn81k15qp41fqd3pk4izg8rfbj7d5f6ry0wfa8d8payq0"; 50687 libraryHaskellDepends = [ 50688 base constraints dlist exceptions generic-lens lens monad-control 50689 monad-unlift mtl mutable-containers primitive reflection ··· 51388 broken = true; 51389 }) {}; 51390 51391 "cash" = callPackage 51392 ({ mkDerivation, base, deepseq, haskell98, HaXml, network, parallel 51393 , pretty ··· 51637 pname = "cassava"; 51638 version = "0.5.2.0"; 51639 sha256 = "01h1zrdqb313cjd4rqm1107azzx4czqi018c2djf66a5i7ajl3dk"; 51640 - revision = "3"; 51641 - editedCabalFile = "0hq9s6662ykk2ldv222xgifwzwvmhmrs56b1llqpdzp7vf7p8b3p"; 51642 configureFlags = [ "-f-bytestring--lt-0_10_4" ]; 51643 libraryHaskellDepends = [ 51644 array attoparsec base bytestring containers deepseq hashable Only ··· 52107 maintainers = with lib.maintainers; [ sorki ]; 52108 }) {}; 52109 52110 "cayley-client" = callPackage 52111 ({ mkDerivation, aeson, attoparsec, base, binary, bytestring 52112 , exceptions, hspec, http-client, http-conduit, lens, lens-aeson ··· 52172 pname = "cbor-tool"; 52173 version = "0.2.2.0"; 52174 sha256 = "0rsnnz1zh9jyjif94lrdppzaa41hypqs1r5dlyzbwlw1m75g286p"; 52175 - revision = "1"; 52176 - editedCabalFile = "1z87h65g6y1w43g76r5i9ps8wkpiabbgkqq85ni8mz1m3rjizl4n"; 52177 isLibrary = false; 52178 isExecutable = true; 52179 executableHaskellDepends = [ ··· 55394 pname = "clash-lib"; 55395 version = "1.2.5"; 55396 sha256 = "14xi0llzm6f3ymlcfwq67d16ggdkqxrxkvr6rwmykxrca3j1b6r3"; 55397 enableSeparateDataOutput = true; 55398 libraryHaskellDepends = [ 55399 aeson ansi-terminal attoparsec base binary bytestring clash-prelude ··· 55435 pname = "clash-lib"; 55436 version = "1.4.0"; 55437 sha256 = "1i0zmz26p35hfp89s45s6g7x2rvhyjc3lrx35r06cnllw6xvp60z"; 55438 enableSeparateDataOutput = true; 55439 libraryHaskellDepends = [ 55440 aeson aeson-pretty ansi-terminal array attoparsec base ··· 56737 testToolDepends = [ markdown-unlit ]; 56738 description = "Integers bounded by a closed interval"; 56739 license = lib.licenses.mit; 56740 }) {}; 56741 56742 "closure" = callPackage ··· 61735 ]; 61736 description = "conferer's FromConfig instances for snap Config"; 61737 license = lib.licenses.mpl20; 61738 }) {}; 61739 61740 "conferer-source-dhall" = callPackage ··· 62401 license = lib.licenses.mit; 62402 }) {}; 62403 62404 "const-math-ghc-plugin" = callPackage 62405 ({ mkDerivation, base, containers, directory, ghc, process }: 62406 mkDerivation { ··· 62657 }: 62658 mkDerivation { 62659 pname = "constraints-deriving"; 62660 - version = "1.1.1.1"; 62661 - sha256 = "06crlqgr5dswjpb9k0d5wizfl8anyrnapqfvp10amq3lgfg3sriz"; 62662 - revision = "1"; 62663 - editedCabalFile = "1fqk2bd5n52yvqx54ck2ypq9a79m8ihp7057j22rglg3b363k8j0"; 62664 isLibrary = true; 62665 isExecutable = true; 62666 setupHaskellDepends = [ base Cabal ]; ··· 62694 ({ mkDerivation, aeson, base, constraints, template-haskell }: 62695 mkDerivation { 62696 pname = "constraints-extras"; 62697 - version = "0.3.0.2"; 62698 - sha256 = "1n3k5ld6qzq7vlwsqwrm3gsg4z7mk11ah3amazzbvbmxwz8wviys"; 62699 - revision = "2"; 62700 - editedCabalFile = "09mdfzrmnl0mc57n7h0w68i8xgp89y5729p2d2h6qb2qj81qsfq1"; 62701 isLibrary = true; 62702 isExecutable = true; 62703 libraryHaskellDepends = [ base constraints template-haskell ]; ··· 62743 license = lib.licenses.bsd3; 62744 }) {}; 62745 62746 "constructible" = callPackage 62747 ({ mkDerivation, base, binary-search, complex-generic 62748 , integer-roots ··· 64688 broken = true; 64689 }) {}; 64690 64691 "cpsa" = callPackage 64692 ({ mkDerivation, base, containers, directory, parallel }: 64693 mkDerivation { ··· 64738 libraryHaskellDepends = [ attoparsec base bytestring deepseq ]; 64739 description = "Haskell Library for Checking CPU Information"; 64740 license = lib.licenses.mit; 64741 }) {}; 64742 64743 "cpuperf" = callPackage ··· 65051 license = lib.licenses.bsd3; 65052 }) {}; 65053 65054 "craft" = callPackage 65055 ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, async, base 65056 , bytestring, conduit, conduit-combinators, conduit-extra ··· 65821 pname = "crypt-sha512"; 65822 version = "0"; 65823 sha256 = "1wsma9frdrn39i506zydlzlk1ir6jh1pidqfjms8rwqjpx965gn2"; 65824 - revision = "5"; 65825 - editedCabalFile = "0gyfz45izn6s7syd028bbwczp4a8qfhbkbvpir5ssfhqbql4qsv1"; 65826 libraryHaskellDepends = [ 65827 attoparsec base bytestring cryptohash-sha512 65828 ]; ··· 66491 "cryptol" = callPackage 66492 ({ mkDerivation, alex, ansi-terminal, array, async, base 66493 , base-compat, blaze-html, bv-sized, bytestring, containers 66494 - , criterion, cryptohash-sha1, deepseq, directory, exceptions 66495 , filepath, ghc-prim, gitrev, GraphSCC, happy, haskeline, heredoc 66496 - , integer-gmp, libBF, MemoTrie, monad-control, monadLib, mtl, panic 66497 - , parameterized-utils, pretty, process, random, sbv, simple-smt 66498 - , stm, strict, text, tf-random, time, transformers 66499 - , transformers-base, what4 66500 }: 66501 mkDerivation { 66502 pname = "cryptol"; 66503 - version = "2.10.0"; 66504 - sha256 = "0qzgfd0nn070rca8mdm2gi7ah9aghn1kpr3fl4dx56kbfva23yhb"; 66505 isLibrary = true; 66506 isExecutable = true; 66507 enableSeparateDataOutput = true; ··· 66515 libraryToolDepends = [ alex happy ]; 66516 executableHaskellDepends = [ 66517 ansi-terminal base base-compat blaze-html containers directory 66518 - filepath haskeline monad-control text transformers 66519 ]; 66520 benchmarkHaskellDepends = [ 66521 base criterion deepseq directory filepath sbv text ··· 67161 executableToolDepends = [ alex happy ]; 67162 description = "Implementation of Univalence in Cubical Sets"; 67163 license = lib.licenses.mit; 67164 }) {}; 67165 67166 "cubicbezier" = callPackage ··· 67445 ({ mkDerivation, base, parsec, text }: 67446 mkDerivation { 67447 pname = "curly-expander"; 67448 - version = "0.2.0.3"; 67449 - sha256 = "0sfd3vmkx74fp1yvbwwbx4rw3i1g70hcvcp205mz709r8yyhr9sb"; 67450 libraryHaskellDepends = [ base parsec text ]; 67451 testHaskellDepends = [ base parsec text ]; 67452 description = "Curly braces (brackets) expanding"; ··· 68915 libraryHaskellDepends = [ base constraints ]; 68916 description = "Define Backwards Compatibility Schemes for Arbitrary Data"; 68917 license = lib.licenses.mit; 68918 }) {}; 68919 68920 "data-concurrent-queue" = callPackage ··· 72822 pname = "dependent-sum"; 72823 version = "0.7.1.0"; 72824 sha256 = "0aj63gvak0y4mgxndykqfg5w958hf7lp5blml2z647rjgy85bjw1"; 72825 libraryHaskellDepends = [ base constraints-extras some ]; 72826 description = "Dependent sum type"; 72827 license = lib.licenses.publicDomain; ··· 73860 license = lib.licenses.bsd3; 73861 }) {}; 73862 73863 "dhall-bash" = callPackage 73864 ({ mkDerivation, base, bytestring, containers, dhall 73865 , neat-interpolation, optparse-generic, shell-escape, text ··· 73904 73905 "dhall-docs" = callPackage 73906 ({ mkDerivation, base, bytestring, containers, cryptonite, dhall 73907 - , directory, doctest, file-embed, filepath, foldl, HaXml 73908 - , lens-family-core, lucid, megaparsec, memory, mmark, mtl 73909 - , optparse-applicative, path, path-io, pretty, prettyprinter, tasty 73910 - , tasty-hunit, tasty-silver, text, transformers, turtle 73911 }: 73912 mkDerivation { 73913 pname = "dhall-docs"; 73914 - version = "1.0.4"; 73915 - sha256 = "0x6x5b9kh0in35jsgj2dghyxsqjdjrw7s9kngyjcn7v2ycklcifl"; 73916 - revision = "3"; 73917 - editedCabalFile = "116m74khdfx57ghrid1myqyj8acrhzhnjzjmxnsn3yghdan29797"; 73918 isLibrary = true; 73919 isExecutable = true; 73920 enableSeparateDataOutput = true; ··· 73926 executableHaskellDepends = [ base dhall ]; 73927 testHaskellDepends = [ 73928 base bytestring containers dhall directory doctest filepath foldl 73929 - HaXml path path-io pretty tasty tasty-hunit tasty-silver text 73930 - turtle 73931 ]; 73932 description = "Generate HTML docs from a dhall package"; 73933 license = lib.licenses.bsd3; ··· 74000 license = lib.licenses.bsd3; 74001 }) {}; 74002 74003 "dhall-lex" = callPackage 74004 ({ mkDerivation, alex, array, base, bytestring, criterion, deepseq 74005 , hspec, hspec-dirstream, scientific ··· 74050 license = lib.licenses.mit; 74051 }) {}; 74052 74053 "dhall-nix" = callPackage 74054 ({ mkDerivation, base, containers, data-fix, dhall, hnix 74055 , lens-family-core, neat-interpolation, optparse-generic, text ··· 74098 broken = true; 74099 }) {}; 74100 74101 "dhall-recursive-adt" = callPackage 74102 ({ mkDerivation, base, data-fix, dhall, either, hedgehog 74103 , neat-interpolation, recursion-schemes, tasty, tasty-hedgehog ··· 74195 ]; 74196 description = "Convert between Dhall and YAML"; 74197 license = lib.licenses.gpl3Only; 74198 }) {}; 74199 74200 "dhcp-lease-parser" = callPackage ··· 75839 ]; 75840 description = "Gemini client"; 75841 license = lib.licenses.gpl3Only; 75842 }) {}; 75843 75844 "diophantine" = callPackage ··· 76300 }: 76301 mkDerivation { 76302 pname = "discord-haskell"; 76303 - version = "1.8.3"; 76304 - sha256 = "0adpb7wzij9n5f2xxqy9j8n3rx0bjg7z1lk0p212zkygabw297mi"; 76305 isLibrary = true; 76306 isExecutable = true; 76307 libraryHaskellDepends = [ ··· 82191 broken = true; 82192 }) {}; 82193 82194 "either" = callPackage 82195 ({ mkDerivation, base, bifunctors, mtl, profunctors, QuickCheck 82196 , semigroupoids, test-framework, test-framework-quickcheck2 ··· 84866 ]; 84867 description = "Send messages to an Erlang node using Haskell"; 84868 license = "GPL"; 84869 }) {}; 84870 84871 "eros" = callPackage ··· 85412 pname = "esqueleto"; 85413 version = "3.4.1.0"; 85414 sha256 = "1nm2xdl6an140gl5cw6ij7s6i6v2xfp98m8dwbwzns75nrgmsb73"; 85415 libraryHaskellDepends = [ 85416 aeson attoparsec base blaze-html bytestring conduit containers 85417 monad-logger persistent resourcet tagged text time transformers ··· 85428 license = lib.licenses.bsd3; 85429 }) {}; 85430 85431 "ess" = callPackage 85432 ({ mkDerivation, base }: 85433 mkDerivation { ··· 85914 ]; 85915 description = "Ethereum Recursive Length Prefix Encoding"; 85916 license = lib.licenses.asl20; 85917 }) {}; 85918 85919 "eths-rlp" = callPackage ··· 86888 pname = "exceptions"; 86889 version = "0.10.4"; 86890 sha256 = "1kw4pmx7j7zwbdwm0dyn9rcs6kp4byfxy48861yxdz6gam1zn2sd"; 86891 - revision = "1"; 86892 - editedCabalFile = "0b5m01nmaqzvvm1d07b3dnmcn47pmy943lydb2m7ibhilqkfya8p"; 86893 libraryHaskellDepends = [ 86894 base mtl stm template-haskell transformers 86895 ]; ··· 87526 license = lib.licenses.bsd3; 87527 }) {}; 87528 87529 "expiring-cache-map" = callPackage 87530 ({ mkDerivation, base, bytestring, containers, hashable, time 87531 , unordered-containers ··· 87712 ({ mkDerivation, base, containers, fgl, mtl, transformers }: 87713 mkDerivation { 87714 pname = "exploring-interpreters"; 87715 - version = "0.2.0.0"; 87716 - sha256 = "1q2i68isdyc1fmxz9hcrjy8k3z8ji6xb2xrn4pc3wn0mrlnj1dka"; 87717 libraryHaskellDepends = [ base containers fgl mtl transformers ]; 87718 description = "A generic exploring interpreter for exploratory programming"; 87719 license = lib.licenses.bsd3; ··· 89158 ]; 89159 description = "Haskell bindings to the fastpbkdf2 C library"; 89160 license = lib.licenses.bsd3; 89161 }) {inherit (pkgs) openssl;}; 89162 89163 "fastsum" = callPackage ··· 89238 executableHaskellDepends = [ base mtl optparse-applicative split ]; 89239 description = "A compiler for Fay, a Haskell subset that compiles to JavaScript"; 89240 license = lib.licenses.bsd3; 89241 - hydraPlatforms = lib.platforms.none; 89242 - broken = true; 89243 }) {}; 89244 89245 "fay-base" = callPackage ··· 89252 libraryHaskellDepends = [ base fay ]; 89253 description = "The base package for Fay"; 89254 license = lib.licenses.bsd3; 89255 - hydraPlatforms = lib.platforms.none; 89256 - broken = true; 89257 }) {}; 89258 89259 "fay-builder" = callPackage ··· 89287 libraryHaskellDepends = [ fay-base ]; 89288 description = "DOM FFI wrapper library for Fay"; 89289 license = lib.licenses.bsd3; 89290 - hydraPlatforms = lib.platforms.none; 89291 - broken = true; 89292 }) {}; 89293 89294 "fay-geoposition" = callPackage ··· 89301 libraryHaskellDepends = [ fay-base fay-text ]; 89302 description = "W3C compliant implementation of GeoPosition API"; 89303 license = lib.licenses.bsd3; 89304 - hydraPlatforms = lib.platforms.none; 89305 - broken = true; 89306 }) {}; 89307 89308 "fay-hsx" = callPackage ··· 89329 libraryHaskellDepends = [ fay-base fay-text ]; 89330 description = "jQuery bindings for Fay"; 89331 license = lib.licenses.bsd3; 89332 - hydraPlatforms = lib.platforms.none; 89333 - broken = true; 89334 }) {}; 89335 89336 "fay-ref" = callPackage ··· 89343 libraryHaskellDepends = [ fay-base ]; 89344 description = "Like IORef but for Fay"; 89345 license = lib.licenses.bsd3; 89346 - hydraPlatforms = lib.platforms.none; 89347 - broken = true; 89348 }) {}; 89349 89350 "fay-simplejson" = callPackage ··· 89373 libraryHaskellDepends = [ fay fay-base text ]; 89374 description = "Fay Text type represented as JavaScript strings"; 89375 license = lib.licenses.mit; 89376 - hydraPlatforms = lib.platforms.none; 89377 - broken = true; 89378 }) {}; 89379 89380 "fay-uri" = callPackage ··· 89387 libraryHaskellDepends = [ fay-base ]; 89388 description = "Persistent FFI bindings for using jsUri in Fay"; 89389 license = lib.licenses.bsd3; 89390 - hydraPlatforms = lib.platforms.none; 89391 - broken = true; 89392 }) {}; 89393 89394 "fay-websockets" = callPackage ··· 89401 libraryHaskellDepends = [ fay-base ]; 89402 description = "Websockets FFI library for Fay"; 89403 license = lib.licenses.bsd3; 89404 - hydraPlatforms = lib.platforms.none; 89405 - broken = true; 89406 }) {}; 89407 89408 "fb" = callPackage ··· 89484 }: 89485 mkDerivation { 89486 pname = "fbrnch"; 89487 - version = "0.7.2"; 89488 - sha256 = "1xly3vjd8ylxwnc16y6hcrbg1chr4cxx60f3i3r9cyv1vrvf7l1k"; 89489 isLibrary = false; 89490 isExecutable = true; 89491 libraryHaskellDepends = [ ··· 92105 pname = "fixed-vector-hetero"; 92106 version = "0.6.0.0"; 92107 sha256 = "1gc40wh887hd6am6kjswkxn9qnzxp30ni6larnq6ghrs5zalg67r"; 92108 - revision = "1"; 92109 - editedCabalFile = "041rz3cd2yi2k49crcbrqq1vkr4g6m5mczf2qik2avj124krq77f"; 92110 setupHaskellDepends = [ base Cabal cabal-doctest ]; 92111 libraryHaskellDepends = [ base deepseq fixed-vector primitive ]; 92112 testHaskellDepends = [ base doctest fixed-vector ]; 92113 description = "Library for working with product types generically"; 92114 license = lib.licenses.bsd3; 92115 }) {}; 92116 92117 "fixed-width" = callPackage ··· 92402 ]; 92403 description = "Verify FLAC files ripped form CD using AccurateRip™"; 92404 license = lib.licenses.gpl3Only; 92405 }) {}; 92406 92407 "flags-applicative" = callPackage ··· 92611 }: 92612 mkDerivation { 92613 pname = "flatparse"; 92614 - version = "0.1.1.1"; 92615 - sha256 = "19k1336hf23n440bk5fjw296bs7kqccfa4mhl4wsvfvbsyrzlp09"; 92616 libraryHaskellDepends = [ 92617 base bytestring containers template-haskell 92618 ]; ··· 93796 }: 93797 mkDerivation { 93798 pname = "foldl-transduce"; 93799 - version = "0.6.0.0"; 93800 - sha256 = "177ar0c66lzp5rnnpbia0v3ri9aspc97qnj9yjwh3bz2drn01q0y"; 93801 libraryHaskellDepends = [ 93802 base bifunctors bytestring comonad containers foldl free 93803 monoid-subclasses profunctors semigroupoids semigroups split text ··· 94200 broken = true; 94201 }) {}; 94202 94203 "forger" = callPackage 94204 ({ mkDerivation, base }: 94205 mkDerivation { ··· 94373 license = lib.licenses.bsd3; 94374 }) {}; 94375 94376 - "formatting_7_1_1" = callPackage 94377 - ({ mkDerivation, base, clock, double-conversion, ghc-prim, hspec 94378 - , integer-gmp, old-locale, scientific, text, time, transformers 94379 }: 94380 mkDerivation { 94381 pname = "formatting"; 94382 - version = "7.1.1"; 94383 - sha256 = "1abqyd2k46vrr8xxk6sgcjfm8h7x3d2hk11p8kypi85zplab4rsp"; 94384 libraryHaskellDepends = [ 94385 - base clock double-conversion ghc-prim integer-gmp old-locale 94386 - scientific text time transformers 94387 ]; 94388 - testHaskellDepends = [ 94389 - base clock double-conversion ghc-prim hspec integer-gmp old-locale 94390 - scientific text time transformers 94391 ]; 94392 description = "Combinator-based type-safe formatting (like printf() or FORMAT)"; 94393 license = lib.licenses.bsd3; ··· 94563 ]; 94564 testToolDepends = [ hspec-discover ]; 94565 description = "Parsers and analyses for Fortran standards 66, 77, 90 and 95"; 94566 license = lib.licenses.asl20; 94567 hydraPlatforms = lib.platforms.none; 94568 broken = true; ··· 95172 }: 95173 mkDerivation { 95174 pname = "free-category"; 95175 - version = "0.0.4.2"; 95176 - sha256 = "1nnf7y0m5pv36ka54vmfbhj6v0354gk36r539ss4zzp6jc8mzvdl"; 95177 libraryHaskellDepends = [ base free-algebras ]; 95178 testHaskellDepends = [ 95179 base free-algebras QuickCheck tasty tasty-quickcheck ··· 96380 testHaskellDepends = [ base bytestring tasty tasty-hspec ]; 96381 description = "Transfer files with FTP and FTPS"; 96382 license = lib.licenses.publicDomain; 96383 }) {}; 96384 96385 "ftp-client-conduit" = callPackage ··· 96396 testHaskellDepends = [ base ]; 96397 description = "Transfer file with FTP and FTPS with Conduit"; 96398 license = lib.licenses.publicDomain; 96399 }) {}; 96400 96401 "ftp-conduit" = callPackage ··· 96684 }) {}; 96685 96686 "funcons-tools" = callPackage 96687 - ({ mkDerivation, base, bv, containers, directory, funcons-values 96688 - , gll, mtl, multiset, random-strings, regex-applicative, split 96689 - , text, TypeCompose, vector 96690 }: 96691 mkDerivation { 96692 pname = "funcons-tools"; 96693 - version = "0.2.0.9"; 96694 - sha256 = "0k3560521kf1krj5j1wgbcipqcnvjq3igb9fymfdsswwqr1wpx67"; 96695 - revision = "1"; 96696 - editedCabalFile = "0h68688dy1x2wj5m5gi5lc3xhskzpdnfqfk3i4bzkxvh87mak7l4"; 96697 isLibrary = true; 96698 isExecutable = true; 96699 libraryHaskellDepends = [ 96700 - base bv containers directory funcons-values gll mtl multiset 96701 - random-strings regex-applicative split text TypeCompose vector 96702 ]; 96703 executableHaskellDepends = [ 96704 - base bv containers directory funcons-values gll mtl multiset 96705 - random-strings regex-applicative split text TypeCompose vector 96706 ]; 96707 description = "A modular interpreter for executing funcons"; 96708 license = lib.licenses.mit; ··· 97132 }) {}; 97133 97134 "fused-effects" = callPackage 97135 - ({ mkDerivation, base, containers, gauge, hedgehog, hedgehog-fn 97136 - , inspection-testing, markdown-unlit, tasty, tasty-hedgehog 97137 - , tasty-hunit, transformers 97138 }: 97139 mkDerivation { 97140 pname = "fused-effects"; 97141 - version = "1.1.1.0"; 97142 - sha256 = "0z83iw3bysfk13pda44lasgyg3nlnrxv6bz1f9mpdyymq3vnb9d7"; 97143 libraryHaskellDepends = [ base transformers ]; 97144 testHaskellDepends = [ 97145 - base containers hedgehog hedgehog-fn inspection-testing tasty 97146 - tasty-hedgehog tasty-hunit transformers 97147 ]; 97148 testToolDepends = [ markdown-unlit ]; 97149 - benchmarkHaskellDepends = [ base gauge transformers ]; 97150 description = "A fast, flexible, fused effect system"; 97151 license = lib.licenses.bsd3; 97152 }) {}; ··· 97348 }: 97349 mkDerivation { 97350 pname = "futhark"; 97351 - version = "0.19.2"; 97352 - sha256 = "0pkb9yqvfbahmq3lmp7ia0c4sfzx1cghnhk4b7z41xbf20qcakrx"; 97353 isLibrary = true; 97354 isExecutable = true; 97355 libraryHaskellDepends = [ ··· 97695 libraryHaskellDepends = [ base bytestring serialport ]; 97696 description = "Interface to the FXPak/FXPak Pro USB interface"; 97697 license = lib.licenses.bsd3; 97698 }) {}; 97699 97700 "g-npm" = callPackage ··· 98653 }) {}; 98654 98655 "gemini-textboard" = callPackage 98656 - ({ mkDerivation, base, cache, clock, gemini-router, gemini-server 98657 - , language-gemini, network-uri, nonce, sqlite-simple, text, time 98658 - , transformers 98659 }: 98660 mkDerivation { 98661 pname = "gemini-textboard"; 98662 - version = "0.1.0.0"; 98663 - sha256 = "1z8nkrkar4das4kpgsg03hsgg3i5y2639h7sik8cjdvyvwi8dpsn"; 98664 - revision = "1"; 98665 - editedCabalFile = "1h1fxigslzpbsjskrdaqa3gd063r4c7z6vvwaa6dk5d3mf67dbwq"; 98666 isLibrary = false; 98667 isExecutable = true; 98668 executableHaskellDepends = [ 98669 - base cache clock gemini-router gemini-server language-gemini 98670 - network-uri nonce sqlite-simple text time transformers 98671 ]; 98672 description = "A barebones textboard for the Gemini protocol"; 98673 license = lib.licenses.bsd3; ··· 98862 }: 98863 mkDerivation { 98864 pname = "generic-accessors"; 98865 - version = "0.7.0.0"; 98866 - sha256 = "0jvrwjry0kgw27qhnqxm5zvpks69cvvj0iz1ipvdsd5hi16dxarb"; 98867 libraryHaskellDepends = [ 98868 base binary cereal lens linear spatial-math TypeCompose 98869 ]; ··· 98892 license = lib.licenses.bsd3; 98893 }) {}; 98894 98895 "generic-arbitrary" = callPackage 98896 ({ mkDerivation, base, QuickCheck }: 98897 mkDerivation { ··· 100113 ]; 100114 description = "GenValidity support for Persistent"; 100115 license = lib.licenses.mit; 100116 }) {}; 100117 100118 "genvalidity-property" = callPackage ··· 100795 license = lib.licenses.bsd3; 100796 }) {}; 100797 100798 - "ghc-boot_8_8_3" = callPackage 100799 - ({ mkDerivation, base, binary, bytestring, directory, filepath 100800 - , ghc-boot-th 100801 }: 100802 mkDerivation { 100803 pname = "ghc-boot"; 100804 - version = "8.8.3"; 100805 - sha256 = "0h4nayld1qa08aly5y3z91z4n778g25s92fggvcxga8bxs49sh50"; 100806 - revision = "1"; 100807 - editedCabalFile = "0rzc0759sy8n7dp4csy464vb8kvaapzvxzjr1scmwh2gk9v3s1lk"; 100808 libraryHaskellDepends = [ 100809 - base binary bytestring directory filepath ghc-boot-th 100810 ]; 100811 description = "Shared functionality between GHC and its boot libraries"; 100812 license = lib.licenses.bsd3; 100813 hydraPlatforms = lib.platforms.none; 100814 }) {}; 100815 100816 - "ghc-boot-th_8_10_2" = callPackage 100817 ({ mkDerivation, base }: 100818 mkDerivation { 100819 pname = "ghc-boot-th"; 100820 - version = "8.10.2"; 100821 - sha256 = "1jic3l319b02f8b4r87c48645xhn5784vhgz2mp7d0zi2srrsfcz"; 100822 libraryHaskellDepends = [ base ]; 100823 - description = "Shared functionality between GHC and the `template-haskell` library"; 100824 license = lib.licenses.bsd3; 100825 hydraPlatforms = lib.platforms.none; 100826 }) {}; ··· 101163 broken = true; 101164 }) {}; 101165 101166 "ghc-heap-view" = callPackage 101167 ({ mkDerivation, base, binary, bytestring, Cabal, containers 101168 , deepseq, filepath, ghc-heap, template-haskell, transformers ··· 101288 license = lib.licenses.bsd3; 101289 }) {}; 101290 101291 - "ghc-lib_9_0_1_20210207" = callPackage 101292 ({ mkDerivation, alex, array, base, binary, bytestring, containers 101293 , deepseq, directory, exceptions, filepath, ghc-lib-parser 101294 , ghc-prim, happy, hpc, pretty, process, time, transformers, unix 101295 }: 101296 mkDerivation { 101297 pname = "ghc-lib"; 101298 - version = "9.0.1.20210207"; 101299 - sha256 = "1fi62pq18s63w4y6xrjq9zlcra8dk5xqjax8kyyvfrjaaxqci8qk"; 101300 enableSeparateDataOutput = true; 101301 libraryHaskellDepends = [ 101302 array base binary bytestring containers deepseq directory ··· 101328 license = lib.licenses.bsd3; 101329 }) {}; 101330 101331 - "ghc-lib-parser_9_0_1_20210207" = callPackage 101332 ({ mkDerivation, alex, array, base, binary, bytestring, containers 101333 , deepseq, directory, exceptions, filepath, ghc-prim, happy, hpc 101334 , pretty, process, time, transformers, unix 101335 }: 101336 mkDerivation { 101337 pname = "ghc-lib-parser"; 101338 - version = "9.0.1.20210207"; 101339 - sha256 = "1gikdcgcgw1paxs5igxgxdfvpjp23963f6vn83m0a6vr88n2haah"; 101340 - revision = "1"; 101341 - editedCabalFile = "1fkh3xc2pq4k0mz1x92xhby5sqamfsnfm4rlq38p5shybkan7qgl"; 101342 enableSeparateDataOutput = true; 101343 libraryHaskellDepends = [ 101344 array base binary bytestring containers deepseq directory ··· 101612 broken = true; 101613 }) {}; 101614 101615 - "ghc-prim_0_6_1" = callPackage 101616 - ({ mkDerivation, rts }: 101617 mkDerivation { 101618 pname = "ghc-prim"; 101619 - version = "0.6.1"; 101620 - sha256 = "06nc87f4mcqcddllysb75qj942y5mmdwss7h9z3m0m93lbxxy6a2"; 101621 libraryHaskellDepends = [ rts ]; 101622 description = "GHC primitives"; 101623 license = lib.licenses.bsd3; 101624 hydraPlatforms = lib.platforms.none; 101625 - }) {}; 101626 101627 "ghc-prof" = callPackage 101628 ({ mkDerivation, attoparsec, base, containers, directory, filepath ··· 102788 license = lib.licenses.lgpl21Only; 102789 }) {inherit (pkgs) atk;}; 102790 102791 "gi-cairo" = callPackage 102792 ({ mkDerivation, base, bytestring, Cabal, cairo, containers 102793 , haskell-gi, haskell-gi-base, haskell-gi-overloading, text ··· 102811 license = lib.licenses.lgpl21Only; 102812 }) {inherit (pkgs) cairo;}; 102813 102814 "gi-cairo-again" = callPackage 102815 ({ mkDerivation, base, cairo-core, haskell-gi-base 102816 , template-haskell ··· 102879 license = lib.licenses.lgpl21Only; 102880 }) {inherit (pkgs) libdbusmenu;}; 102881 102882 "gi-dbusmenugtk3" = callPackage 102883 ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk 102884 , gi-dbusmenu, gi-gdk, gi-gdkpixbuf, gi-glib, gi-gobject, gi-gtk ··· 102903 license = lib.licenses.lgpl21Only; 102904 }) {inherit (pkgs) gtk3; inherit (pkgs) libdbusmenu-gtk3;}; 102905 102906 "gi-gdk" = callPackage 102907 ({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo 102908 , gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango, gtk3 ··· 102927 license = lib.licenses.lgpl21Only; 102928 }) {inherit (pkgs) gtk3;}; 102929 102930 - "gi-gdk_4_0_2" = callPackage 102931 ({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo 102932 , gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango, gtk4 102933 , haskell-gi, haskell-gi-base, haskell-gi-overloading, text ··· 102935 }: 102936 mkDerivation { 102937 pname = "gi-gdk"; 102938 - version = "4.0.2"; 102939 - sha256 = "0271n81jqwcl7g0li4yv6x42jkcmx4cjs2b6b60g1mz0qq8klhbn"; 102940 setupHaskellDepends = [ 102941 base Cabal gi-cairo gi-gdkpixbuf gi-gio gi-glib gi-gobject gi-pango 102942 haskell-gi ··· 102973 license = lib.licenses.lgpl21Only; 102974 }) {inherit (pkgs) gdk-pixbuf;}; 102975 102976 "gi-gdkx11" = callPackage 102977 ({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo 102978 , gi-gdk, gi-gio, gi-gobject, gi-xlib, gtk3, haskell-gi ··· 102995 license = lib.licenses.lgpl21Only; 102996 }) {inherit (pkgs) gtk3;}; 102997 102998 - "gi-gdkx11_4_0_2" = callPackage 102999 ({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo 103000 , gi-gdk, gi-gio, gi-gobject, gi-xlib, gtk4-x11, haskell-gi 103001 , haskell-gi-base, haskell-gi-overloading, text, transformers 103002 }: 103003 mkDerivation { 103004 pname = "gi-gdkx11"; 103005 - version = "4.0.2"; 103006 - sha256 = "1z510v5p515i2fyd5kjxcfnyf5lsd0kzgzsnnqw4km186b241fc5"; 103007 setupHaskellDepends = [ 103008 base Cabal gi-cairo gi-gdk gi-gio gi-gobject gi-xlib haskell-gi 103009 ]; ··· 103039 license = lib.licenses.lgpl21Only; 103040 }) {inherit (pkgs) libgit2-glib;}; 103041 103042 "gi-gio" = callPackage 103043 ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib 103044 , gi-gobject, glib, haskell-gi, haskell-gi-base ··· 103058 license = lib.licenses.lgpl21Only; 103059 }) {inherit (pkgs) glib;}; 103060 103061 "gi-girepository" = callPackage 103062 ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib 103063 , gi-gobject, gobject-introspection, haskell-gi, haskell-gi-base ··· 103077 license = lib.licenses.lgpl21Only; 103078 }) {inherit (pkgs) gobject-introspection;}; 103079 103080 "gi-glib" = callPackage 103081 ({ mkDerivation, base, bytestring, Cabal, containers, glib 103082 , haskell-gi, haskell-gi-base, haskell-gi-overloading, text ··· 103096 license = lib.licenses.lgpl21Only; 103097 }) {inherit (pkgs) glib;}; 103098 103099 "gi-gobject" = callPackage 103100 ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib, glib 103101 , haskell-gi, haskell-gi-base, haskell-gi-overloading, text ··· 103115 license = lib.licenses.lgpl21Only; 103116 }) {inherit (pkgs) glib;}; 103117 103118 "gi-graphene" = callPackage 103119 ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib 103120 , gi-gobject, graphene-gobject, haskell-gi, haskell-gi-base ··· 103136 broken = true; 103137 }) {graphene-gobject = null;}; 103138 103139 "gi-gsk" = callPackage 103140 ({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo 103141 - , gi-gdk, gi-glib, gi-gobject, gi-graphene, gi-pango, gtk4 103142 - , haskell-gi, haskell-gi-base, haskell-gi-overloading, text 103143 , transformers 103144 }: 103145 mkDerivation { 103146 pname = "gi-gsk"; 103147 - version = "4.0.2"; 103148 - sha256 = "1jc5jxni87zg475rgjrxv85rpyr20bwxdyfjw060dx4gvnyhxnfs"; 103149 setupHaskellDepends = [ 103150 - base Cabal gi-cairo gi-gdk gi-glib gi-gobject gi-graphene gi-pango 103151 - haskell-gi 103152 ]; 103153 libraryHaskellDepends = [ 103154 - base bytestring containers gi-cairo gi-gdk gi-glib gi-gobject 103155 - gi-graphene gi-pango haskell-gi haskell-gi-base 103156 haskell-gi-overloading text transformers 103157 ]; 103158 libraryPkgconfigDepends = [ gtk4 ]; ··· 103181 license = lib.licenses.lgpl21Only; 103182 }) {inherit (pkgs.gst_all_1) gstreamer;}; 103183 103184 "gi-gstaudio" = callPackage 103185 ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib 103186 , gi-gobject, gi-gst, gi-gstbase, gst-plugins-base, haskell-gi ··· 103188 }: 103189 mkDerivation { 103190 pname = "gi-gstaudio"; 103191 - version = "1.0.22"; 103192 - sha256 = "17x0nmzawr9mqfjjbgk9s35102y4nsvxym9hwgwhh88ijnbhshhs"; 103193 setupHaskellDepends = [ 103194 base Cabal gi-glib gi-gobject gi-gst gi-gstbase haskell-gi 103195 ]; ··· 103225 license = lib.licenses.lgpl21Only; 103226 }) {inherit (pkgs.gst_all_1) gst-plugins-base;}; 103227 103228 "gi-gstpbutils" = callPackage 103229 ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib 103230 , gi-gobject, gi-gst, gi-gstaudio, gi-gsttag, gi-gstvideo ··· 103233 }: 103234 mkDerivation { 103235 pname = "gi-gstpbutils"; 103236 - version = "1.0.22"; 103237 - sha256 = "1kq86zc9rcla6xhgi0vf32y6bs3adi5xgkpknld6zl4dq7s70plk"; 103238 setupHaskellDepends = [ 103239 base Cabal gi-glib gi-gobject gi-gst gi-gstaudio gi-gsttag 103240 gi-gstvideo haskell-gi ··· 103258 }: 103259 mkDerivation { 103260 pname = "gi-gsttag"; 103261 - version = "1.0.22"; 103262 - sha256 = "0jpqj5kggg2ahvbrnmacjk6n9zg31v0klybkygz4i6i4d6absvf6"; 103263 setupHaskellDepends = [ 103264 base Cabal gi-glib gi-gobject gi-gst gi-gstbase haskell-gi 103265 ]; ··· 103295 license = lib.licenses.lgpl21Only; 103296 }) {inherit (pkgs.gst_all_1) gst-plugins-base;}; 103297 103298 "gi-gtk" = callPackage 103299 ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk 103300 , gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject ··· 103319 license = lib.licenses.lgpl21Only; 103320 }) {inherit (pkgs) gtk3;}; 103321 103322 - "gi-gtk_4_0_3" = callPackage 103323 ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk 103324 , gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject 103325 , gi-graphene, gi-gsk, gi-pango, gtk4, haskell-gi, haskell-gi-base ··· 103327 }: 103328 mkDerivation { 103329 pname = "gi-gtk"; 103330 - version = "4.0.3"; 103331 - sha256 = "1zfqnjnzlrry7cbrzfamrh5465h06y6px0b1xh1yz7iaacg0739z"; 103332 setupHaskellDepends = [ 103333 base Cabal gi-atk gi-cairo gi-gdk gi-gdkpixbuf gi-gio gi-glib 103334 gi-gobject gi-graphene gi-gsk gi-pango haskell-gi ··· 103366 ]; 103367 description = "Declarative GTK+ programming in Haskell"; 103368 license = lib.licenses.mpl20; 103369 - hydraPlatforms = lib.platforms.none; 103370 - broken = true; 103371 }) {}; 103372 103373 "gi-gtk-declarative-app-simple" = callPackage ··· 103389 ]; 103390 description = "Declarative GTK+ programming in Haskell in the style of Pux"; 103391 license = lib.licenses.mpl20; 103392 - hydraPlatforms = lib.platforms.none; 103393 - broken = true; 103394 }) {}; 103395 103396 "gi-gtk-hs" = callPackage ··· 103408 ]; 103409 description = "A wrapper for gi-gtk, adding a few more idiomatic API parts on top"; 103410 license = lib.licenses.lgpl21Only; 103411 }) {}; 103412 103413 "gi-gtkosxapplication" = callPackage ··· 103483 license = lib.licenses.lgpl21Only; 103484 }) {inherit (pkgs) gtksourceview3;}; 103485 103486 "gi-handy" = callPackage 103487 ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk 103488 , gi-gdk, gi-gio, gi-glib, gi-gobject, gi-gtk, gi-pango, haskell-gi ··· 103491 }: 103492 mkDerivation { 103493 pname = "gi-handy"; 103494 - version = "0.0.7"; 103495 - sha256 = "0vdmby4wzxzhy9cbpi6i29r2ywq75ndcjpra3nvkavp91ba1y1c1"; 103496 setupHaskellDepends = [ 103497 base Cabal gi-atk gi-gdk gi-gio gi-glib gi-gobject gi-gtk gi-pango 103498 haskell-gi ··· 103528 license = lib.licenses.lgpl21Only; 103529 }) {inherit (pkgs) harfbuzz; harfbuzz-gobject = null;}; 103530 103531 "gi-ibus" = callPackage 103532 ({ mkDerivation, base, bytestring, Cabal, containers, gi-gio 103533 , gi-glib, gi-gobject, haskell-gi, haskell-gi-base ··· 103549 license = lib.licenses.lgpl21Only; 103550 }) {inherit (pkgs) ibus;}; 103551 103552 "gi-javascriptcore" = callPackage 103553 ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib 103554 , gi-gobject, haskell-gi, haskell-gi-base, haskell-gi-overloading ··· 103569 hydraPlatforms = lib.platforms.none; 103570 }) {inherit (pkgs) webkitgtk;}; 103571 103572 "gi-notify" = callPackage 103573 ({ mkDerivation, base, bytestring, Cabal, containers, gi-gdkpixbuf 103574 , gi-glib, gi-gobject, haskell-gi, haskell-gi-base ··· 103590 license = lib.licenses.lgpl21Only; 103591 }) {inherit (pkgs) libnotify;}; 103592 103593 "gi-ostree" = callPackage 103594 ({ mkDerivation, base, bytestring, Cabal, containers, gi-gio 103595 , gi-glib, gi-gobject, haskell-gi, haskell-gi-base ··· 103614 ]; 103615 }) {inherit (pkgs) ostree;}; 103616 103617 "gi-pango" = callPackage 103618 ({ mkDerivation, base, bytestring, Cabal, cairo, containers 103619 , gi-glib, gi-gobject, gi-harfbuzz, haskell-gi, haskell-gi-base ··· 103639 license = lib.licenses.lgpl21Only; 103640 }) {inherit (pkgs) cairo; inherit (pkgs) pango;}; 103641 103642 "gi-pangocairo" = callPackage 103643 ({ mkDerivation, base, bytestring, Cabal, cairo, containers 103644 , gi-cairo, gi-glib, gi-gobject, gi-pango, haskell-gi ··· 103665 license = lib.licenses.lgpl21Only; 103666 }) {inherit (pkgs) cairo; inherit (pkgs) pango;}; 103667 103668 "gi-poppler" = callPackage 103669 ({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo 103670 , gi-gio, gi-glib, gi-gobject, haskell-gi, haskell-gi-base ··· 103672 }: 103673 mkDerivation { 103674 pname = "gi-poppler"; 103675 - version = "0.18.24"; 103676 - sha256 = "1n69xzw5w3y27x0vz4i4hi7ypr714ilj9i985ym713kvdfdyz12g"; 103677 setupHaskellDepends = [ 103678 base Cabal gi-cairo gi-gio gi-glib gi-gobject haskell-gi 103679 ]; ··· 103709 license = lib.licenses.lgpl21Only; 103710 }) {inherit (pkgs) libsecret;}; 103711 103712 "gi-soup" = callPackage 103713 ({ mkDerivation, base, bytestring, Cabal, containers, gi-gio 103714 , gi-glib, gi-gobject, haskell-gi, haskell-gi-base ··· 103728 libraryPkgconfigDepends = [ libsoup ]; 103729 description = "Libsoup bindings"; 103730 license = lib.licenses.lgpl21Only; 103731 }) {inherit (pkgs) libsoup;}; 103732 103733 "gi-vte" = callPackage ··· 103754 license = lib.licenses.lgpl21Only; 103755 }) {vte_291 = pkgs.vte;}; 103756 103757 "gi-webkit" = callPackage 103758 ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk 103759 , gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject ··· 103802 hydraPlatforms = lib.platforms.none; 103803 }) {inherit (pkgs) webkitgtk;}; 103804 103805 "gi-webkit2webextension" = callPackage 103806 ({ mkDerivation, base, bytestring, Cabal, containers, gi-gio 103807 , gi-gobject, gi-gtk, gi-javascriptcore, gi-soup, haskell-gi ··· 103810 }: 103811 mkDerivation { 103812 pname = "gi-webkit2webextension"; 103813 - version = "4.0.25"; 103814 - sha256 = "0vdzhnaj6d03cgxz3i886cahkfhl8xgcrm37wdcxqydkxx2ybh6h"; 103815 setupHaskellDepends = [ 103816 base Cabal gi-gio gi-gobject gi-gtk gi-javascriptcore gi-soup 103817 haskell-gi ··· 103835 }: 103836 mkDerivation { 103837 pname = "gi-wnck"; 103838 - version = "3.0.9"; 103839 - sha256 = "1cy1nzld3220rg0f1gzr5cw756s5vm9las8p8xyqhjmk3awy0cbp"; 103840 setupHaskellDepends = [ 103841 base Cabal gi-atk gi-gdk gi-gdkpixbuf gi-gobject gi-gtk haskell-gi 103842 ]; ··· 103869 libraryPkgconfigDepends = [ xlibsWrapper ]; 103870 description = "xlib bindings"; 103871 license = lib.licenses.lgpl21Only; 103872 }) {inherit (pkgs) xlibsWrapper;}; 103873 103874 "giak" = callPackage ··· 104139 }: 104140 mkDerivation { 104141 pname = "git-annex"; 104142 - version = "8.20210310"; 104143 - sha256 = "1a4pr9z2li3wns1xycz7735nzzsv3cs8milr0q74k5qcqk5f22nx"; 104144 configureFlags = [ 104145 "-fassistant" "-f-benchmark" "-fdbus" "-f-debuglocks" "-fmagicmime" 104146 "-fnetworkbsd" "-fpairing" "-fproduction" "-fs3" "-ftorrentparser" ··· 105047 }: 105048 mkDerivation { 105049 pname = "gitlib"; 105050 - version = "3.1.2"; 105051 - sha256 = "1r973cpkp4h8dfjrkqgyy31a3x4bbqi7zhpck09ix2a9i597b345"; 105052 - revision = "1"; 105053 - editedCabalFile = "09v2acn2cxagyfnn7914faz9nzzi2j48w8v55lj1fxwgspc44w8g"; 105054 libraryHaskellDepends = [ 105055 base base16-bytestring bytestring conduit conduit-combinators 105056 containers directory exceptions filepath hashable mtl resourcet ··· 110529 broken = true; 110530 }) {}; 110531 110532 "graphql-utils" = callPackage 110533 ({ mkDerivation, aeson, aeson-helper, base, graphql, text 110534 , unordered-containers, vector ··· 111312 ]; 111313 description = "MySQL backend for the groundhog library"; 111314 license = lib.licenses.bsd3; 111315 }) {}; 111316 111317 "groundhog-postgresql" = callPackage ··· 114068 testToolDepends = [ hspec-discover ]; 114069 description = "Hackage and Portage integration tool"; 114070 license = "GPL"; 114071 }) {}; 114072 114073 "hactor" = callPackage ··· 114331 }) {}; 114332 114333 "hadolint" = callPackage 114334 - ({ mkDerivation, aeson, async, base, bytestring, colourista 114335 - , containers, cryptonite, deepseq, directory, filepath, gitrev 114336 - , hspec, HsYAML, HUnit, ilist, language-docker, megaparsec, mtl 114337 - , optparse-applicative, parallel, ShellCheck, split, text, void 114338 }: 114339 mkDerivation { 114340 pname = "hadolint"; 114341 - version = "1.23.0"; 114342 - sha256 = "09aaxdi1g199cgaxvv5v2cynvd8rm91mnpaw2a5ppbzc7cgh6rca"; 114343 isLibrary = true; 114344 isExecutable = true; 114345 libraryHaskellDepends = [ 114346 - aeson async base bytestring colourista containers cryptonite 114347 - deepseq directory filepath HsYAML ilist language-docker megaparsec 114348 - mtl parallel ShellCheck split text void 114349 ]; 114350 executableHaskellDepends = [ 114351 base containers gitrev language-docker megaparsec 114352 optparse-applicative text 114353 ]; 114354 testHaskellDepends = [ 114355 - aeson base bytestring hspec HsYAML HUnit language-docker megaparsec 114356 - ShellCheck split text 114357 ]; 114358 description = "Dockerfile Linter JavaScript API"; 114359 license = lib.licenses.gpl3Only; ··· 115159 }: 115160 mkDerivation { 115161 pname = "hakyll-filestore"; 115162 - version = "0.1.8"; 115163 - sha256 = "02lza2nkq2y2m9zb03ipmgd0cnfjv38cyym7jbakg7v8arkymcrc"; 115164 libraryHaskellDepends = [ 115165 base filestore hakyll time time-locale-compat 115166 ]; ··· 115445 }: 115446 mkDerivation { 115447 pname = "halive"; 115448 - version = "0.1.6"; 115449 - sha256 = "19mlbl8psb5gxw6xsgiw5kxw4fvmfl552acalj05s6h9gsl4hcnh"; 115450 isLibrary = true; 115451 isExecutable = true; 115452 libraryHaskellDepends = [ ··· 116110 testToolDepends = [ hspec-discover ]; 116111 description = "A deployment library for Haskell applications"; 116112 license = lib.licenses.mit; 116113 }) {}; 116114 116115 "happindicator" = callPackage ··· 118709 license = lib.licenses.lgpl21Only; 118710 }) {inherit (pkgs) glib; inherit (pkgs) gobject-introspection;}; 118711 118712 "haskell-gi-base" = callPackage 118713 ({ mkDerivation, base, bytestring, containers, glib, text }: 118714 mkDerivation { ··· 118719 libraryPkgconfigDepends = [ glib ]; 118720 description = "Foundation for libraries generated by haskell-gi"; 118721 license = lib.licenses.lgpl21Only; 118722 }) {inherit (pkgs) glib;}; 118723 118724 "haskell-gi-overloading" = callPackage ··· 118952 license = lib.licenses.mit; 118953 }) {}; 118954 118955 - "haskell-lsp_0_23_0_0" = callPackage 118956 - ({ mkDerivation, aeson, async, attoparsec, base, bytestring 118957 - , containers, data-default, directory, filepath, hashable 118958 - , haskell-lsp-types, hslogger, hspec, hspec-discover, lens, mtl 118959 - , network-uri, QuickCheck, quickcheck-instances, rope-utf16-splay 118960 - , sorted-list, stm, temporary, text, time, unordered-containers 118961 - }: 118962 - mkDerivation { 118963 - pname = "haskell-lsp"; 118964 - version = "0.23.0.0"; 118965 - sha256 = "07vyfqqvgaxg06yrawiwfffv511jlamhh4p7i0hwx60xdgpg11xh"; 118966 - isLibrary = true; 118967 - isExecutable = true; 118968 - libraryHaskellDepends = [ 118969 - aeson async attoparsec base bytestring containers data-default 118970 - directory filepath hashable haskell-lsp-types hslogger lens mtl 118971 - network-uri rope-utf16-splay sorted-list stm temporary text time 118972 - unordered-containers 118973 - ]; 118974 - testHaskellDepends = [ 118975 - aeson base bytestring containers data-default directory filepath 118976 - hashable hspec lens network-uri QuickCheck quickcheck-instances 118977 - rope-utf16-splay sorted-list stm text unordered-containers 118978 - ]; 118979 - testToolDepends = [ hspec-discover ]; 118980 - description = "Haskell library for the Microsoft Language Server Protocol"; 118981 - license = lib.licenses.mit; 118982 - hydraPlatforms = lib.platforms.none; 118983 - }) {}; 118984 - 118985 "haskell-lsp_0_24_0_0" = callPackage 118986 ({ mkDerivation, aeson, async, attoparsec, base, bytestring 118987 , containers, data-default, directory, filepath, hashable ··· 119049 ]; 119050 description = "Haskell library for the Microsoft Language Server Protocol, data types"; 119051 license = lib.licenses.mit; 119052 - }) {}; 119053 - 119054 - "haskell-lsp-types_0_23_0_0" = callPackage 119055 - ({ mkDerivation, aeson, base, binary, bytestring, data-default 119056 - , deepseq, filepath, hashable, lens, network-uri, scientific, text 119057 - , unordered-containers 119058 - }: 119059 - mkDerivation { 119060 - pname = "haskell-lsp-types"; 119061 - version = "0.23.0.0"; 119062 - sha256 = "0dz0980681khfn229aky3bsclj86xkril2y0ln3wr7g9v77ypbq7"; 119063 - libraryHaskellDepends = [ 119064 - aeson base binary bytestring data-default deepseq filepath hashable 119065 - lens network-uri scientific text unordered-containers 119066 - ]; 119067 - description = "Haskell library for the Microsoft Language Server Protocol, data types"; 119068 - license = lib.licenses.mit; 119069 - hydraPlatforms = lib.platforms.none; 119070 }) {}; 119071 119072 "haskell-lsp-types_0_24_0_0" = callPackage ··· 119186 ]; 119187 description = "Name resolution library for Haskell"; 119188 license = lib.licenses.bsd3; 119189 }) {}; 119190 119191 "haskell-neo4j-client" = callPackage ··· 121211 }: 121212 mkDerivation { 121213 pname = "haskoin-store"; 121214 - version = "0.51.0"; 121215 - sha256 = "0wgf4j28f3g8anm6xpi0qn1as8lw7b6gwsp92xpc0f2yvv38gm4d"; 121216 isLibrary = true; 121217 isExecutable = true; 121218 libraryHaskellDepends = [ ··· 121258 }: 121259 mkDerivation { 121260 pname = "haskoin-store-data"; 121261 - version = "0.51.0"; 121262 - sha256 = "12p8caxi77hqy420bix3h3a427m5hq4vwwwgf1g4cmava7c0p7wq"; 121263 libraryHaskellDepends = [ 121264 aeson base binary bytes bytestring cereal containers data-default 121265 deepseq hashable haskoin-core http-client http-types lens mtl ··· 122091 benchmarkHaskellDepends = [ base criterion directory text ]; 122092 description = "CSS Minifier"; 122093 license = lib.licenses.bsd3; 122094 }) {}; 122095 122096 "hasparql-client" = callPackage ··· 122146 license = lib.licenses.mit; 122147 }) {}; 122148 122149 "hasql-backend" = callPackage 122150 ({ mkDerivation, base, base-prelude, bytestring, either, free 122151 , list-t, text, transformers, vector ··· 122331 license = lib.licenses.bsd3; 122332 }) {}; 122333 122334 "hasql-optparse-applicative" = callPackage 122335 ({ mkDerivation, base-prelude, hasql, hasql-pool 122336 , optparse-applicative ··· 122516 testHaskellDepends = [ async hasql rebase ]; 122517 description = "Composable abstraction over retryable transactions for Hasql"; 122518 license = lib.licenses.mit; 122519 }) {}; 122520 122521 "hasql-url" = callPackage ··· 124400 }) {}; 124401 124402 "heaps" = callPackage 124403 - ({ mkDerivation, base }: 124404 - mkDerivation { 124405 - pname = "heaps"; 124406 - version = "0.3.6.1"; 124407 - sha256 = "0vg39qm8g69n10ys9v9knnaq5dqdjndj6ffy0xb78bwrr3rm5mci"; 124408 - libraryHaskellDepends = [ base ]; 124409 - description = "Asymptotically optimal Brodal/Okasaki heaps"; 124410 - license = lib.licenses.bsd3; 124411 - }) {}; 124412 - 124413 - "heaps_0_4" = callPackage 124414 ({ mkDerivation, base }: 124415 mkDerivation { 124416 pname = "heaps"; ··· 124419 libraryHaskellDepends = [ base ]; 124420 description = "Asymptotically optimal Brodal/Okasaki heaps"; 124421 license = lib.licenses.bsd3; 124422 - hydraPlatforms = lib.platforms.none; 124423 }) {}; 124424 124425 "heapsize" = callPackage ··· 124792 ]; 124793 description = "Hedgehog will eat your typeclass bugs"; 124794 license = lib.licenses.bsd3; 124795 - hydraPlatforms = lib.platforms.none; 124796 - broken = true; 124797 }) {}; 124798 124799 "hedgehog-corpus" = callPackage ··· 126352 testSystemDepends = [ secp256k1 ]; 126353 description = "Ethereum virtual machine evaluator"; 126354 license = lib.licenses.agpl3Only; 126355 }) {inherit (pkgs) libff; inherit (pkgs) secp256k1;}; 126356 126357 "hevolisa" = callPackage ··· 126596 }) {}; 126597 126598 "hexpat-streamparser" = callPackage 126599 - ({ mkDerivation, base, bytestring, hexpat, hspec, List, mtl 126600 - , parser-combinators, text, transformers 126601 }: 126602 mkDerivation { 126603 pname = "hexpat-streamparser"; 126604 - version = "0.1.1"; 126605 - sha256 = "13wn89aw2fqhirrdshmdh1xqhihx4h5pgmp4x9lspy2jfrpga9f5"; 126606 libraryHaskellDepends = [ 126607 - base bytestring hexpat List mtl parser-combinators text 126608 transformers 126609 ]; 126610 testHaskellDepends = [ base hexpat hspec ]; ··· 126689 testHaskellDepends = [ base binary bytestring hspec text ]; 126690 description = "Fast and safe representation of a hex string"; 126691 license = lib.licenses.mit; 126692 }) {}; 126693 126694 "hext" = callPackage ··· 126785 }: 126786 mkDerivation { 126787 pname = "heyting-algebras"; 126788 - version = "0.0.2.0"; 126789 - sha256 = "027gdi1lqlj3xcsl4zzfflfswlz76an7in63xvjsx0gs9pxqny1j"; 126790 libraryHaskellDepends = [ 126791 base containers free-algebras hashable lattices semiring-simple 126792 tagged universe-base unordered-containers ··· 127147 ]; 127148 description = "Geometric Algorithms, Data structures, and Data types"; 127149 license = lib.licenses.bsd3; 127150 - hydraPlatforms = lib.platforms.none; 127151 - broken = true; 127152 }) {}; 127153 127154 "hgeometry-combinatorial" = callPackage ··· 127183 testToolDepends = [ hspec-discover ]; 127184 description = "Data structures, and Data types"; 127185 license = lib.licenses.bsd3; 127186 - hydraPlatforms = lib.platforms.none; 127187 - broken = true; 127188 }) {}; 127189 127190 "hgeometry-ipe" = callPackage ··· 127538 ]; 127539 description = "Generate scaffold for cabal project"; 127540 license = lib.licenses.bsd3; 127541 }) {}; 127542 127543 "hi-file-parser" = callPackage ··· 127554 license = lib.licenses.bsd3; 127555 }) {}; 127556 127557 "hi3status" = callPackage 127558 ({ mkDerivation, aeson, base, binary, bytestring, dbus, dyre 127559 , network, prefix-units, process, regex-pcre-builtin, text, time ··· 127677 license = lib.licenses.mit; 127678 }) {inherit (pkgs) systemd;}; 127679 127680 "hidden-char" = callPackage 127681 ({ mkDerivation, base, hspec }: 127682 mkDerivation { ··· 127964 }: 127965 mkDerivation { 127966 pname = "higgledy"; 127967 - version = "0.4.1.0"; 127968 - sha256 = "1z67vip2appsl4f2qf70pqdnyjp6byaa4n3x8scp1aa94hg1xj3h"; 127969 setupHaskellDepends = [ base Cabal cabal-doctest ]; 127970 libraryHaskellDepends = [ 127971 barbies base generic-lens generic-lens-core named QuickCheck ··· 128210 pname = "hills"; 128211 version = "0.1.2.7"; 128212 sha256 = "0zq402ycyxaw9rpxlgj0307xz80qw1159albzw1q0sr4lxfxykcv"; 128213 isLibrary = false; 128214 isExecutable = true; 128215 executableHaskellDepends = [ ··· 129932 license = lib.licenses.mit; 129933 description = "GLUT events via a Kafka message broker"; 129934 129935 - description = "GLUT events via a Kafka message broker"; 129936 description = "GLUT events via a Kafka message broker"; 129937 description = "GLUT events via a Kafka message broker"; 129938 description = "GLUT events via a Kafka message broker"; ··· 129955 executableHaskellDepends = [ base ]; 129956 description = "GLUT events via a Kafka message broker"; 129957 license = lib.licenses.bsd3; 129958 }) {}; 129959 129960 description = "GLUT events via a Kafka message broker"; 129961 description = "GLUT events via a Kafka message broker"; 129962 description = "GLUT events via a Kafka message broker"; 129963 description = "GLUT events via a Kafka message broker"; ··· 129979 executableHaskellDepends = [ base ]; 129980 description = "GLUT events via a Kafka message broker"; 129981 license = lib.licenses.bsd3; 129982 - hydraPlatforms = lib.platforms.none; 129983 }) {}; 129984 129985 description = "GLUT events via a Kafka message broker"; ··· 130169 ]; 130170 description = "GLUT events via a Kafka message broker"; 130171 license = lib.licenses.asl20; 130172 }) {}; 130173 130174 description = "GLUT events via a Kafka message broker"; ··· 130946 130947 description = "GLUT events via a Kafka message broker"; 130948 ({ mkDerivation, array, base, binary, bytestring, clock, containers 130949 - description = "GLUT events via a Kafka message broker"; 130950 - description = "GLUT events via a Kafka message broker"; 130951 }: 130952 mkDerivation { 130953 description = "GLUT events via a Kafka message broker"; 130954 - description = "GLUT events via a Kafka message broker"; 130955 - description = "GLUT events via a Kafka message broker"; 130956 isLibrary = false; 130957 isExecutable = true; 130958 executableHaskellDepends = [ 130959 description = "GLUT events via a Kafka message broker"; 130960 - description = "GLUT events via a Kafka message broker"; 130961 - utf8-string zlib 130962 ]; 130963 executableSystemDepends = [ ncurses ]; 130964 description = "GLUT events via a Kafka message broker"; ··· 131742 testToolDepends = [ markdown-unlit tasty-discover ]; 131743 description = "GLUT events via a Kafka message broker"; 131744 license = lib.licenses.mit; 131745 }) {}; 131746 131747 description = "GLUT events via a Kafka message broker"; ··· 131844 description = "GLUT events via a Kafka message broker"; 131845 version = "0.2.0.0"; 131846 description = "GLUT events via a Kafka message broker"; 131847 setupHaskellDepends = [ base Cabal directory ]; 131848 description = "GLUT events via a Kafka message broker"; 131849 description = "GLUT events via a Kafka message broker"; ··· 133339 license = lib.licenses.bsd3; 133340 }) {}; 133341 133342 description = "GLUT events via a Kafka message broker"; 133343 description = "GLUT events via a Kafka message broker"; 133344 description = "GLUT events via a Kafka message broker"; ··· 133569 }: 133570 mkDerivation { 133571 description = "GLUT events via a Kafka message broker"; 133572 - version = "0.6.3"; 133573 - description = "GLUT events via a Kafka message broker"; 133574 isLibrary = true; 133575 isExecutable = true; 133576 libraryHaskellDepends = [ ··· 133623 }: 133624 mkDerivation { 133625 description = "GLUT events via a Kafka message broker"; 133626 - description = "GLUT events via a Kafka message broker"; 133627 - description = "GLUT events via a Kafka message broker"; 133628 libraryHaskellDepends = [ 133629 description = "GLUT events via a Kafka message broker"; 133630 description = "GLUT events via a Kafka message broker"; ··· 134131 license = lib.licenses.bsd3; 134132 description = "GLUT events via a Kafka message broker"; 134133 134134 description = "GLUT events via a Kafka message broker"; 134135 description = "GLUT events via a Kafka message broker"; 134136 mkDerivation { ··· 134907 ]; 134908 description = "Create tag files (ctags and etags) for Haskell code"; 134909 license = lib.licenses.mit; 134910 }) {}; 134911 134912 "hs-twitter" = callPackage ··· 136528 doHaddock = false; 136529 description = "Extend the import list of a Haskell source file"; 136530 license = lib.licenses.bsd3; 136531 }) {}; 136532 136533 "hsini" = callPackage ··· 137280 license = lib.licenses.mit; 137281 }) {}; 137282 137283 "hspec-attoparsec" = callPackage 137284 ({ mkDerivation, attoparsec, base, bytestring, hspec 137285 , hspec-expectations, text ··· 137364 license = lib.licenses.mit; 137365 }) {}; 137366 137367 "hspec-dirstream" = callPackage 137368 ({ mkDerivation, base, dirstream, filepath, hspec, hspec-core 137369 , pipes, pipes-safe, system-filepath, text ··· 137399 testToolDepends = [ hspec-meta ]; 137400 description = "Automatically discover and run Hspec tests"; 137401 license = lib.licenses.mit; 137402 }) {}; 137403 137404 "hspec-expectations" = callPackage ··· 137633 broken = true; 137634 }) {}; 137635 137636 "hspec-laws" = callPackage 137637 ({ mkDerivation, base, hspec, markdown-unlit, QuickCheck }: 137638 mkDerivation { ··· 139249 license = lib.licenses.mit; 139250 }) {}; 139251 139252 "html-entity" = callPackage 139253 ({ mkDerivation, attoparsec, base, Cabal, cabal-doctest, doctest 139254 , text, unordered-containers ··· 139672 pname = "http-api-data"; 139673 version = "0.4.3"; 139674 sha256 = "171bw2a44pg50d3y77gw2y9vmx72laky7hnn5hw6r93pnjmlf9yz"; 139675 - revision = "1"; 139676 - editedCabalFile = "0vy4glhjc036m2lmkc1ls0s48pcxga2qqc1jbpj4139v9j8h158m"; 139677 libraryHaskellDepends = [ 139678 attoparsec attoparsec-iso8601 base base-compat bytestring 139679 containers cookie hashable http-types tagged text time-compat ··· 140094 }: 140095 mkDerivation { 140096 pname = "http-conduit-downloader"; 140097 - version = "1.1.3"; 140098 - sha256 = "12fv42jnh2glnav082a1d67za9ya9v0zpnxsphxhcy90b4s4rr6x"; 140099 libraryHaskellDepends = [ 140100 base bytestring data-default HsOpenSSL http-client 140101 http-client-openssl http-types network network-uri text time zlib ··· 141322 ]; 141323 description = "CSS-like syntax for file system manipulation"; 141324 license = lib.licenses.mit; 141325 }) {}; 141326 141327 "hunit-dejafu" = callPackage ··· 141822 pname = "hw-balancedparens"; 141823 version = "0.4.1.1"; 141824 sha256 = "16v36fj5aawnx6glarzljl3yb93zkn06ij5cg40zba5rp8jhpg7z"; 141825 - revision = "1"; 141826 - editedCabalFile = "0jh79y6wl0ml4fc59icbg35nvcz7zi0fqbbg0p6y7nkxnhv4yc0j"; 141827 isLibrary = true; 141828 isExecutable = true; 141829 libraryHaskellDepends = [ ··· 141968 pname = "hw-dsv"; 141969 version = "0.4.1.0"; 141970 sha256 = "1wv0yg662c3bq4kpgfqfjks59v17i5h3v3mils1qpxn4c57jr3s8"; 141971 - revision = "3"; 141972 - editedCabalFile = "066vlpy361f6r5k74b3myi6lc2g8lxm7cz23i5hhyi319yjp1jxh"; 141973 isLibrary = true; 141974 isExecutable = true; 141975 libraryHaskellDepends = [ ··· 142009 pname = "hw-dump"; 142010 version = "0.1.1.0"; 142011 sha256 = "14ya18i3xvay5xn8j20b06msqyd49h34w526k1x1fxdp0i2l3rwr"; 142012 - revision = "3"; 142013 - editedCabalFile = "16wpfpmxp3r1nrzfmcihzfcfhaiwrlq7x7z9kf68aib5zqmdxzwf"; 142014 isLibrary = true; 142015 isExecutable = true; 142016 libraryHaskellDepends = [ ··· 142044 pname = "hw-eliasfano"; 142045 version = "0.1.2.0"; 142046 sha256 = "1wqpzznmz6bl88wzhrfcbgi49dw7w7i0p92hyc0m58nanqm1zgnj"; 142047 - revision = "3"; 142048 - editedCabalFile = "1g6w3j4azxvikiycjnb4rjsaw8pyica3m17yhsrxq24pms4n35pl"; 142049 isLibrary = true; 142050 isExecutable = true; 142051 libraryHaskellDepends = [ ··· 142207 pname = "hw-ip"; 142208 version = "2.4.2.0"; 142209 sha256 = "1bvh4fkg1ffr3y8wink62rgkynlcgjhmra7a4w01h1dmw1vb2vfx"; 142210 - revision = "2"; 142211 - editedCabalFile = "19x9s7hdch768annsss3paz7sqxqr3flz01wky1vijf18abakk3l"; 142212 isLibrary = true; 142213 isExecutable = true; 142214 libraryHaskellDepends = [ ··· 142242 pname = "hw-json"; 142243 version = "1.3.2.2"; 142244 sha256 = "03h5zv94ndsz4vh0jql8rg8pl95rbf8xkyzvr3r55i3kpmb85sbg"; 142245 - revision = "1"; 142246 - editedCabalFile = "1ivm89r5kqflpsayl941xq0q3izjklakfqzr2f6nl78wpa3ykkiq"; 142247 isLibrary = true; 142248 isExecutable = true; 142249 libraryHaskellDepends = [ ··· 142287 pname = "hw-json-lens"; 142288 version = "0.2.1.0"; 142289 sha256 = "1v3ws69pyrw5ja00r326kqlq6hd7r5np119fk2la7f74aqhajjf6"; 142290 - revision = "2"; 142291 - editedCabalFile = "0n6cxjr2r7w2i735c1dz2cflgvbgcdspzzzg8w3knhl1kgiyi2ih"; 142292 libraryHaskellDepends = [ 142293 aeson base bytestring containers hw-json lens scientific text word8 142294 ]; ··· 142315 pname = "hw-json-simd"; 142316 version = "0.1.1.0"; 142317 sha256 = "0bpfyx2bd7pcr8y8bfahcdm30bznqixfawraq3xzy476vy9ppa9n"; 142318 - revision = "2"; 142319 - editedCabalFile = "1amvva0pqidwcjdd4snywm8m614ygc2zn6036fh4v1ps20pyq2l9"; 142320 isLibrary = true; 142321 isExecutable = true; 142322 libraryHaskellDepends = [ base bytestring hw-prim lens vector ]; ··· 142346 pname = "hw-json-simple-cursor"; 142347 version = "0.1.1.0"; 142348 sha256 = "1kwxnqsa2mkw5sa8rc9rixjm6f75lyjdaz7f67yyhwls5v4315bl"; 142349 - revision = "4"; 142350 - editedCabalFile = "0mpjnc99yi474h9qvgg48kjcl3hxxhl58gar72bzcf5rx12pyn9w"; 142351 isLibrary = true; 142352 isExecutable = true; 142353 libraryHaskellDepends = [ ··· 142386 pname = "hw-json-standard-cursor"; 142387 version = "0.2.3.1"; 142388 sha256 = "1mpsspp6ba2zqv38a0rcv93mbwb1rb8snmxklf32g02djj8b4vir"; 142389 - revision = "2"; 142390 - editedCabalFile = "1qc0nxcahlc0zn4ycfxhhj1qplxc0r8qh20zmq4m2n7wyghlb3hc"; 142391 isLibrary = true; 142392 isExecutable = true; 142393 libraryHaskellDepends = [ ··· 142501 pname = "hw-mquery"; 142502 version = "0.2.1.0"; 142503 sha256 = "1qhd8jcwffr57mjraw0g3xj9kb0jd75ybqaj1sbxw31lc2hr9w9j"; 142504 - revision = "1"; 142505 - editedCabalFile = "15jji7wzx2ws58nqd965r6bycdgl09qlp4rrcd81y57mq24h27mb"; 142506 isLibrary = true; 142507 isExecutable = true; 142508 libraryHaskellDepends = [ ansi-wl-pprint base dlist lens ]; ··· 142526 pname = "hw-packed-vector"; 142527 version = "0.2.1.0"; 142528 sha256 = "13hly2yzx6kx4j56iksgj4i3wmvg7rmxq57d0g87lmybzhha9q38"; 142529 - revision = "3"; 142530 - editedCabalFile = "1zn1aqkyzsa0mk9b7igvnmxas0907h9if96c9km1gjrndnjvxkyd"; 142531 isLibrary = true; 142532 isExecutable = true; 142533 libraryHaskellDepends = [ ··· 142558 pname = "hw-parser"; 142559 version = "0.1.1.0"; 142560 sha256 = "1zsbw725mw3fn4814qricqanbvx1kgbnqvgwijqgfv8jz7yf5gxa"; 142561 - revision = "1"; 142562 - editedCabalFile = "0yh06ypgvag83h32czz8dpsrc9a4w0pqy3m4jvds8sbgnj45havs"; 142563 libraryHaskellDepends = [ 142564 attoparsec base bytestring hw-prim text 142565 ]; ··· 142649 pname = "hw-rankselect"; 142650 version = "0.13.4.0"; 142651 sha256 = "0chk3n4vb55px943w0l3q7pxhgbvqm64vn7lkhi7k0l2dpybycp7"; 142652 - revision = "3"; 142653 - editedCabalFile = "14awklhpnw53jalxfq0446aidndmanpnwjxp1136imjv7p270pvn"; 142654 isLibrary = true; 142655 isExecutable = true; 142656 libraryHaskellDepends = [ ··· 142715 pname = "hw-simd"; 142716 version = "0.1.2.0"; 142717 sha256 = "1r202xzqprb1v8ajd9n6ixckjfdy17mn8jibx4j2xgknx595v24f"; 142718 - revision = "1"; 142719 - editedCabalFile = "0vl82knb53njkp7n6jrwp4fpipfkc7s4lsi2cqd6w2xkgmlc0rxv"; 142720 libraryHaskellDepends = [ 142721 base bits-extra bytestring deepseq hw-bits hw-prim hw-rankselect 142722 hw-rankselect-base transformers vector ··· 142862 pname = "hw-uri"; 142863 version = "0.2.1.0"; 142864 sha256 = "1bwdzvms0n86k7gbkhk0jj3m1pcc9vbjk13kgpchqxpxm971srbs"; 142865 - revision = "3"; 142866 - editedCabalFile = "1cdrikiyw13brabbjrf4v7hqaim3apx84i3xapda29f1rw8f5f3q"; 142867 isLibrary = true; 142868 isExecutable = true; 142869 libraryHaskellDepends = [ ··· 142914 pname = "hw-xml"; 142915 version = "0.5.1.0"; 142916 sha256 = "0g81kknllbc6v5wx7kgzhh78409njfzr3h7lfdx7ip0nkhhnpmw4"; 142917 - revision = "4"; 142918 - editedCabalFile = "1hnbcr376pncgzzrbilffxwz5sk67c4d9hzjix3xa94cja09w1ny"; 142919 isLibrary = true; 142920 isExecutable = true; 142921 enableSeparateDataOutput = true; ··· 143251 license = lib.licenses.mit; 143252 }) {}; 143253 143254 "hxt-binary" = callPackage 143255 ({ mkDerivation, base, binary, bytestring, bzlib, deepseq 143256 , haskell98, hxt ··· 144344 ]; 144345 description = "iCalendar data types, parser, and printer"; 144346 license = lib.licenses.bsd3; 144347 - hydraPlatforms = lib.platforms.none; 144348 - broken = true; 144349 }) {}; 144350 144351 "iException" = callPackage ··· 144451 }) {}; 144452 144453 "ice40-prim" = callPackage 144454 - ({ mkDerivation, base, Cabal, clash-prelude, ghc-typelits-extra 144455 , ghc-typelits-knownnat, ghc-typelits-natnormalise, interpolate 144456 }: 144457 mkDerivation { 144458 pname = "ice40-prim"; 144459 - version = "0.3.0.0"; 144460 - sha256 = "0qrpaqmgas3czhw2ppc1f1m4m7y2hc93za2g0rvfw80ncbrkl83s"; 144461 libraryHaskellDepends = [ 144462 - base Cabal clash-prelude ghc-typelits-extra ghc-typelits-knownnat 144463 ghc-typelits-natnormalise interpolate 144464 ]; 144465 description = "Lattice iCE40 Primitive IP"; ··· 146643 testHaskellDepends = [ base mtl parsec tasty tasty-hunit ]; 146644 description = "indentation sensitive parser-combinators for parsec"; 146645 license = lib.licenses.bsd3; 146646 }) {}; 146647 146648 "index-core" = callPackage ··· 147103 license = lib.licenses.bsd3; 147104 }) {}; 147105 147106 "informative" = callPackage 147107 ({ mkDerivation, base, containers, csv, highlighting-kate 147108 , http-conduit, monad-logger, pandoc, persistent ··· 147439 license = lib.licenses.bsd3; 147440 }) {}; 147441 147442 "inquire" = callPackage 147443 ({ mkDerivation, aether, base, text }: 147444 mkDerivation { ··· 147741 broken = true; 147742 }) {}; 147743 147744 "instrument-chord" = callPackage 147745 ({ mkDerivation, array, base, containers, music-diatonic }: 147746 mkDerivation { ··· 148448 executablePkgconfigDepends = [ ncurses ]; 148449 description = "A game of competitive puzzle-design"; 148450 license = lib.licenses.gpl3Only; 148451 }) {inherit (pkgs) ncurses;}; 148452 148453 "intrinsic-superclasses" = callPackage ··· 149121 license = lib.licenses.bsd3; 149122 }) {}; 149123 149124 "ipatch" = callPackage 149125 ({ mkDerivation, base, bytestring, darcs, directory, filepath 149126 , hashed-storage, process, unix ··· 151862 license = lib.licenses.bsd3; 151863 }) {}; 151864 151865 "jot" = callPackage 151866 ({ mkDerivation, base, data-default, dhall, docopt, extra, filepath 151867 , process, time, turtle, yaml ··· 152409 ]; 152410 description = "Load JSON from files in a directory structure"; 152411 license = lib.licenses.bsd3; 152412 - hydraPlatforms = lib.platforms.none; 152413 - broken = true; 152414 }) {}; 152415 152416 "json-encoder" = callPackage ··· 152655 hydraPlatforms = lib.platforms.none; 152656 }) {}; 152657 152658 "json-rpc" = callPackage 152659 ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit 152660 , conduit-extra, deepseq, hashable, hspec, monad-logger, mtl ··· 152842 "json-syntax" = callPackage 152843 ({ mkDerivation, aeson, array-builder, array-chunks, base 152844 , bytebuild, byteslice, bytesmith, bytestring, gauge 152845 - , neat-interpolation, primitive, scientific, scientific-notation 152846 - , tasty, tasty-hunit, text, text-short, unordered-containers 152847 - , vector 152848 }: 152849 mkDerivation { 152850 pname = "json-syntax"; 152851 - version = "0.1.2.0"; 152852 - sha256 = "0i0b54ykfd530wl8gmqw13wjwj5m6wdfgc1nyxxdz1abydxy5bpn"; 152853 libraryHaskellDepends = [ 152854 array-builder array-chunks base bytebuild byteslice bytesmith 152855 - bytestring primitive scientific-notation text-short 152856 ]; 152857 testHaskellDepends = [ 152858 aeson array-chunks base bytebuild byteslice bytestring ··· 153125 broken = true; 153126 }) {}; 153127 153128 "jsonpath" = callPackage 153129 ({ mkDerivation, aeson, aeson-casing, attoparsec, base, bytestring 153130 , file-embed, hspec, hspec-attoparsec, hspec-discover, text ··· 155107 }: 155108 mkDerivation { 155109 pname = "kempe"; 155110 - version = "0.2.0.0"; 155111 - sha256 = "1wgbjk1iyb4njcr957lipxnypk3c08c98v9czk3xld9dqzq9xxf1"; 155112 isLibrary = false; 155113 isExecutable = true; 155114 enableSeparateDataOutput = true; ··· 155126 process tasty tasty-golden tasty-hunit temporary text 155127 ]; 155128 benchmarkHaskellDepends = [ 155129 - base bytestring criterion prettyprinter text 155130 ]; 155131 doHaddock = false; 155132 description = "Kempe compiler"; ··· 155628 }: 155629 mkDerivation { 155630 pname = "kind-generics-th"; 155631 - version = "0.2.2.1"; 155632 - sha256 = "014dzqs8n15vvj0vypd0ws1yxn1vy92gbk2zvi5m660wsgrj62aa"; 155633 - libraryHaskellDepends = [ 155634 - base ghc-prim kind-generics template-haskell th-abstraction 155635 - ]; 155636 - testHaskellDepends = [ base kind-generics template-haskell ]; 155637 - description = "Template Haskell support for generating `GenericK` instances"; 155638 - license = lib.licenses.bsd3; 155639 - }) {}; 155640 - 155641 - "kind-generics-th_0_2_2_2" = callPackage 155642 - ({ mkDerivation, base, ghc-prim, kind-generics, template-haskell 155643 - , th-abstraction 155644 - }: 155645 - mkDerivation { 155646 - pname = "kind-generics-th"; 155647 version = "0.2.2.2"; 155648 sha256 = "1lgz7wvz5jvq65r7zmymcfx3hwskw2b45a3vfwj0pgnddpjmh9n4"; 155649 libraryHaskellDepends = [ ··· 155652 testHaskellDepends = [ base kind-generics template-haskell ]; 155653 description = "Template Haskell support for generating `GenericK` instances"; 155654 license = lib.licenses.bsd3; 155655 - hydraPlatforms = lib.platforms.none; 155656 }) {}; 155657 155658 "kinds" = callPackage ··· 157990 ]; 157991 description = "JavaScript parser and pretty-printer library"; 157992 license = lib.licenses.bsd3; 157993 - hydraPlatforms = lib.platforms.none; 157994 - broken = true; 157995 }) {}; 157996 157997 "language-ecmascript-analysis" = callPackage ··· 158007 ]; 158008 description = "JavaScript static analysis library"; 158009 license = lib.licenses.bsd3; 158010 - hydraPlatforms = lib.platforms.none; 158011 - broken = true; 158012 }) {}; 158013 158014 "language-eiffel" = callPackage ··· 158241 ({ mkDerivation, base, hspec, parsec }: 158242 mkDerivation { 158243 pname = "language-js"; 158244 - version = "0.2.0"; 158245 - sha256 = "0j87w6sqyl67ad9qar2q240kbzksds3a301cdykjfa3n6a0r81z1"; 158246 libraryHaskellDepends = [ base parsec ]; 158247 testHaskellDepends = [ base hspec parsec ]; 158248 description = "javascript parser for es6 and es7"; 158249 - license = lib.licenses.bsd3; 158250 }) {}; 158251 158252 "language-kort" = callPackage ··· 159289 ]; 159290 description = "Fine-grained library for constructing and manipulating lattices"; 159291 license = lib.licenses.bsd3; 159292 - hydraPlatforms = lib.platforms.none; 159293 - broken = true; 159294 }) {}; 159295 159296 "launchdarkly-server-sdk" = callPackage ··· 160480 pname = "lens-aeson"; 160481 version = "1.1.1"; 160482 sha256 = "1g37c8p25by3hvy5lmq4rqyl9wxmxmci2h16rj4i5jcp7slf3mvg"; 160483 libraryHaskellDepends = [ 160484 aeson attoparsec base bytestring lens scientific text 160485 unordered-containers vector ··· 161598 broken = true; 161599 }) {}; 161600 161601 "libjenkins" = callPackage 161602 ({ mkDerivation, async, attoparsec, base, bytestring, conduit 161603 , containers, directory, doctest, filepath, free, hspec ··· 162446 ]; 162447 description = "Synchronize personal configs across multiple machines"; 162448 license = lib.licenses.mpl20; 162449 }) {}; 162450 162451 "lifetimes" = callPackage ··· 162523 license = lib.licenses.bsd3; 162524 }) {}; 162525 162526 "lifted-base" = callPackage 162527 ({ mkDerivation, base, criterion, HUnit, monad-control, monad-peel 162528 , test-framework, test-framework-hunit, transformers ··· 163883 }: 163884 mkDerivation { 163885 pname = "lion"; 163886 - version = "0.1.0.0"; 163887 - sha256 = "0sxj7rjx9xzrmzy0q415b7vhxvj5fp38av1qs3sx54frmzbm0x20"; 163888 libraryHaskellDepends = [ 163889 base Cabal clash-prelude generic-monoid ghc-typelits-extra 163890 ghc-typelits-knownnat ghc-typelits-natnormalise ice40-prim lens mtl ··· 164140 testSystemDepends = [ z3 ]; 164141 description = "Liquid Types for Haskell"; 164142 license = lib.licenses.bsd3; 164143 }) {inherit (pkgs) z3;}; 164144 164145 "liquidhaskell-cabal" = callPackage ··· 164484 pname = "list-tuple"; 164485 version = "0.1.3.0"; 164486 sha256 = "1qd5pr7i9xsym09ly6am3a0id3cwbb8w4xphbsjkv3wrlfv9z9v0"; 164487 setupHaskellDepends = [ base Cabal directory ]; 164488 description = "GLUT events via a Kafka message broker"; 164489 testHaskellDepends = [ ··· 166851 }: 166852 mkDerivation { 166853 pname = "lorentz"; 166854 - version = "0.10.0"; 166855 - sha256 = "15kgnw8f52i30xxw1q6mxlyhkpfpq5hyjsvfklg334iqr5w0nby2"; 166856 libraryHaskellDepends = [ 166857 aeson-pretty base-noprelude bimap bytestring constraints containers 166858 data-default first-class-families fmt interpolate lens morley ··· 167150 license = lib.licenses.mit; 167151 }) {}; 167152 167153 "lsp-test" = callPackage 167154 ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, async, base 167155 , bytestring, conduit, conduit-parse, containers, data-default ··· 167177 license = lib.licenses.bsd3; 167178 }) {}; 167179 167180 - "lsp-test_0_11_0_7" = callPackage 167181 ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, async, base 167182 , bytestring, conduit, conduit-parse, containers, data-default 167183 - , Diff, directory, filepath, Glob, haskell-lsp, hspec, lens, mtl 167184 - , parser-combinators, process, text, transformers, unix 167185 , unordered-containers 167186 }: 167187 mkDerivation { 167188 pname = "lsp-test"; 167189 - version = "0.11.0.7"; 167190 - sha256 = "01var9nm3kpw65jaz4rvky35ibrpfjyhfas9bi8avrw1vh2ybkcn"; 167191 isLibrary = true; 167192 isExecutable = true; 167193 libraryHaskellDepends = [ 167194 aeson aeson-pretty ansi-terminal async base bytestring conduit 167195 conduit-parse containers data-default Diff directory filepath Glob 167196 - haskell-lsp lens mtl parser-combinators process text transformers 167197 - unix unordered-containers 167198 ]; 167199 testHaskellDepends = [ 167200 - aeson base data-default directory filepath haskell-lsp hspec lens 167201 text unordered-containers 167202 ]; 167203 description = "Functional test framework for LSP servers"; ··· 167205 hydraPlatforms = lib.platforms.none; 167206 }) {}; 167207 167208 - "lsp-test_0_13_0_0" = callPackage 167209 ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, async, base 167210 , bytestring, conduit, conduit-parse, containers, data-default 167211 - , Diff, directory, filepath, Glob, hspec, lens, lsp-types, mtl 167212 - , parser-combinators, process, some, text, time, transformers, unix 167213 - , unordered-containers 167214 }: 167215 mkDerivation { 167216 pname = "lsp-test"; 167217 - version = "0.13.0.0"; 167218 - sha256 = "1xyxmzcd6r56jj1k11lz1g6yld5q3k6cgb0bsf45px120dsf1dpy"; 167219 - isLibrary = true; 167220 - isExecutable = true; 167221 libraryHaskellDepends = [ 167222 aeson aeson-pretty ansi-terminal async base bytestring conduit 167223 conduit-parse containers data-default Diff directory filepath Glob ··· 167225 transformers unix unordered-containers 167226 ]; 167227 testHaskellDepends = [ 167228 - aeson base data-default directory filepath hspec lens lsp-types 167229 - text unordered-containers 167230 ]; 167231 description = "Functional test framework for LSP servers"; 167232 license = lib.licenses.bsd3; 167233 hydraPlatforms = lib.platforms.none; ··· 167254 ]; 167255 description = "Haskell library for the Microsoft Language Server Protocol, data types"; 167256 license = lib.licenses.mit; 167257 }) {}; 167258 167259 "lss" = callPackage ··· 168399 ({ mkDerivation, base, binary, bytestring, machines }: 168400 mkDerivation { 168401 pname = "machines-binary"; 168402 - version = "0.3.0.3"; 168403 - sha256 = "0lh6q99xfmxl53gkxlrbjh1pfbkff8faxr9fycks98cfcmnlbzv0"; 168404 libraryHaskellDepends = [ base binary bytestring machines ]; 168405 description = "Binary utilities for the machines library"; 168406 license = lib.licenses.asl20; ··· 168427 }: 168428 mkDerivation { 168429 pname = "machines-directory"; 168430 - version = "0.2.1.0"; 168431 - sha256 = "1d6yfh26g9gs406ywc42ascnxcfcz2isfa6j921xikzndzdhg744"; 168432 libraryHaskellDepends = [ 168433 base directory filepath machines machines-io transformers 168434 ]; ··· 168457 }: 168458 mkDerivation { 168459 pname = "machines-io"; 168460 - version = "0.2.0.13"; 168461 - sha256 = "1m7mm3s7inyiy07w8idgwb99k2a9cd1768hkm7ygryllkrg9smsd"; 168462 libraryHaskellDepends = [ 168463 base bytestring chunked-data machines transformers 168464 ]; ··· 168473 }: 168474 mkDerivation { 168475 pname = "machines-process"; 168476 - version = "0.2.0.8"; 168477 - sha256 = "0bgs9zhx66dij8mipw6llkvyr1q18gsz78s0d71sqmh7lwl965bs"; 168478 libraryHaskellDepends = [ 168479 base chunked-data machines machines-io process 168480 ]; ··· 170635 license = lib.licenses.bsd2; 170636 }) {}; 170637 170638 "math-grads" = callPackage 170639 ({ mkDerivation, aeson, array, base, bimap, containers, hspec 170640 , ilist, lens, linear, matrix, mtl, random, vector ··· 170696 testToolDepends = [ tasty-discover ]; 170697 description = "A library for formulating and solving math programs"; 170698 license = lib.licenses.bsd3; 170699 }) {}; 170700 170701 "math-programming-glpk" = callPackage ··· 172665 ]; 172666 description = "Support for using mergeful from persistent-based databases"; 172667 license = lib.licenses.mit; 172668 }) {}; 172669 172670 "mergeless" = callPackage ··· 172703 ]; 172704 description = "Support for using mergeless from persistent-based databases"; 172705 license = lib.licenses.mit; 172706 }) {}; 172707 172708 "merkle-log" = callPackage ··· 173310 ]; 173311 description = "A Micro service gateway"; 173312 license = lib.licenses.bsd3; 173313 }) {}; 173314 173315 "micro-recursion-schemes" = callPackage ··· 175037 }) {}; 175038 175039 "mit-3qvpPyAi6mH" = callPackage 175040 - ({ mkDerivation, base, base64, clock, directory, process 175041 - , record-dot-preprocessor, record-hasfield, text, text-ansi, unix 175042 }: 175043 mkDerivation { 175044 pname = "mit-3qvpPyAi6mH"; 175045 - version = "2"; 175046 - sha256 = "1cdax4sjjpv7jiszv1319b7n26510pcir1icl6rfq4qbynrg4l00"; 175047 - isLibrary = false; 175048 isExecutable = true; 175049 executableHaskellDepends = [ 175050 base base64 clock directory process record-dot-preprocessor 175051 record-hasfield text text-ansi unix 175052 ]; 175053 description = "A git wrapper with a streamlined UX"; 175054 license = lib.licenses.mit; 175055 }) {}; 175056 175057 "miv" = callPackage ··· 175409 ({ mkDerivation, base, vector }: 175410 mkDerivation { 175411 pname = "mmsyn2"; 175412 - version = "0.3.1.0"; 175413 - sha256 = "06n8vxqafc698ahml782klb41g9bfsvqdrl4k0blnn3m3vavnzxy"; 175414 libraryHaskellDepends = [ base vector ]; 175415 description = "The library that can be used for multiple (Ord a) => a -> b transformations"; 175416 license = lib.licenses.mit; ··· 175420 ({ mkDerivation, base }: 175421 mkDerivation { 175422 pname = "mmsyn2-array"; 175423 - version = "0.1.1.0"; 175424 - sha256 = "0dcvs5s11s840fvl17h5qrz5x6fmzvvjkfxmbk8r0p13n4k2a0ny"; 175425 libraryHaskellDepends = [ base ]; 175426 description = "A library with less dependencies that can be used for multiple Ord a => a -> b transformations"; 175427 license = lib.licenses.mit; ··· 175767 pname = "mod"; 175768 version = "0.1.2.1"; 175769 sha256 = "0fjcjk9jxwc2d1fm3kzamh9gi3lwnl2g6kz3z2hd43dszkay1mn1"; 175770 - revision = "1"; 175771 - editedCabalFile = "012slncmwh9i4fh31mdxn5xnpl9l309swrm5vlnibrxj3pxhmrxv"; 175772 libraryHaskellDepends = [ 175773 base deepseq integer-gmp primitive semirings vector 175774 ]; ··· 178294 pname = "months"; 178295 version = "0.2"; 178296 sha256 = "054dag7806850hdii7s5rxg8gx2spdp33pnx4s4ckni9ayvspija"; 178297 libraryHaskellDepends = [ 178298 aeson attoparsec base base-compat deepseq hashable intervals 178299 QuickCheck text time-compat ··· 178465 }: 178466 mkDerivation { 178467 pname = "morley"; 178468 - version = "1.13.0"; 178469 - sha256 = "1jbjmri2k7z5fh96i0yx28wpcp0l3fchkk3iwvq0vdwcrb78bndb"; 178470 isLibrary = true; 178471 isExecutable = true; 178472 libraryHaskellDepends = [ ··· 178500 ({ mkDerivation, base-noprelude, universum }: 178501 mkDerivation { 178502 pname = "morley-prelude"; 178503 - version = "0.3.0"; 178504 - sha256 = "1nrwrz54xg0v9v8f1caccpdav1d0nnjqy8r8wmj5cgf9y30jfzjf"; 178505 libraryHaskellDepends = [ base-noprelude universum ]; 178506 description = "A custom prelude used in Morley"; 178507 - license = lib.licenses.agpl3Plus; 178508 }) {}; 178509 178510 "morloc" = callPackage 178511 ({ mkDerivation, aeson, base, bytestring, containers, directory 178512 , docopt, extra, filepath, haskell-src-meta, megaparsec, mtl ··· 181240 ]; 181241 description = "Pure Haskell implementation of the MurmurHash3 x86_32 algorithm"; 181242 license = lib.licenses.mit; 181243 }) {}; 181244 181245 "murmurhash3" = callPackage ··· 181927 pname = "mwc-random"; 181928 version = "0.15.0.1"; 181929 sha256 = "1p8c5g4hb72k90ai39rgpn6cr942i6636l1y0zfp9xgjb3v0a2q3"; 181930 - revision = "1"; 181931 - editedCabalFile = "1ay26mvzxqw6rzw3hkib1j12gk6fa2hsilz12q8vhp646bqqc744"; 181932 libraryHaskellDepends = [ 181933 base math-functions primitive random time vector 181934 ]; ··· 182728 pname = "named"; 182729 version = "0.3.0.1"; 182730 sha256 = "0dnp4qbhn6ci2dlp230gpq8c5z26wb2liani1myc598g2b3c2qij"; 182731 - revision = "1"; 182732 - editedCabalFile = "01hay5wlp803f35qp3wab1gjxrcv5lyk1hgz4r80k22xkh6dax99"; 182733 libraryHaskellDepends = [ base ]; 182734 testHaskellDepends = [ base ]; 182735 description = "Named parameters (keyword arguments) for Haskell"; ··· 183305 ]; 183306 description = "Natural number"; 183307 license = lib.licenses.bsd3; 183308 }) {}; 183309 183310 "natural-arithmetic" = callPackage ··· 185223 }) {}; 185224 185225 "network-packet-linux" = callPackage 185226 - ({ mkDerivation, base, bytestring, hspec, hspec-discover, HUnit 185227 - , network, QuickCheck, vendored-network, vendored-network-test 185228 }: 185229 mkDerivation { 185230 pname = "network-packet-linux"; 185231 - version = "0.1.0.0"; 185232 - sha256 = "17096sa20jijq37nr0bn4bcnpilh5yx4pdwqb4c2vk4i0lkwg58m"; 185233 - revision = "2"; 185234 - editedCabalFile = "0w3ca2z3ppj7b8ifafh4y42zv6wpkdd0mmfsvmvcdmfprlsh244b"; 185235 - libraryHaskellDepends = [ base network vendored-network ]; 185236 testHaskellDepends = [ 185237 - base bytestring hspec HUnit network QuickCheck 185238 - vendored-network-test 185239 ]; 185240 testToolDepends = [ hspec-discover ]; 185241 description = "Types for working with Linux packet sockets"; 185242 license = lib.licenses.bsd3; 185243 hydraPlatforms = lib.platforms.none; 185244 broken = true; 185245 - }) {vendored-network = null; vendored-network-test = null;}; 185246 185247 "network-pgi" = callPackage 185248 ({ mkDerivation, attoparsec, attoparsec-enumerator, base ··· 186278 }: 186279 mkDerivation { 186280 pname = "ngx-export-tools-extra"; 186281 - version = "0.6.2.0"; 186282 - sha256 = "01r6b7xsgn2dd42jh3xnvds21sccq5lchyiikk5v1vr055dddmpm"; 186283 - revision = "1"; 186284 - editedCabalFile = "0sab8vs3zycm4ykcayrynvd0rmyar9bmvd8b60dq1fzmnbmzzgg9"; 186285 libraryHaskellDepends = [ 186286 aeson array base base64 binary bytestring case-insensitive 186287 containers ede enclosed-exceptions http-client http-types network ··· 186592 pname = "nix-derivation"; 186593 version = "1.1.1"; 186594 sha256 = "1jcgq7c0x6q33ddq3ns4w69z23r31cvb2qxj04v2pyd5v8rwls9d"; 186595 - revision = "1"; 186596 - editedCabalFile = "1ink37s91kbrq8p0sqyi1i90xp2jimyg1cnzy9ydjh3iv21f7pi5"; 186597 isLibrary = true; 186598 isExecutable = true; 186599 libraryHaskellDepends = [ ··· 186609 maintainers = with lib.maintainers; [ sorki ]; 186610 }) {}; 186611 186612 "nix-diff" = callPackage 186613 ({ mkDerivation, attoparsec, base, containers, directory, mtl 186614 , nix-derivation, optparse-applicative, patience, text, unix ··· 186616 }: 186617 mkDerivation { 186618 pname = "nix-diff"; 186619 - version = "1.0.12"; 186620 - sha256 = "1w994nxgmg9cyrvqz13d5qjp3dqprdh16w2adcc5mbs3nqm9nmrc"; 186621 isLibrary = false; 186622 isExecutable = true; 186623 executableHaskellDepends = [ ··· 186773 186774 "nix-tree" = callPackage 186775 ({ mkDerivation, aeson, base, brick, bytestring, clock, containers 186776 - , deepseq, directory, filepath, hashable, hedgehog, hrfsize 186777 - , protolude, text, transformers, typed-process 186778 - , unordered-containers, vty 186779 }: 186780 mkDerivation { 186781 pname = "nix-tree"; 186782 - version = "0.1.6"; 186783 - sha256 = "0v8ll12z073g1c9zrgniljvrvniv1nf8p2ak6f24sixnhr8f2hhl"; 186784 isLibrary = false; 186785 isExecutable = true; 186786 executableHaskellDepends = [ 186787 aeson base brick bytestring clock containers deepseq directory 186788 - filepath hashable hrfsize protolude text transformers typed-process 186789 unordered-containers vty 186790 ]; 186791 testHaskellDepends = [ 186792 aeson base brick bytestring clock containers deepseq directory 186793 - filepath hashable hedgehog hrfsize protolude text transformers 186794 typed-process unordered-containers vty 186795 ]; 186796 description = "Interactively browse a Nix store paths dependencies"; ··· 188029 license = lib.licenses.bsd3; 188030 }) {}; 188031 188032 "nri-observability" = callPackage 188033 ({ mkDerivation, aeson, aeson-pretty, async, base, bugsnag-hs 188034 , bytestring, directory, hostname, http-client, http-client-tls ··· 188053 license = lib.licenses.bsd3; 188054 }) {}; 188055 188056 "nri-prelude" = callPackage 188057 ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, async 188058 , auto-update, base, bytestring, containers, directory, exceptions ··· 188079 license = lib.licenses.bsd3; 188080 }) {}; 188081 188082 "nsis" = callPackage 188083 ({ mkDerivation, base, directory, process, transformers, uniplate 188084 }: ··· 189022 ]; 189023 description = "A bullet-hell game made with SDL2"; 189024 license = lib.licenses.asl20; 189025 }) {}; 189026 189027 "o-clock" = callPackage ··· 190596 "openai-hs" = callPackage 190597 ({ mkDerivation, aeson, base, bytestring, casing, containers, cpphs 190598 , hspec, http-client, http-client-tls, http-types, openai-servant 190599 - , servant, servant-client, servant-client-core, text, vector 190600 }: 190601 mkDerivation { 190602 pname = "openai-hs"; 190603 - version = "0.1.1.0"; 190604 - sha256 = "0cfcw1jlsvzzyvxi2wmqn3klh0fr8rpi8ai6sg315ml7ignyfxz5"; 190605 libraryHaskellDepends = [ 190606 - aeson base casing cpphs http-client http-types openai-servant 190607 - servant servant-client text 190608 ]; 190609 testHaskellDepends = [ 190610 aeson base bytestring casing containers cpphs hspec http-client 190611 http-client-tls http-types openai-servant servant servant-client 190612 - servant-client-core text vector 190613 ]; 190614 description = "Unofficial OpenAI client"; 190615 license = lib.licenses.bsd3; ··· 190618 }) {}; 190619 190620 "openai-servant" = callPackage 190621 - ({ mkDerivation, aeson, base, casing, servant, text, time, vector 190622 }: 190623 mkDerivation { 190624 pname = "openai-servant"; 190625 - version = "0.1.0.0"; 190626 - sha256 = "0fn8ram1rnf9qgs7iwl579gdz8z1qfjy6hhgk0n2z1dh28lhgq6d"; 190627 libraryHaskellDepends = [ 190628 - aeson base casing servant text time vector 190629 ]; 190630 description = "Unofficial OpenAI servant types"; 190631 license = lib.licenses.bsd3; 190632 }) {}; 190633 190634 "openapi-petstore" = callPackage ··· 192814 }: 192815 mkDerivation { 192816 pname = "ory-kratos"; 192817 - version = "0.0.5.9"; 192818 - sha256 = "1c4vn8zyv9lakchiip6w80cfxkz7zsgfiwd5mq5dnc6fcsri3c6h"; 192819 libraryHaskellDepends = [ 192820 aeson base containers exceptions http-api-data http-client 192821 http-client-tls http-types mtl network-uri servant servant-client ··· 193835 maintainers = with lib.maintainers; [ peti ]; 193836 }) {}; 193837 193838 "pandoc-citeproc" = callPackage 193839 ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring 193840 , Cabal, containers, data-default, directory, filepath, hs-bibutils ··· 193868 doCheck = false; 193869 description = "Supports using pandoc with citeproc"; 193870 license = lib.licenses.bsd3; 193871 }) {}; 193872 193873 "pandoc-citeproc-preamble" = callPackage ··· 193898 pname = "pandoc-crossref"; 193899 version = "0.3.10.0"; 193900 sha256 = "1yymm8y9hzkbjff7cn63qsvpfks1f1n741vfdiiga66kml8v0zdm"; 193901 isLibrary = true; 193902 isExecutable = true; 193903 enableSeparateDataOutput = true; ··· 194595 license = lib.licenses.bsd3; 194596 }) {}; 194597 194598 "pantry-tmp" = callPackage 194599 ({ mkDerivation, aeson, ansi-terminal, array, base, base-orphans 194600 , base64-bytestring, bytestring, Cabal, conduit, conduit-extra ··· 195254 }: 195255 mkDerivation { 195256 pname = "parameterized-utils"; 195257 - version = "2.1.2.0"; 195258 - sha256 = "0ksyhlg8vmrmdayzi2zpb33xggb7mv7vgbm6kgzr0knxbh3nm7jc"; 195259 libraryHaskellDepends = [ 195260 base base-orphans constraints containers deepseq ghc-prim hashable 195261 hashtables lens mtl template-haskell text th-abstraction vector ··· 195382 }: 195383 mkDerivation { 195384 pname = "parconc-examples"; 195385 - version = "0.4.7"; 195386 - sha256 = "1r05ai6n6dgkqlcv4qlb10yzrjj86408ybz5zlh63qi2y34h9ga7"; 195387 isLibrary = false; 195388 isExecutable = true; 195389 executableHaskellDepends = [ ··· 195961 pname = "parsers"; 195962 version = "0.12.10"; 195963 sha256 = "0v0smxbzk1qpdfkfqqmrzd2dngv3vxba10mkjn9nfm6a309izf8p"; 195964 libraryHaskellDepends = [ 195965 attoparsec base base-orphans binary charset containers mtl parsec 195966 scientific semigroups text transformers unordered-containers ··· 196049 license = lib.licenses.bsd3; 196050 }) {}; 196051 196052 "partage" = callPackage 196053 ({ mkDerivation, base, containers, data-lens-light, data-partition 196054 , dawg-ord, HUnit, mmorph, mtl, pipes, PSQueue, random, tasty ··· 196931 license = lib.licenses.gpl3Plus; 196932 }) {}; 196933 196934 "paymill" = callPackage 196935 ({ mkDerivation, base, hspec }: 196936 mkDerivation { ··· 197327 license = lib.licenses.bsd3; 197328 }) {}; 197329 197330 "pcre2" = callPackage 197331 ({ mkDerivation, base, containers, criterion, hspec 197332 , microlens-platform, mtl, pcre-light, regex-pcre-builtin ··· 198568 }: 198569 mkDerivation { 198570 pname = "persistent"; 198571 - version = "2.11.0.2"; 198572 - sha256 = "09dvwh9hdc50zr6yvbzp8a9n70yjqwa2kzvjm80l9m34p29v8kkc"; 198573 libraryHaskellDepends = [ 198574 aeson attoparsec base base64-bytestring blaze-html bytestring 198575 conduit containers fast-logger http-api-data monad-logger mtl ··· 198586 maintainers = with lib.maintainers; [ psibi ]; 198587 }) {}; 198588 198589 - "persistent_2_11_0_4" = callPackage 198590 ({ mkDerivation, aeson, attoparsec, base, base64-bytestring 198591 - , blaze-html, bytestring, conduit, containers, fast-logger, hspec 198592 - , http-api-data, monad-logger, mtl, path-pieces, resource-pool 198593 - , resourcet, scientific, shakespeare, silently, text, time 198594 - , transformers, unliftio, unliftio-core, unordered-containers 198595 - , vector 198596 }: 198597 mkDerivation { 198598 pname = "persistent"; 198599 - version = "2.11.0.4"; 198600 - sha256 = "1n5wkhfvyqq6p57nkf9yx73kap6spyzam5w12ni8pmd1m6pk77xn"; 198601 libraryHaskellDepends = [ 198602 aeson attoparsec base base64-bytestring blaze-html bytestring 198603 conduit containers fast-logger http-api-data monad-logger mtl 198604 - path-pieces resource-pool resourcet scientific silently text time 198605 - transformers unliftio unliftio-core unordered-containers vector 198606 ]; 198607 testHaskellDepends = [ 198608 aeson attoparsec base base64-bytestring blaze-html bytestring 198609 - containers hspec http-api-data path-pieces scientific shakespeare 198610 - text time transformers unordered-containers vector 198611 ]; 198612 description = "Type-safe, multi-backend data serialization"; 198613 license = lib.licenses.mit; ··· 198816 "persistent-mongoDB" = callPackage 198817 ({ mkDerivation, aeson, base, blaze-html, bson, bytestring, cereal 198818 , conduit, containers, hspec, http-api-data, HUnit, mongoDB 198819 - , network, path-pieces, persistent, persistent-qq 198820 - , persistent-template, persistent-test, process, QuickCheck 198821 - , resource-pool, resourcet, template-haskell, text, time 198822 - , transformers, unliftio-core 198823 }: 198824 mkDerivation { 198825 pname = "persistent-mongoDB"; 198826 - version = "2.11.0.0"; 198827 - sha256 = "19szqr1f028hqhzigvb7sa6r2vm8q9pi5fhvx483ag0agcypmhhb"; 198828 libraryHaskellDepends = [ 198829 aeson base bson bytestring cereal conduit http-api-data mongoDB 198830 network path-pieces persistent resource-pool resourcet text time ··· 198832 ]; 198833 testHaskellDepends = [ 198834 base blaze-html bytestring containers hspec HUnit mongoDB 198835 - persistent persistent-qq persistent-template persistent-test 198836 - process QuickCheck template-haskell text time transformers 198837 - unliftio-core 198838 ]; 198839 description = "Backend for the persistent library using mongoDB"; 198840 license = lib.licenses.mit; ··· 198846 ({ mkDerivation, base, bytestring, conduit, containers 198847 , monad-logger, mtl, persistent, persistent-postgresql 198848 , persistent-sqlite, persistent-template, resource-pool, resourcet 198849 - , resourcet-pool, tasty, tasty-golden, tasty-hunit, text 198850 - , transformers, unliftio, unliftio-core 198851 - }: 198852 - mkDerivation { 198853 - pname = "persistent-mtl"; 198854 - version = "0.2.0.0"; 198855 - sha256 = "0c22frczi2km3z108iz211gl023m69cjc284dwbknabsrl3yg4l5"; 198856 - libraryHaskellDepends = [ 198857 - base conduit containers mtl persistent resource-pool resourcet 198858 - resourcet-pool text transformers unliftio unliftio-core 198859 - ]; 198860 - testHaskellDepends = [ 198861 - base bytestring conduit containers monad-logger persistent 198862 - persistent-postgresql persistent-sqlite persistent-template 198863 - resource-pool resourcet tasty tasty-golden tasty-hunit text 198864 - unliftio 198865 - ]; 198866 - description = "Monad transformer for the persistent API"; 198867 - license = lib.licenses.bsd3; 198868 - }) {}; 198869 - 198870 - "persistent-mtl_0_2_1_0" = callPackage 198871 - ({ mkDerivation, base, bytestring, conduit, containers 198872 - , monad-logger, mtl, persistent, persistent-postgresql 198873 - , persistent-sqlite, persistent-template, resource-pool, resourcet 198874 , tasty, tasty-golden, tasty-hunit, text, transformers, unliftio 198875 , unliftio-core, unliftio-pool 198876 }: ··· 198890 ]; 198891 description = "Monad transformer for the persistent API"; 198892 license = lib.licenses.bsd3; 198893 - hydraPlatforms = lib.platforms.none; 198894 }) {}; 198895 198896 "persistent-mysql" = callPackage ··· 198921 license = lib.licenses.mit; 198922 }) {}; 198923 198924 "persistent-mysql-haskell" = callPackage 198925 ({ mkDerivation, aeson, base, bytestring, conduit, containers 198926 , fast-logger, hspec, HUnit, io-streams, monad-logger ··· 199040 license = lib.licenses.mit; 199041 }) {}; 199042 199043 "persistent-protobuf" = callPackage 199044 ({ mkDerivation, base, bytestring, persistent, protocol-buffers 199045 , protocol-buffers-descriptor, template-haskell, text ··· 199080 license = lib.licenses.mit; 199081 }) {}; 199082 199083 "persistent-ratelimit" = callPackage 199084 ({ mkDerivation, base, time, yesod }: 199085 mkDerivation { ··· 199095 199096 "persistent-redis" = callPackage 199097 ({ mkDerivation, aeson, base, binary, bytestring, hedis 199098 - , http-api-data, mtl, path-pieces, persistent, persistent-template 199099 - , scientific, template-haskell, text, time, transformers 199100 - , utf8-string 199101 }: 199102 mkDerivation { 199103 pname = "persistent-redis"; 199104 - version = "2.5.2.5"; 199105 - sha256 = "0h2bwr5svj36n3axnrgnrzkysg4ywf9d97x4fwwsjgn01gwr262k"; 199106 libraryHaskellDepends = [ 199107 aeson base binary bytestring hedis http-api-data mtl path-pieces 199108 persistent scientific text time transformers utf8-string 199109 ]; 199110 testHaskellDepends = [ 199111 aeson base binary bytestring hedis http-api-data mtl path-pieces 199112 - persistent persistent-template scientific template-haskell text 199113 - time transformers utf8-string 199114 ]; 199115 description = "Backend for persistent library using Redis"; 199116 license = lib.licenses.bsd3; 199117 }) {}; 199118 199119 "persistent-refs" = callPackage ··· 199206 maintainers = with lib.maintainers; [ psibi ]; 199207 }) {inherit (pkgs) sqlite;}; 199208 199209 "persistent-template" = callPackage 199210 ({ mkDerivation, aeson, base, bytestring, containers, criterion 199211 , deepseq, deepseq-generics, file-embed, hspec, http-api-data ··· 199217 pname = "persistent-template"; 199218 version = "2.9.1.0"; 199219 sha256 = "19ilgz8r6p5wy111rb4v0d6cnrj8jfiv2pnzdynpxd9ay66vgbca"; 199220 libraryHaskellDepends = [ 199221 aeson base bytestring containers http-api-data monad-control 199222 monad-logger path-pieces persistent template-haskell text ··· 199234 maintainers = with lib.maintainers; [ psibi ]; 199235 }) {}; 199236 199237 "persistent-template-classy" = callPackage 199238 ({ mkDerivation, base, lens, persistent, persistent-sqlite 199239 , persistent-template, template-haskell, text ··· 199281 broken = true; 199282 }) {}; 199283 199284 "persistent-typed-db" = callPackage 199285 ({ mkDerivation, aeson, base, bytestring, conduit, esqueleto, hspec 199286 , http-api-data, monad-logger, path-pieces, persistent ··· 199305 license = lib.licenses.bsd3; 199306 }) {}; 199307 199308 "persistent-vector" = callPackage 199309 ({ mkDerivation, base, containers, criterion, deepseq, QuickCheck 199310 , test-framework, test-framework-quickcheck2, transformers ··· 200824 }: 200825 mkDerivation { 200826 pname = "pinboard-notes-backup"; 200827 - version = "1.0.5.2"; 200828 - sha256 = "0lhccldfya4pj5446kh23ahyb7vrd33jxrf1xgk4i3xiwv9bvpyy"; 200829 isLibrary = false; 200830 isExecutable = true; 200831 executableHaskellDepends = [ ··· 201646 pname = "pipes-group"; 201647 version = "1.0.12"; 201648 sha256 = "1issfj3syi6lfbcdn3bhlbnlh86s92ldsb04c4ac69xipsgyhwqk"; 201649 - revision = "3"; 201650 - editedCabalFile = "1mqqwv9w65c59lv97k9185rw8dvfcm4bk5n4z18hhgsrcjyr76n9"; 201651 libraryHaskellDepends = [ 201652 base free pipes pipes-parse transformers 201653 ]; ··· 201701 libraryHaskellDepends = [ base containers heaps pipes ]; 201702 description = "Interleave and merge streams of elements"; 201703 license = lib.licenses.bsd3; 201704 }) {}; 201705 201706 "pipes-io" = callPackage ··· 201979 broken = true; 201980 }) {}; 201981 201982 "pipes-random" = callPackage 201983 ({ mkDerivation, base, mwc-random, pipes, vector }: 201984 mkDerivation { ··· 202310 ({ mkDerivation, base, JuicyPixels, lens, optparse-applicative }: 202311 mkDerivation { 202312 pname = "pixel-printer"; 202313 - version = "0.1.1"; 202314 - sha256 = "179r8715rmd7njan4jl0g3jy0w0xq420nmkw9arvp50my8ag610f"; 202315 isLibrary = true; 202316 isExecutable = true; 202317 libraryHaskellDepends = [ base JuicyPixels lens ]; ··· 202394 ]; 202395 description = "Pixiv API binding based on servant-client"; 202396 license = lib.licenses.bsd3; 202397 }) {}; 202398 202399 "piyo" = callPackage ··· 202515 license = "unknown"; 202516 hydraPlatforms = lib.platforms.none; 202517 }) {}; 202518 202519 "placeholders" = callPackage 202520 ({ mkDerivation, base, template-haskell }: ··· 203760 license = lib.licenses.bsd3; 203761 }) {}; 203762 203763 "poly" = callPackage 203764 ({ mkDerivation, base, deepseq, doctest, finite-typelits, gauge 203765 , mod, primitive, QuickCheck, quickcheck-classes, semirings, tasty ··· 203968 }: 203969 mkDerivation { 203970 pname = "polysemy"; 203971 - version = "1.4.0.0"; 203972 - sha256 = "1zbfx3l390kqxq45lb1wms72cxckwh3sl7vk52q68d0l7j5cvn8n"; 203973 setupHaskellDepends = [ base Cabal cabal-doctest ]; 203974 libraryHaskellDepends = [ 203975 async base containers first-class-families mtl QuickCheck stm syb ··· 204022 }: 204023 mkDerivation { 204024 pname = "polysemy-chronos"; 204025 - version = "0.1.0.0"; 204026 - sha256 = "1a4rm41x225kvmyfcrvqk0aw89fy16hzms3l1gij0b2xh5c5lfyw"; 204027 libraryHaskellDepends = [ 204028 aeson base chronos containers polysemy polysemy-plugin 204029 polysemy-time text ··· 204033 polysemy-test polysemy-time tasty tasty-hedgehog text 204034 ]; 204035 description = "Polysemy effect for chronos"; 204036 license = "BSD-2-Clause-Patent"; 204037 hydraPlatforms = lib.platforms.none; 204038 broken = true; ··· 204088 , case-insensitive, co-log-core, co-log-polysemy, composition 204089 , containers, data-default, either, hedgehog, http-client 204090 , http-client-tls, http-types, lens, network, polysemy 204091 - , polysemy-plugin, relude, servant, servant-client, servant-server 204092 - , string-interpolate, tasty, tasty-hedgehog, template-haskell, text 204093 - , time, warp 204094 }: 204095 mkDerivation { 204096 pname = "polysemy-http"; 204097 - version = "0.3.0.0"; 204098 - sha256 = "0ahx7rxl8xa1v48i35bvjpz1wnbcl63k6xxzikrh13z3fd0ci704"; 204099 libraryHaskellDepends = [ 204100 aeson ansi-terminal base bytestring case-insensitive co-log-core 204101 co-log-polysemy composition containers data-default either 204102 - http-client http-client-tls http-types lens polysemy 204103 polysemy-plugin relude string-interpolate template-haskell text 204104 time 204105 ]; ··· 204107 aeson ansi-terminal base bytestring case-insensitive co-log-core 204108 co-log-polysemy composition containers data-default either hedgehog 204109 http-client http-client-tls http-types lens network polysemy 204110 - polysemy-plugin relude servant servant-client servant-server 204111 - string-interpolate tasty tasty-hedgehog template-haskell text time 204112 - warp 204113 ]; 204114 description = "Polysemy effect for http-client"; 204115 license = "BSD-2-Clause-Patent"; ··· 204133 license = lib.licenses.mit; 204134 }) {}; 204135 204136 "polysemy-methodology" = callPackage 204137 ({ mkDerivation, base, co-log-polysemy, polysemy, polysemy-plugin 204138 , polysemy-zoo ··· 204221 }: 204222 mkDerivation { 204223 pname = "polysemy-plugin"; 204224 - version = "0.2.5.2"; 204225 - sha256 = "13qfbgwn187vgdqs2rkl5lhcfbaw992qnlpz90pr9nw64k2ylcmp"; 204226 setupHaskellDepends = [ base Cabal cabal-doctest ]; 204227 libraryHaskellDepends = [ 204228 base containers ghc ghc-tcplugins-extra polysemy syb transformers ··· 204264 }: 204265 mkDerivation { 204266 pname = "polysemy-test"; 204267 - version = "0.3.0.2"; 204268 - sha256 = "16xkg6iwb7ms3k7mbrwa152izgs520x6jvc5bwp9pl0mk70qx3nw"; 204269 libraryHaskellDepends = [ 204270 base containers either hedgehog path path-io polysemy 204271 polysemy-plugin relude string-interpolate tasty tasty-hedgehog ··· 204290 }: 204291 mkDerivation { 204292 pname = "polysemy-time"; 204293 - version = "0.1.1.0"; 204294 - sha256 = "1az7mf2jvd0vhsjpswa37rxrj760n5n3vhxpb4rlx28g8nx2jmkj"; 204295 libraryHaskellDepends = [ 204296 aeson base composition containers data-default either polysemy 204297 relude string-interpolate template-haskell text time torsor ··· 204575 204576 "pontarius-xmpp" = callPackage 204577 ({ mkDerivation, async, attoparsec, base, base64-bytestring, binary 204578 - , bytestring, Cabal, conduit, configurator, containers, criterion 204579 - , crypto-api, crypto-random, cryptohash, cryptohash-cryptoapi 204580 - , data-default, derive, directory, dns, exceptions, filepath 204581 - , hslogger, hspec, hspec-expectations, HUnit, iproute, lens 204582 - , lens-family, lifted-base, mtl, network, profunctors, pureMD5 204583 - , QuickCheck, quickcheck-instances, random, ranges, resourcet 204584 - , smallcheck, split, stm, stringprep, tasty, tasty-hspec 204585 - , tasty-hunit, tasty-quickcheck, tasty-th, template-haskell, text 204586 - , tls, transformers, unbounded-delays, void, x509-system 204587 - , xml-conduit, xml-picklers, xml-types 204588 }: 204589 mkDerivation { 204590 pname = "pontarius-xmpp"; 204591 - version = "0.5.6.3"; 204592 - sha256 = "0zfl6brikkb4pjgvl4lfvjjylmiq6gyv46mi21nrlk3vmdni9dd5"; 204593 libraryHaskellDepends = [ 204594 attoparsec base base64-bytestring binary bytestring conduit 204595 containers crypto-api crypto-random cryptohash cryptohash-cryptoapi 204596 - data-default dns exceptions hslogger iproute lens-family 204597 lifted-base mtl network profunctors pureMD5 random resourcet split 204598 stm stringprep template-haskell text tls transformers 204599 unbounded-delays void x509-system xml-conduit xml-picklers 204600 xml-types 204601 ]; 204602 testHaskellDepends = [ 204603 - async base Cabal conduit configurator containers data-default 204604 - derive directory filepath hslogger hspec hspec-expectations HUnit 204605 - lens mtl network QuickCheck quickcheck-instances ranges smallcheck 204606 - stm stringprep tasty tasty-hspec tasty-hunit tasty-quickcheck 204607 - tasty-th text tls transformers xml-picklers xml-types 204608 ]; 204609 - benchmarkHaskellDepends = [ base criterion ]; 204610 description = "An XMPP client library"; 204611 license = lib.licenses.bsd3; 204612 hydraPlatforms = lib.platforms.none; ··· 204619 }: 204620 mkDerivation { 204621 pname = "pontarius-xmpp-extras"; 204622 - version = "0.1.0.6"; 204623 - sha256 = "12av8vgnj9iy0bdcb13gc4x28n3c7ahb3221xla78sss5r4rhq0z"; 204624 libraryHaskellDepends = [ 204625 base data-default pontarius-xmpp text time xml-types 204626 ]; ··· 205455 license = lib.licenses.mit; 205456 }) {}; 205457 205458 "postgresql-common" = callPackage 205459 ({ mkDerivation, attoparsec, base, bytestring, postgresql-simple }: 205460 mkDerivation { ··· 205658 pname = "postgresql-placeholder-converter"; 205659 version = "0.2.0.0"; 205660 sha256 = "0jpsa6c2m0m8d9abki585krf9pvj5p4rsayg1qs963r4vg1m8p23"; 205661 libraryHaskellDepends = [ 205662 attoparsec base bytestring either-result mtl utf8-string 205663 ]; ··· 205671 ({ mkDerivation, attoparsec, base, base16-bytestring, bytestring 205672 , Cabal, cassava, clock, containers, convertible, cryptohash-md5 205673 , data-default-class, deepseq, directory, doctest 205674 - , double-conversion, filepath, HDBC, HDBC-postgresql, HDBC-session 205675 - , homotuple, hourglass, hspec, hspec-core, HUnit, list-tuple 205676 - , memory, mtl, network, old-time, OneTuple, Only 205677 - , optparse-applicative, persistable-record, postgresql-binary 205678 - , postgresql-libpq, postgresql-placeholder-converter 205679 - , postgresql-simple, pretty-hex, QuickCheck, random-shuffle 205680 - , relational-query, relational-query-HDBC, relational-record 205681 - , safe-exceptions, scientific, single-tuple, text, time 205682 - , utf8-string, vector 205683 }: 205684 mkDerivation { 205685 pname = "postgresql-pure"; 205686 - version = "0.2.2.0"; 205687 - sha256 = "16k03m1yy8ca5rik4av76p883nvmk0w4ak9pva2i5l57vv8d8hc6"; 205688 setupHaskellDepends = [ base Cabal directory filepath ]; 205689 libraryHaskellDepends = [ 205690 attoparsec base base16-bytestring bytestring containers convertible 205691 - cryptohash-md5 data-default-class double-conversion HDBC homotuple 205692 - list-tuple memory mtl network OneTuple Only postgresql-binary 205693 - postgresql-placeholder-converter pretty-hex safe-exceptions 205694 - scientific single-tuple text time utf8-string 205695 ]; 205696 testHaskellDepends = [ 205697 - attoparsec base base16-bytestring bytestring containers convertible 205698 - cryptohash-md5 data-default-class doctest double-conversion HDBC 205699 - HDBC-postgresql HDBC-session homotuple hspec hspec-core HUnit 205700 - list-tuple memory mtl network old-time OneTuple Only 205701 - persistable-record postgresql-binary 205702 - postgresql-placeholder-converter pretty-hex QuickCheck 205703 - relational-query relational-query-HDBC relational-record 205704 - safe-exceptions scientific single-tuple text time utf8-string 205705 ]; 205706 benchmarkHaskellDepends = [ 205707 - attoparsec base base16-bytestring bytestring cassava clock 205708 - containers convertible cryptohash-md5 data-default-class deepseq 205709 - double-conversion HDBC homotuple hourglass list-tuple memory mtl 205710 - network OneTuple Only optparse-applicative postgresql-binary 205711 - postgresql-libpq postgresql-placeholder-converter postgresql-simple 205712 - pretty-hex random-shuffle safe-exceptions scientific single-tuple 205713 - text time utf8-string vector 205714 ]; 205715 description = "pure Haskell PostgreSQL driver"; 205716 license = lib.licenses.bsd3; ··· 205782 pname = "postgresql-simple"; 205783 version = "0.6.4"; 205784 sha256 = "0rz2bklxp4pvbxb2w49h5p6pbwabn6d5d4j4mrya4fpa0d13k43d"; 205785 - revision = "1"; 205786 - editedCabalFile = "017qfhml58psv72qnyb2hg6r8jl1mj8jmr2q5p3hgd0lcsxiq0qi"; 205787 libraryHaskellDepends = [ 205788 aeson attoparsec base bytestring bytestring-builder 205789 case-insensitive containers hashable Only postgresql-libpq ··· 205982 ]; 205983 description = "Parse postgres:// url into ConnectInfo"; 205984 license = lib.licenses.mit; 205985 }) {}; 205986 205987 "postgresql-syntax" = callPackage ··· 206142 license = lib.licenses.bsd3; 206143 }) {}; 206144 206145 "postgresql-typed-lifted" = callPackage 206146 ({ mkDerivation, base, base-unicode-symbols, bytestring, exceptions 206147 , lens, monad-control, postgresql-typed, transformers-base ··· 208126 ]; 208127 description = "Extras for the \"primitive\" library"; 208128 license = lib.licenses.mit; 208129 - hydraPlatforms = lib.platforms.none; 208130 - broken = true; 208131 }) {}; 208132 208133 "primitive-foreign" = callPackage ··· 210123 ]; 210124 description = "Adapting proto-lens to optparse-applicative ReadMs"; 210125 license = lib.licenses.bsd3; 210126 }) {}; 210127 210128 "proto-lens-protobuf-types" = callPackage ··· 210839 }: 210840 mkDerivation { 210841 pname = "ptr"; 210842 - version = "0.16.7.2"; 210843 - sha256 = "0d00albfv3zbbq54x9i8riwbpi61mpz7ymr8y1whag2lrw4diyna"; 210844 libraryHaskellDepends = [ 210845 base bytestring contravariant profunctors text time vector 210846 ]; ··· 210867 license = lib.licenses.mit; 210868 hydraPlatforms = lib.platforms.none; 210869 broken = true; 210870 }) {}; 210871 210872 "pub" = callPackage ··· 212393 ]; 212394 description = "Decrypt files encrypted by QNAP's Hybrid Backup Sync"; 212395 license = lib.licenses.bsd3; 212396 }) {}; 212397 212398 "qq-literals" = callPackage ··· 212634 license = lib.licenses.mit; 212635 }) {}; 212636 212637 "quandl-api" = callPackage 212638 ({ mkDerivation, aeson, base, blaze-builder, bytestring 212639 , http-conduit, http-types, syb, text, time, time-locale-compat ··· 213528 ]; 213529 description = "Wrapper for the QuickJS Javascript Engine"; 213530 license = lib.licenses.mit; 213531 }) {}; 213532 213533 "quicklz" = callPackage ··· 215232 ]; 215233 description = "Memory efficient sets with ranges of elements"; 215234 license = lib.licenses.mit; 215235 }) {}; 215236 215237 "range-space" = callPackage ··· 215818 "rattletrap" = callPackage 215819 ({ mkDerivation, aeson, aeson-pretty, array, base, bytestring 215820 , containers, filepath, http-client, http-client-tls, HUnit, text 215821 - , transformers 215822 }: 215823 mkDerivation { 215824 pname = "rattletrap"; 215825 - version = "11.0.0"; 215826 - sha256 = "10xr9fv0xdiz173i5apz29sh66bvya3ris2c7ig2qs8dfbqi165s"; 215827 isLibrary = true; 215828 isExecutable = true; 215829 libraryHaskellDepends = [ 215830 aeson aeson-pretty array base bytestring containers filepath 215831 - http-client http-client-tls text transformers 215832 ]; 215833 executableHaskellDepends = [ base ]; 215834 testHaskellDepends = [ base bytestring filepath HUnit ]; ··· 216137 license = lib.licenses.mit; 216138 }) {}; 216139 216140 "rdf4h" = callPackage 216141 ({ mkDerivation, algebraic-graphs, attoparsec, base, binary 216142 , bytestring, containers, criterion, deepseq, directory, exceptions ··· 216759 ]; 216760 description = "Extracts text of main article from HTML document"; 216761 license = lib.licenses.bsd3; 216762 }) {}; 216763 216764 "readable" = callPackage ··· 217048 license = lib.licenses.mit; 217049 }) {}; 217050 217051 - "rebase_1_10_0_1" = callPackage 217052 ({ mkDerivation, base, bifunctors, bytestring, comonad, containers 217053 - , contravariant, contravariant-extras, deepseq, dlist, either 217054 - , hashable, hashable-time, mtl, profunctors, scientific, selective 217055 - , semigroupoids, stm, text, time, transformers 217056 - , unordered-containers, uuid, vector, vector-instances, void 217057 }: 217058 mkDerivation { 217059 pname = "rebase"; 217060 - version = "1.10.0.1"; 217061 - sha256 = "1b0fdihl5lg567ik7ysiiz9sxiknzj4vsxqhj3x9hcv7b1xh69d7"; 217062 libraryHaskellDepends = [ 217063 - base bifunctors bytestring comonad containers contravariant 217064 - contravariant-extras deepseq dlist either hashable hashable-time 217065 - mtl profunctors scientific selective semigroupoids stm text time 217066 - transformers unordered-containers uuid vector vector-instances void 217067 ]; 217068 description = "A more progressive alternative to the \"base\" package"; 217069 license = lib.licenses.mit; ··· 217362 }: 217363 mkDerivation { 217364 pname = "recursion-schemes"; 217365 - version = "5.2.2"; 217366 - sha256 = "02p1blgxd0nyzrgqw8ghm2a680f2a05rn1nrqqcjyh1whksl2g3x"; 217367 libraryHaskellDepends = [ 217368 base base-orphans comonad containers data-fix free template-haskell 217369 th-abstraction transformers ··· 219726 testToolDepends = [ tasty-discover ]; 219727 description = "data structure for assembling components"; 219728 license = lib.licenses.mit; 219729 }) {}; 219730 219731 "registry-hedgehog" = callPackage ··· 219736 }: 219737 mkDerivation { 219738 pname = "registry-hedgehog"; 219739 - version = "0.3.0.0"; 219740 - sha256 = "0ardmwsaxlk9g062bf2xiigbjbnqbf7iz9s8xwjzj8nh8rrs252z"; 219741 libraryHaskellDepends = [ 219742 base containers hedgehog mmorph multimap protolude registry tasty 219743 tasty-discover tasty-hedgehog tasty-th template-haskell text ··· 219967 ]; 219968 description = "Sensible RLP encoding"; 219969 license = lib.licenses.mit; 219970 }) {}; 219971 219972 "relation" = callPackage ··· 221355 license = lib.licenses.mit; 221356 }) {}; 221357 221358 - "rerebase_1_10_0_1" = callPackage 221359 ({ mkDerivation, rebase }: 221360 mkDerivation { 221361 pname = "rerebase"; 221362 - version = "1.10.0.1"; 221363 - sha256 = "0kqcd80a4z1hynmdwb78dzif0iim6gwk9pdzkgzspf8kxir5adf3"; 221364 libraryHaskellDepends = [ rebase ]; 221365 description = "Reexports from \"base\" with a bunch of other standard libraries"; 221366 license = lib.licenses.mit; ··· 221517 pname = "resolv"; 221518 version = "0.1.2.0"; 221519 sha256 = "0wa6wsh6i52q4ah2z0hgzlks325kigch4yniz0y15nw4skxbm8l1"; 221520 - revision = "1"; 221521 - editedCabalFile = "19pm4cg28viyl7r0viz4wfmm9w4nqxkjlb6kknfqcajjqmdacqad"; 221522 libraryHaskellDepends = [ 221523 base base16-bytestring binary bytestring containers 221524 ]; ··· 226951 }: 226952 mkDerivation { 226953 pname = "sbv"; 226954 - version = "8.12"; 226955 - sha256 = "0qr9z5vm4py072a23nc263ma7k5hg6n9xy2pq9pra8z16sq4bnb3"; 226956 enableSeparateDataOutput = true; 226957 libraryHaskellDepends = [ 226958 array async base containers deepseq directory filepath libBF mtl ··· 226980 }: 226981 mkDerivation { 226982 pname = "sbvPlugin"; 226983 - version = "0.12"; 226984 - sha256 = "1c413kqbznl1cc3l4lbpk3d8c2jzl62znf7zm89x5dcw7wyfpz0y"; 226985 libraryHaskellDepends = [ 226986 base containers ghc ghc-prim mtl sbv template-haskell 226987 ]; ··· 228481 license = lib.licenses.gpl2Only; 228482 }) {}; 228483 228484 "scrypt" = callPackage 228485 ({ mkDerivation, base, base64-bytestring, bytestring, entropy 228486 , HUnit, QuickCheck, test-framework, test-framework-hunit ··· 229267 testToolDepends = [ hspec-discover ]; 229268 description = "Bindings for secp256k1"; 229269 license = lib.licenses.mit; 229270 }) {inherit (pkgs) secp256k1;}; 229271 229272 "secp256k1-legacy" = callPackage ··· 230581 pname = "serialise"; 230582 version = "0.2.3.0"; 230583 sha256 = "0vp4wyxpximpx10pssfgdsir1pc23zb62fg3kj3iblpzqfrryy69"; 230584 - revision = "1"; 230585 - editedCabalFile = "1pg6hkim1qcrnkj2rqw8xz5mxkrh0jadlsgwm2v1xgkpgfi1dk1r"; 230586 libraryHaskellDepends = [ 230587 array base bytestring cborg containers ghc-prim half hashable 230588 primitive text time unordered-containers vector ··· 230643 ({ mkDerivation, base, bytestring, HUnit, unix }: 230644 mkDerivation { 230645 pname = "serialport"; 230646 - version = "0.5.1"; 230647 - sha256 = "1ys3rjw1a3cghd2slnn43hvc3pdgwfy3rs19j1kjfshasr7d375m"; 230648 libraryHaskellDepends = [ base bytestring unix ]; 230649 testHaskellDepends = [ base bytestring HUnit ]; 230650 description = "Cross platform serial port library"; 230651 license = lib.licenses.bsd3; 230652 }) {}; 230653 230654 "serokell-util" = callPackage ··· 233910 pname = "setlocale"; 233911 version = "1.0.0.9"; 233912 sha256 = "18b6xafspzxrmz5m9r9nzy3z053crqi59xc8n8aqd4gw0pvqdcrv"; 233913 - revision = "2"; 233914 - editedCabalFile = "0l0hlxhjspm05hxd06972ilw4c3ni72mnzcyljg3a01i8pxi53cl"; 233915 libraryHaskellDepends = [ base ]; 233916 description = "Haskell bindings to setlocale"; 233917 license = lib.licenses.bsd3; 233918 }) {}; 233919 233920 "setoid" = callPackage ··· 234726 ]; 234727 description = "Shake rules for CSS"; 234728 license = lib.licenses.bsd3; 234729 }) {}; 234730 234731 "shake-pack" = callPackage ··· 235401 license = lib.licenses.mpl20; 235402 }) {}; 235403 235404 "shellout" = callPackage 235405 ({ mkDerivation, async, base, stm, text, typed-process }: 235406 mkDerivation { ··· 236262 ]; 236263 description = "Hmac sha256 signature json and http payload"; 236264 license = lib.licenses.bsd3; 236265 }) {}; 236266 236267 "signed-multiset" = callPackage ··· 236272 sha256 = "0pxi6g095axf9x6hsiqf0ilsjlws4zvl0pjfjamjyyl1wj82h747"; 236273 libraryHaskellDepends = [ base containers ]; 236274 description = "Multisets with negative membership"; 236275 license = lib.licenses.bsd3; 236276 hydraPlatforms = lib.platforms.none; 236277 broken = true; ··· 236886 license = lib.licenses.bsd3; 236887 }) {}; 236888 236889 "simple-pascal" = callPackage 236890 ({ mkDerivation, base, containers, filepath, mtl, parsec 236891 , simple-stacked-vm ··· 237033 ({ mkDerivation, base, process }: 237034 mkDerivation { 237035 pname = "simple-smt"; 237036 - version = "0.9.5"; 237037 - sha256 = "0bwb3r2gqm81nmf0hc0mgj8vp2a48kmzx0h7h42lprp4d4irwmy2"; 237038 libraryHaskellDepends = [ base process ]; 237039 description = "A simple way to interact with an SMT solver process"; 237040 license = lib.licenses.bsd3; ··· 237052 testHaskellDepends = [ base mtl parsec pretty tasty tasty-hunit ]; 237053 description = "A parser for SQL"; 237054 license = lib.licenses.bsd3; 237055 }) {}; 237056 237057 "simple-src-utils" = callPackage ··· 237513 pname = "single-tuple"; 237514 version = "0.1.1.0"; 237515 sha256 = "1cviix5did4pm4bimg12v2qa9ms5icf19k3iz13g07d5q9jyiwji"; 237516 libraryHaskellDepends = [ base OneTuple Only ]; 237517 testHaskellDepends = [ base hspec OneTuple Only ]; 237518 testToolDepends = [ hspec-discover ]; ··· 237652 ]; 237653 description = "A promoted and singled version of the base library"; 237654 license = lib.licenses.bsd3; 237655 }) {}; 237656 237657 "singletons-presburger" = callPackage ··· 237685 ]; 237686 description = "A framework for generating singleton types"; 237687 license = lib.licenses.bsd3; 237688 }) {}; 237689 237690 "singnal" = callPackage ··· 238279 }: 238280 mkDerivation { 238281 pname = "skylighting"; 238282 - version = "0.10.4.1"; 238283 - sha256 = "1a1s0fvfbq9q4fy72192mh9sdxz81cpl2z6ghsbh7prfl2kbqsiv"; 238284 configureFlags = [ "-fexecutable" ]; 238285 isLibrary = true; 238286 isExecutable = true; ··· 238294 license = lib.licenses.gpl2Only; 238295 }) {}; 238296 238297 - "skylighting_0_10_5" = callPackage 238298 ({ mkDerivation, base, binary, blaze-html, bytestring, containers 238299 , pretty-show, skylighting-core, text 238300 }: 238301 mkDerivation { 238302 pname = "skylighting"; 238303 - version = "0.10.5"; 238304 - sha256 = "09f21wkw8n5bjdn5bbrqphq4f44gipd1cb9b0ikjn9zrggglfnx9"; 238305 configureFlags = [ "-fexecutable" ]; 238306 isLibrary = true; 238307 isExecutable = true; ··· 238326 }: 238327 mkDerivation { 238328 pname = "skylighting-core"; 238329 - version = "0.10.4.1"; 238330 - sha256 = "07pnwixyi4v24412j6fs2j5kip2j2rx5fakpdiczffwma4jagv73"; 238331 isLibrary = true; 238332 isExecutable = true; 238333 libraryHaskellDepends = [ ··· 238347 license = lib.licenses.bsd3; 238348 }) {}; 238349 238350 - "skylighting-core_0_10_5" = callPackage 238351 ({ mkDerivation, aeson, ansi-terminal, attoparsec, base 238352 , base64-bytestring, binary, blaze-html, bytestring 238353 , case-insensitive, colour, containers, criterion, Diff, directory ··· 238357 }: 238358 mkDerivation { 238359 pname = "skylighting-core"; 238360 - version = "0.10.5"; 238361 - sha256 = "1iaisswfg8ab6rd11002390jfxr309qyvlm85h57mi8svwxk09x2"; 238362 isLibrary = true; 238363 isExecutable = true; 238364 libraryHaskellDepends = [ ··· 238563 ]; 238564 description = "Slack API Request Verification HMAC"; 238565 license = lib.licenses.mit; 238566 }) {}; 238567 238568 "slack-web" = callPackage ··· 238706 }: 238707 mkDerivation { 238708 pname = "slick"; 238709 - version = "1.1.0.0"; 238710 - sha256 = "1a6zsp308ikqzdxy26phb04bk4hr8lmw1i73mwydg65yd42c8zjx"; 238711 libraryHaskellDepends = [ 238712 aeson base bytestring directory extra mustache pandoc shake text 238713 unordered-containers ··· 238776 }) {}; 238777 238778 "slist" = callPackage 238779 - ({ mkDerivation, base, doctest, Glob }: 238780 - mkDerivation { 238781 - pname = "slist"; 238782 - version = "0.1.1.0"; 238783 - sha256 = "046v580i8kxx9fpsvavwpydyfsffky3m735c45dafixrkbhjz55d"; 238784 - libraryHaskellDepends = [ base ]; 238785 - testHaskellDepends = [ base doctest Glob ]; 238786 - description = "Sized list"; 238787 - license = lib.licenses.mpl20; 238788 - }) {}; 238789 - 238790 - "slist_0_2_0_0" = callPackage 238791 ({ mkDerivation, base, containers, doctest, Glob, hedgehog, hspec 238792 , hspec-hedgehog 238793 }: ··· 238801 ]; 238802 description = "Sized list"; 238803 license = lib.licenses.mpl20; 238804 - hydraPlatforms = lib.platforms.none; 238805 }) {}; 238806 238807 "sloane" = callPackage ··· 239269 license = lib.licenses.bsd3; 239270 }) {}; 239271 239272 "smash-aeson" = callPackage 239273 ({ mkDerivation, aeson, base, smash, unordered-containers }: 239274 mkDerivation { ··· 239317 libraryHaskellDepends = [ base optics-core smash ]; 239318 description = "Optics for the `smash` library using `optics-core`"; 239319 license = lib.licenses.bsd3; 239320 }) {}; 239321 239322 "smcdel" = callPackage ··· 243236 libraryHaskellDepends = [ base containers ghc hlint stm ]; 243237 description = "HLint as a GHC source plugin"; 243238 license = lib.licenses.isc; 243239 }) {}; 243240 243241 "split" = callPackage ··· 246566 ]; 246567 description = "Containers for STM"; 246568 license = lib.licenses.mit; 246569 - hydraPlatforms = lib.platforms.none; 246570 - broken = true; 246571 }) {}; 246572 246573 "stm-delay" = callPackage ··· 246637 ]; 246638 description = "STM-specialised Hash Array Mapped Trie"; 246639 license = lib.licenses.mit; 246640 - hydraPlatforms = lib.platforms.none; 246641 - broken = true; 246642 }) {}; 246643 246644 "stm-incremental" = callPackage ··· 247750 broken = true; 247751 }) {}; 247752 247753 "streaming-osm" = callPackage 247754 ({ mkDerivation, attoparsec, base, bytestring, containers 247755 , resourcet, streaming, streaming-attoparsec, streaming-bytestring ··· 248997 testHaskellDepends = [ base bytestring text ]; 248998 description = "Verification of Stripe webhook signatures"; 248999 license = lib.licenses.mit; 249000 }) {}; 249001 249002 "stripe-tests" = callPackage ··· 250439 ]; 250440 description = "Integration to use sv with cassava's parser"; 250441 license = lib.licenses.bsd3; 250442 }) {}; 250443 250444 "sv-core" = callPackage ··· 250466 ]; 250467 description = "Encode and decode separated values (CSV, PSV, ...)"; 250468 license = lib.licenses.bsd3; 250469 }) {}; 250470 250471 "sv-svfactor" = callPackage ··· 250978 license = lib.licenses.bsd3; 250979 }) {}; 250980 250981 "sws" = callPackage 250982 ({ mkDerivation, asn1-encoding, asn1-types, base, bytestring 250983 , containers, cryptonite, directory, filepath, hourglass ··· 252438 license = lib.licenses.mit; 252439 }) {}; 252440 252441 "system-inotify" = callPackage 252442 ({ mkDerivation, base, bytestring }: 252443 mkDerivation { ··· 253975 testToolDepends = [ tasty-discover ]; 253976 description = "A command-line kanban board/task manager"; 253977 license = lib.licenses.bsd3; 253978 - hydraPlatforms = lib.platforms.none; 253979 - broken = true; 253980 }) {}; 253981 253982 "taskpool" = callPackage ··· 254006 pname = "taskwarrior"; 254007 version = "0.3.0.0"; 254008 sha256 = "1h24d799q1s6b36hd40bxa4c9m1izkgh6j7p2jv1p6cxngz28ni0"; 254009 - revision = "3"; 254010 - editedCabalFile = "1dma42d3fkiqphya8ksqy55nbyqk45hm65rrnj2y5sn2my5vncq9"; 254011 libraryHaskellDepends = [ 254012 aeson base bytestring containers process random text time 254013 unordered-containers uuid ··· 254109 ({ mkDerivation, base, containers, deepseq, tasty }: 254110 mkDerivation { 254111 pname = "tasty-bench"; 254112 - version = "0.2.2"; 254113 - sha256 = "0x6kg8n778nysv3b7j31bnh62h5srid35nhmvr76bzba4qdgx258"; 254114 libraryHaskellDepends = [ base containers deepseq tasty ]; 254115 description = "Featherlight benchmark framework"; 254116 license = lib.licenses.mit; 254117 }) {}; 254118 254119 - "tasty-bench_0_2_3" = callPackage 254120 ({ mkDerivation, base, containers, deepseq, tasty }: 254121 mkDerivation { 254122 pname = "tasty-bench"; 254123 - version = "0.2.3"; 254124 - sha256 = "16273rxlvjh960mdlhkpggx8rbza1n18fxl9m9yi8dhkli4g0w6a"; 254125 libraryHaskellDepends = [ base containers deepseq tasty ]; 254126 description = "Featherlight benchmark framework"; 254127 license = lib.licenses.mit; ··· 254255 testHaskellDepends = [ aeson base tasty tasty-hunit ]; 254256 description = "Grade your tasty-testsuite"; 254257 license = lib.licenses.bsd3; 254258 }) {}; 254259 254260 "tasty-groundhog-converters" = callPackage ··· 254757 libraryHaskellDepends = [ base tasty ]; 254758 description = "Test vector support for tasty"; 254759 license = lib.licenses.bsd3; 254760 }) {}; 254761 254762 "tasty-th" = callPackage ··· 255626 broken = true; 255627 }) {}; 255628 255629 - "template-haskell_2_16_0_0" = callPackage 255630 ({ mkDerivation, base, ghc-boot-th, ghc-prim, pretty }: 255631 mkDerivation { 255632 pname = "template-haskell"; 255633 - version = "2.16.0.0"; 255634 - sha256 = "1nk1cv35szp80qkhbyh5gn6vn194zzl0wz186qrqdrdx3a9r9w4g"; 255635 libraryHaskellDepends = [ base ghc-boot-th ghc-prim pretty ]; 255636 description = "Support library for Template Haskell"; 255637 license = lib.licenses.bsd3; ··· 257179 }: 257180 mkDerivation { 257181 pname = "testcontainers"; 257182 - version = "0.3.0.0"; 257183 - sha256 = "0iibmfb5ps7i9d35pwj22a8dxn6b31hmdzswcdmbhdbkq06534hj"; 257184 libraryHaskellDepends = [ 257185 aeson aeson-optics base bytestring exceptions mtl network 257186 optics-core process resourcet tasty text unliftio-core ··· 257525 license = lib.licenses.mit; 257526 }) {}; 257527 257528 "text-containers" = callPackage 257529 ({ mkDerivation, base, bytestring, containers, deepseq, ghc-prim 257530 , hashable, QuickCheck, quickcheck-instances, tasty ··· 259137 license = lib.licenses.mit; 259138 }) {}; 259139 259140 "thank-you-stars" = callPackage 259141 ({ mkDerivation, aeson, base, bytestring, Cabal, containers 259142 , directory, filepath, hackage-db, hspec, req, split, text ··· 262479 }: 262480 mkDerivation { 262481 pname = "too-many-cells"; 262482 - version = "2.1.1.0"; 262483 - sha256 = "0ysixw2ab0m2gmh7aqn2qhrc5gb6habjdif7f2bf7a1n29rih8x6"; 262484 isLibrary = true; 262485 isExecutable = true; 262486 libraryHaskellDepends = [ ··· 263095 }: 263096 mkDerivation { 263097 pname = "tracing"; 263098 - version = "0.0.5.2"; 263099 - sha256 = "0h0ga56pikym7igqzbb4lm1qnjnfzn533z0mx7jz3hjpgflk8xxs"; 263100 libraryHaskellDepends = [ 263101 aeson base base16-bytestring bytestring case-insensitive containers 263102 http-client mtl network random stm text time transformers unliftio ··· 263106 ]; 263107 description = "Distributed tracing"; 263108 license = lib.licenses.bsd3; 263109 }) {}; 263110 263111 "tracing-control" = callPackage ··· 263129 ]; 263130 description = "Distributed tracing"; 263131 license = lib.licenses.bsd3; 263132 }) {}; 263133 263134 "tracked-files" = callPackage ··· 265141 license = lib.licenses.mit; 265142 }) {}; 265143 265144 "ttl-hashtables" = callPackage 265145 ({ mkDerivation, base, clock, containers, data-default, failable 265146 , hashable, hashtables, hspec, mtl, transformers ··· 265184 265185 "ttn-client" = callPackage 265186 description = "GLUT events via a Kafka message broker"; 265187 - , cayene-lpp, config-ini, directory, filepath, net-mqtt 265188 , network-uri, stm, text, time, ttn 265189 }: 265190 mkDerivation { 265191 pname = "ttn-client"; 265192 - version = "0.2.0.0"; 265193 - sha256 = "1rvnn57hr2yqj383rknnnpy4k073r8i8cjx6fg4xb1ywwk9v3i86"; 265194 isLibrary = true; 265195 isExecutable = true; 265196 libraryHaskellDepends = [ 265197 - async base base64-bytestring binary bytestring cayene-lpp 265198 config-ini directory filepath net-mqtt network-uri stm text ttn 265199 ]; 265200 executableHaskellDepends = [ base text time ttn ]; ··· 265579 pname = "turtle"; 265580 version = "1.5.21"; 265581 sha256 = "0sb1xnmvqby1lcg3p92v0nkpxnm2qk0gcn41mxxgp3xdm24vkz36"; 265582 libraryHaskellDepends = [ 265583 ansi-wl-pprint async base bytestring clock containers directory 265584 exceptions foldl hostname managed optional-args ··· 265589 benchmarkHaskellDepends = [ base criterion text ]; 265590 description = "Shell programming, Haskell-style"; 265591 license = lib.licenses.bsd3; 265592 }) {}; 265593 265594 "turtle-options" = callPackage ··· 267470 broken = true; 267471 }) {}; 267472 267473 "typeof" = callPackage 267474 ({ mkDerivation, base, process }: 267475 mkDerivation { ··· 268214 ]; 268215 description = "Minimal HTTP client library optimized for benchmarking"; 268216 license = lib.licenses.gpl3Only; 268217 }) {}; 268218 268219 "ui-command" = callPackage ··· 268860 license = lib.licenses.bsd3; 268861 }) {}; 268862 268863 "unicode-names" = callPackage 268864 ({ mkDerivation, array, base, containers, unicode-properties }: 268865 mkDerivation { ··· 269690 libraryHaskellDepends = [ base containers universe-base ]; 269691 description = "Instances of standard classes that are made possible by enumerations"; 269692 license = lib.licenses.bsd3; 269693 - hydraPlatforms = lib.platforms.none; 269694 - broken = true; 269695 }) {}; 269696 269697 "universe-some" = callPackage ··· 270748 benchmarkHaskellDepends = [ base criterion deepseq ]; 270749 description = "Hoon-style atom manipulation and printing functions"; 270750 license = lib.licenses.mit; 270751 }) {}; 270752 270753 "ureader" = callPackage ··· 273232 }) {}; 273233 273234 "vector-builder" = callPackage 273235 - ({ mkDerivation, attoparsec, base, base-prelude, QuickCheck 273236 - , quickcheck-instances, rerebase, semigroups, tasty, tasty-hunit 273237 - , tasty-quickcheck, vector 273238 }: 273239 mkDerivation { 273240 pname = "vector-builder"; 273241 - version = "0.3.8"; 273242 - sha256 = "0ww0l52p8s6gmh985adnjbvm1vrqpqbm08qdcrvxwhhcqmxgv6m3"; 273243 - libraryHaskellDepends = [ base base-prelude semigroups vector ]; 273244 testHaskellDepends = [ 273245 attoparsec QuickCheck quickcheck-instances rerebase tasty 273246 tasty-hunit tasty-quickcheck ··· 273297 testHaskellDepends = [ base doctest hedgehog hedgehog-classes ]; 273298 description = "circular vectors"; 273299 license = lib.licenses.mit; 273300 - hydraPlatforms = lib.platforms.none; 273301 - broken = true; 273302 }) {}; 273303 273304 "vector-clock" = callPackage ··· 274346 license = lib.licenses.mit; 274347 }) {}; 274348 274349 "vinyl-generics" = callPackage 274350 ({ mkDerivation, aeson, base, generics-sop, hspec, hspec-core 274351 , QuickCheck, records-sop, text, vinyl ··· 275099 ({ mkDerivation, base, bytestring, transformers, vector, vulkan }: 275100 mkDerivation { 275101 pname = "vulkan"; 275102 - version = "3.10"; 275103 - sha256 = "10bdm8rxak8kdiiqnjl5yw3n14zjr5gj1m9bpiiz0cabf72x54xx"; 275104 libraryHaskellDepends = [ base bytestring transformers vector ]; 275105 libraryPkgconfigDepends = [ vulkan ]; 275106 description = "Bindings to the Vulkan graphics API"; ··· 277267 ]; 277268 description = "A parser for the Web Archive (WARC) format"; 277269 license = lib.licenses.bsd3; 277270 }) {}; 277271 277272 "warp" = callPackage ··· 277645 license = lib.licenses.bsd3; 277646 }) {}; 277647 277648 "weak-bag" = callPackage 277649 ({ mkDerivation, base, containers }: 277650 mkDerivation { ··· 278555 ]; 278556 description = "webfont generator"; 278557 license = lib.licenses.mit; 278558 }) {}; 278559 278560 "webkit" = callPackage ··· 278660 ]; 278661 description = "Types and functions for working with Webmentions"; 278662 license = lib.licenses.bsd3; 278663 }) {}; 278664 278665 "webp" = callPackage ··· 279392 license = lib.licenses.bsd3; 279393 }) {}; 279394 279395 "wikipedia4epub" = callPackage 279396 ({ mkDerivation, base, bytestring, directory, epub, filepath 279397 , haskell98, HTTP, network, regex-base, regex-posix, tagsoup, url ··· 279431 license = lib.licenses.bsd3; 279432 }) {}; 279433 279434 "wild-bind-indicator" = callPackage 279435 ({ mkDerivation, async, base, containers, gi-gdk, gi-glib, gi-gtk 279436 , text, transformers, wild-bind 279437 }: 279438 mkDerivation { 279439 pname = "wild-bind-indicator"; 279440 - version = "1.0.0.0"; 279441 - sha256 = "1irb8njd076vwz2676v0fa56agsszcs9ra5pbzlyxbb69kg2fgq3"; 279442 enableSeparateDataOutput = true; 279443 libraryHaskellDepends = [ 279444 async base containers gi-gdk gi-glib gi-gtk text transformers ··· 279456 }: 279457 mkDerivation { 279458 pname = "wild-bind-task-x11"; 279459 - version = "0.2.0.2"; 279460 - sha256 = "1hxsykbzw3z3vhzpi2z4b6gxvbr91s0jkxq9jc47xzx6ar0x7jq0"; 279461 libraryHaskellDepends = [ 279462 base text transformers wild-bind wild-bind-indicator wild-bind-x11 279463 ]; ··· 279485 ]; 279486 description = "X11-specific implementation for WildBind"; 279487 license = lib.licenses.bsd3; 279488 }) {}; 279489 279490 "wilton-ffi" = callPackage ··· 280455 ]; 280456 description = "Validate Wordpress Cookies & Nonces; Build Wordpress Hashes & Salts"; 280457 license = lib.licenses.bsd3; 280458 }) {}; 280459 280460 "words" = callPackage ··· 284934 }: 284935 mkDerivation { 284936 pname = "yarn-lock"; 284937 - version = "0.6.2"; 284938 - sha256 = "06wha8cm7hw83d32fq5r8mpzh5pwmf67dxsw8qxqw26qy8pnby96"; 284939 libraryHaskellDepends = [ 284940 base containers either megaparsec protolude text 284941 ]; ··· 285480 ]; 285481 description = "Authentication for Yesod"; 285482 license = lib.licenses.mit; 285483 }) {}; 285484 285485 "yesod-auth-account" = callPackage ··· 286607 broken = true; 286608 }) {}; 286609 286610 "yesod-media-simple" = callPackage 286611 ({ mkDerivation, base, bytestring, diagrams-cairo, diagrams-core 286612 , diagrams-lib, directory, JuicyPixels, vector, yesod ··· 286650 }: 286651 mkDerivation { 286652 pname = "yesod-page-cursor"; 286653 - version = "2.0.0.4"; 286654 - sha256 = "1zckyjg3k8xi6lx1xgyh50d6v7hydv12c1j36w48xy296nsjwvv9"; 286655 libraryHaskellDepends = [ 286656 aeson base bytestring containers http-link-header network-uri text 286657 unliftio yesod-core ··· 286759 license = lib.licenses.mit; 286760 }) {}; 286761 286762 "yesod-platform" = callPackage 286763 ({ mkDerivation, ansi-terminal, ansi-wl-pprint, asn1-encoding 286764 , asn1-parse, asn1-types, attoparsec-conduit, authenticate ··· 288554 ({ mkDerivation, base, c2hs, zbar }: 288555 mkDerivation { 288556 pname = "zbar"; 288557 - version = "0.1.1.0"; 288558 - sha256 = "03d81yxqf15q0ryynni55pww0z5v313yg0nb00r8zlibn96mjf5z"; 288559 libraryHaskellDepends = [ base ]; 288560 libraryPkgconfigDepends = [ zbar ]; 288561 libraryToolDepends = [ c2hs ]; ··· 288611 license = lib.licenses.mit; 288612 }) {}; 288613 288614 "zenacy-unicode" = callPackage 288615 ({ mkDerivation, base, bytestring, HUnit, test-framework 288616 , test-framework-hunit, text, vector, word8 ··· 288625 ]; 288626 description = "Unicode utilities for Haskell"; 288627 license = lib.licenses.mit; 288628 }) {}; 288629 288630 "zenc" = callPackage ··· 288704 }: 288705 mkDerivation { 288706 pname = "zeolite-lang"; 288707 - version = "0.13.0.0"; 288708 - sha256 = "0baljnskj5vrw9vwkwddrqchqvk7i5dxr4d5aj7qvl73brchjx7c"; 288709 isLibrary = false; 288710 isExecutable = true; 288711 enableSeparateDataOutput = true; ··· 289736 hydraPlatforms = lib.platforms.none; 289737 broken = true; 289738 }) {}; 289739 289740 "zot" = callPackage 289741 ({ mkDerivation, base, monads-tf }:
··· 2266 }: 2267 mkDerivation { 2268 pname = "C-structs"; 2269 + version = "0.2.0.2"; 2270 + sha256 = "0v70j2wlhj91cmlc2247z7i3yak04b28ig093xaihawlqyb6hxjg"; 2271 libraryHaskellDepends = [ base template-haskell ]; 2272 testHaskellDepends = [ 2273 base doctest Glob HUnit QuickCheck template-haskell test-framework ··· 6433 }: 6434 mkDerivation { 6435 pname = "Frames"; 6436 + version = "0.7.1"; 6437 + sha256 = "10js8xhp1v6gk6aagrzkn5c2c2gg4xml9vavpvhjfvj2jz77rfkm"; 6438 isLibrary = true; 6439 isExecutable = true; 6440 libraryHaskellDepends = [ ··· 9431 }: 9432 mkDerivation { 9433 pname = "HTTP"; 9434 + version = "4000.3.16"; 9435 + sha256 = "0bgyj3ahqlyg0jw6qsm2sncp8mklc4h0dj91s043vb3ig01iq2fn"; 9436 libraryHaskellDepends = [ 9437 array base bytestring mtl network network-uri parsec time 9438 ]; ··· 9499 ({ mkDerivation, base, call-stack, deepseq, filepath }: 9500 mkDerivation { 9501 pname = "HUnit"; 9502 version = "1.6.2.0"; 9503 sha256 = "1as4sw5y39c3zrmr6sb8zbw74c9gdn4401y0dx45ih7zf6457dxh"; 9504 libraryHaskellDepends = [ base call-stack deepseq ]; 9505 testHaskellDepends = [ base call-stack deepseq filepath ]; 9506 description = "A unit testing framework for Haskell"; 9507 license = lib.licenses.bsd3; 9508 }) {}; 9509 9510 "HUnit-Diff" = callPackage ··· 10806 ({ mkDerivation, base, bytestring, Cabal, network, openssl, time }: 10807 mkDerivation { 10808 pname = "HsOpenSSL"; 10809 version = "0.11.6"; 10810 sha256 = "1gkx6kk03ziz9wk6iwxcdpf1ig8a9whwv3yjbzmqrwkp7fh1wdrw"; 10811 setupHaskellDepends = [ base Cabal ]; ··· 10814 testHaskellDepends = [ base bytestring ]; 10815 description = "Partial OpenSSL binding for Haskell"; 10816 license = lib.licenses.publicDomain; 10817 }) {inherit (pkgs) openssl;}; 10818 10819 "HsOpenSSL-x509-system" = callPackage ··· 10950 pname = "HsYAML-aeson"; 10951 version = "0.2.0.0"; 10952 sha256 = "12sxww260pc0bbpiyirm7911haxhljdi2f08a9ddpbgw8d5n7ffg"; 10953 + revision = "3"; 10954 + editedCabalFile = "0vhdndyj5f07vvvnssn5ybdja5wmaydq0n2lfpihvdg4dkhczrx2"; 10955 libraryHaskellDepends = [ 10956 aeson base bytestring containers HsYAML mtl scientific text 10957 unordered-containers vector ··· 11207 ]; 11208 description = "Library to deal with IPv6 address text representations"; 11209 license = lib.licenses.bsd3; 11210 + }) {}; 11211 + 11212 + "IPv6Addr_2_0_1" = callPackage 11213 + ({ mkDerivation, aeson, attoparsec, base, HUnit, iproute, network 11214 + , network-info, random, test-framework, test-framework-hunit, text 11215 + }: 11216 + mkDerivation { 11217 + pname = "IPv6Addr"; 11218 + version = "2.0.1"; 11219 + sha256 = "0gkk20ngbfrr64w5szjhvlwlmali4xcx36iqa714cbxy6lpqy5cl"; 11220 + libraryHaskellDepends = [ 11221 + aeson attoparsec base iproute network network-info random text 11222 + ]; 11223 + testHaskellDepends = [ 11224 + base HUnit test-framework test-framework-hunit text 11225 + ]; 11226 + description = "Library to deal with IPv6 address text representations"; 11227 + license = lib.licenses.bsd3; 11228 + hydraPlatforms = lib.platforms.none; 11229 }) {}; 11230 11231 "IPv6DB" = callPackage ··· 18619 libraryHaskellDepends = [ base lens Shpadoinkle streaming text ]; 18620 description = "Integration of the streaming library with Shpadoinkle continuations"; 18621 license = lib.licenses.bsd3; 18622 + hydraPlatforms = lib.platforms.none; 18623 + broken = true; 18624 }) {}; 18625 18626 "Shpadoinkle-template" = callPackage ··· 20864 ({ mkDerivation, base, bytestring, transformers, vector, vulkan }: 20865 mkDerivation { 20866 pname = "VulkanMemoryAllocator"; 20867 + version = "0.5"; 20868 + sha256 = "1gar1xb7hbc452ck8351wikvryradna9bpphzd9kqwk0kx76nl3n"; 20869 libraryHaskellDepends = [ 20870 base bytestring transformers vector vulkan 20871 ]; ··· 22022 }: 22023 mkDerivation { 22024 pname = "Z-Data"; 22025 + version = "0.7.3.0"; 22026 + sha256 = "1ggxlg47m14lcxwqvs3ddldn1pz19pqxkgg6in5w6l4k62cwyhc1"; 22027 setupHaskellDepends = [ base Cabal ]; 22028 libraryHaskellDepends = [ 22029 base bytestring case-insensitive containers deepseq ghc-prim ··· 23397 testHaskellDepends = [ base tasty tasty-hunit ]; 23398 description = "A \"don't\" construct"; 23399 license = lib.licenses.bsd3; 23400 + hydraPlatforms = lib.platforms.none; 23401 + broken = true; 23402 }) {}; 23403 23404 "acme-flipping-tables" = callPackage ··· 24442 pname = "aeson"; 24443 version = "1.5.6.0"; 24444 sha256 = "1s5z4bgb5150h6a4cjf5vh8dmyrn6ilh29gh05999v6jwd5w6q83"; 24445 + revision = "1"; 24446 + editedCabalFile = "1y7ddmghsjblsxaj1wyif66wrw0vvp2dca5i7v9rqk33z1r6iryk"; 24447 libraryHaskellDepends = [ 24448 attoparsec base base-compat-batteries bytestring containers 24449 data-fix deepseq dlist ghc-prim hashable primitive scientific ··· 24598 pname = "aeson-compat"; 24599 version = "0.3.9"; 24600 sha256 = "1j13gykv4ryvmr14w5blz0nnpdb4p0hpa27wahw3mhb1lwdr8hz0"; 24601 + revision = "6"; 24602 + editedCabalFile = "18ni5j2zvn7qfdama9j1s84kz9ylsnjmi5ynbq68mpri5wimm448"; 24603 libraryHaskellDepends = [ 24604 aeson attoparsec attoparsec-iso8601 base base-compat bytestring 24605 containers exceptions hashable scientific tagged text time ··· 24714 }) {}; 24715 24716 "aeson-extra" = callPackage 24717 + ({ mkDerivation, aeson, attoparsec, attoparsec-iso8601, base 24718 + , base-compat-batteries, bytestring, containers, deepseq 24719 + , exceptions, hashable, parsec, quickcheck-instances 24720 + , recursion-schemes, scientific, semialign, tasty, tasty-hunit 24721 + , tasty-quickcheck, template-haskell, text, these, time-parsers 24722 + , unordered-containers, vector 24723 }: 24724 mkDerivation { 24725 pname = "aeson-extra"; 24726 + version = "0.5"; 24727 + sha256 = "0nlp6bwb8zynfncfzr05fi9acfs8n2fkz4anm2c0g97dk2ziq213"; 24728 + revision = "1"; 24729 + editedCabalFile = "1x1fh0zgb0y3w7wf94zznbmdmbxs0b5n7prfw324g3kzhi428s3d"; 24730 libraryHaskellDepends = [ 24731 + aeson attoparsec attoparsec-iso8601 base base-compat-batteries 24732 + bytestring containers deepseq exceptions hashable parsec 24733 + recursion-schemes scientific semialign template-haskell text these 24734 + unordered-containers vector 24735 ]; 24736 testHaskellDepends = [ 24737 + aeson base base-compat-batteries containers quickcheck-instances 24738 + tasty tasty-hunit tasty-quickcheck time-parsers 24739 + unordered-containers vector 24740 ]; 24741 description = "Extra goodies for aeson"; 24742 license = lib.licenses.bsd3; ··· 24986 pname = "aeson-optics"; 24987 version = "1.1.0.1"; 24988 sha256 = "1pfi84cl7w5bp7dwdhcyi8kchvbfjybqcp0sifqrn70dj2b50mf7"; 24989 + revision = "5"; 24990 + editedCabalFile = "102mdf74ka25qnw45282j7c4ds3v4mppa3g1mp1hr0hf0f2ya3bk"; 24991 libraryHaskellDepends = [ 24992 aeson attoparsec base base-compat bytestring optics-core 24993 optics-extra scientific text unordered-containers vector ··· 25368 ]; 25369 description = "Wrappers to derive-via Aeson ToJSON/FromJSON typeclasses"; 25370 license = lib.licenses.bsd3; 25371 + hydraPlatforms = lib.platforms.none; 25372 + broken = true; 25373 }) {}; 25374 25375 "aeson-with" = callPackage ··· 25862 }: 25863 mkDerivation { 25864 pname = "aivika"; 25865 + version = "5.9.1"; 25866 + sha256 = "15l6lgzl64ym21rzf6dbp927bj0s23kx9rp2z34k36ghy4sbdqjz"; 25867 libraryHaskellDepends = [ 25868 array base binary containers deepseq exceptions mtl mwc-random 25869 random semigroups vector ··· 25878 }: 25879 mkDerivation { 25880 pname = "aivika-branches"; 25881 + version = "0.3.2"; 25882 + sha256 = "1bd85lk70h6p4a1v0h8dhbnsx5sc8cyj916kaq1hn6r0ykkrnsjd"; 25883 libraryHaskellDepends = [ 25884 aivika aivika-transformers base containers mtl mwc-random random 25885 ]; ··· 25912 }: 25913 mkDerivation { 25914 pname = "aivika-experiment"; 25915 + version = "5.3.3"; 25916 + sha256 = "0ps0spjd7himcfgr9ahh27c24isdvxrihf4qv2sr7cs33n6h7hsj"; 25917 libraryHaskellDepends = [ 25918 aivika aivika-transformers base containers directory filepath mtl 25919 network-uri parallel-io split ··· 25979 }: 25980 mkDerivation { 25981 pname = "aivika-gpss"; 25982 + version = "0.6.2"; 25983 + sha256 = "09dfb212jjyd4fwqbl1bmm5k2sndzpx47vw688vgnx37zd94jwwj"; 25984 libraryHaskellDepends = [ 25985 aivika aivika-transformers base containers hashable mtl 25986 unordered-containers ··· 25995 }: 25996 mkDerivation { 25997 pname = "aivika-lattice"; 25998 + version = "0.6.2"; 25999 + sha256 = "0misn0pkrkfyyzg859y57ida2xc9ibmz5ykizj1fw30zsby57skl"; 26000 libraryHaskellDepends = [ 26001 aivika aivika-transformers array base containers mtl mwc-random 26002 random ··· 26011 }: 26012 mkDerivation { 26013 pname = "aivika-realtime"; 26014 + version = "0.3.1"; 26015 + sha256 = "0wvv41ip4izwa22l7p6zz1sdr8vchlakvm5vka33r5gkq10fw6s9"; 26016 libraryHaskellDepends = [ 26017 aivika aivika-transformers async base containers mtl mwc-random 26018 random stm time vector ··· 26027 }: 26028 mkDerivation { 26029 pname = "aivika-transformers"; 26030 + version = "5.9.1"; 26031 + sha256 = "0ii7g6a29fksg3lrk6vvlhaafdjssqypz92spksnpgjfv7iamk99"; 26032 libraryHaskellDepends = [ 26033 aivika array base containers exceptions mtl mwc-random random 26034 semigroups vector ··· 26987 ]; 26988 }) {inherit (pkgs) alsaLib;}; 26989 26990 + "alsa-seq_0_6_0_8" = callPackage 26991 + ({ mkDerivation, alsa-core, alsaLib, array, base, bytestring 26992 + , data-accessor, enumset, extensible-exceptions, poll, transformers 26993 + , utility-ht 26994 + }: 26995 + mkDerivation { 26996 + pname = "alsa-seq"; 26997 + version = "0.6.0.8"; 26998 + sha256 = "00f7873484nifbimdav0b25sipgx3rn6xx1il6qgvz0p70pzzljv"; 26999 + isLibrary = true; 27000 + isExecutable = true; 27001 + libraryHaskellDepends = [ 27002 + alsa-core array base bytestring data-accessor enumset 27003 + extensible-exceptions poll transformers utility-ht 27004 + ]; 27005 + libraryPkgconfigDepends = [ alsaLib ]; 27006 + description = "Binding to the ALSA Library API (MIDI sequencer)"; 27007 + license = lib.licenses.bsd3; 27008 + platforms = [ 27009 + "aarch64-linux" "armv7l-linux" "i686-linux" "x86_64-linux" 27010 + ]; 27011 + hydraPlatforms = lib.platforms.none; 27012 + }) {inherit (pkgs) alsaLib;}; 27013 + 27014 "alsa-seq-tests" = callPackage 27015 ({ mkDerivation, alsa, base }: 27016 mkDerivation { ··· 28092 ]; 28093 description = "Amazon Elastic Compute Cloud SDK"; 28094 license = lib.licenses.mpl20; 28095 + hydraPlatforms = lib.platforms.none; 28096 + broken = true; 28097 }) {}; 28098 28099 "amazonka-ecr" = callPackage ··· 31756 ]; 31757 description = "Apple Push Notification service HTTP/2 integration"; 31758 license = lib.licenses.bsd3; 31759 + hydraPlatforms = lib.platforms.none; 31760 + broken = true; 31761 }) {}; 31762 31763 "apotiki" = callPackage ··· 31998 license = lib.licenses.bsd3; 31999 }) {}; 32000 32001 + "apply-unordered" = callPackage 32002 + ({ mkDerivation, base, fin, ghc, ghc-tcplugins-extra, hspec 32003 + , should-not-typecheck, syb 32004 + }: 32005 + mkDerivation { 32006 + pname = "apply-unordered"; 32007 + version = "1.0"; 32008 + sha256 = "0ajvml2kndhpkcjlcb2a2aaxfi45rlbjq8brd1j9k66xymjkxigp"; 32009 + libraryHaskellDepends = [ base fin ghc ghc-tcplugins-extra syb ]; 32010 + testHaskellDepends = [ 32011 + base fin ghc ghc-tcplugins-extra hspec should-not-typecheck syb 32012 + ]; 32013 + description = "Apply a function to an argument specified by a type level Nat"; 32014 + license = lib.licenses.bsd3; 32015 + hydraPlatforms = lib.platforms.none; 32016 + broken = true; 32017 + }) {}; 32018 + 32019 + "apply-unordered-mono" = callPackage 32020 + ({ mkDerivation, base, hspec, should-not-typecheck }: 32021 + mkDerivation { 32022 + pname = "apply-unordered-mono"; 32023 + version = "1.0"; 32024 + sha256 = "1wpla9alhi0srhhy1vxv0dk5hgd0gnwwbwczm6a70w9gga3nms7z"; 32025 + libraryHaskellDepends = [ base ]; 32026 + testHaskellDepends = [ base hspec should-not-typecheck ]; 32027 + description = "Apply functions to arguments in an unordered type-directed fashion"; 32028 + license = lib.licenses.bsd3; 32029 + }) {}; 32030 + 32031 "apportionment" = callPackage 32032 ({ mkDerivation, base, containers, utility-ht }: 32033 mkDerivation { ··· 32299 testToolDepends = [ hspec-discover ]; 32300 description = "Simple logging library"; 32301 license = lib.licenses.mit; 32302 + hydraPlatforms = lib.platforms.none; 32303 + broken = true; 32304 }) {}; 32305 32306 "arbor-monad-metric" = callPackage ··· 32371 ]; 32372 description = "Convenience types and functions for postgresql-simple"; 32373 license = lib.licenses.mit; 32374 + hydraPlatforms = lib.platforms.none; 32375 + broken = true; 32376 }) {}; 32377 32378 "arbtt" = callPackage ··· 32385 }: 32386 mkDerivation { 32387 pname = "arbtt"; 32388 + version = "0.11"; 32389 + sha256 = "1jxsmwi7nqgmhnx1hv7y1hcff4gpi3zsg3lrzkq3y8dj2pz29whw"; 32390 isLibrary = false; 32391 isExecutable = true; 32392 executableHaskellDepends = [ ··· 32444 }: 32445 mkDerivation { 32446 pname = "arch-hs"; 32447 + version = "0.8.0.0"; 32448 + sha256 = "1g33ss6jvvpdgpcl0kwmbvnkawq8cngphjmsbv0jcpnh17brgf8x"; 32449 isLibrary = true; 32450 isExecutable = true; 32451 libraryHaskellDepends = [ ··· 34032 license = lib.licenses.bsd3; 34033 }) {}; 34034 34035 + "assert4hs" = callPackage 34036 + ({ mkDerivation, base, data-default, pretty-diff, tasty, text }: 34037 + mkDerivation { 34038 + pname = "assert4hs"; 34039 + version = "0.0.0.1"; 34040 + sha256 = "141ic9k4v5qqx64ksy925ksscs2dyixqp3bpxk9rfz6m2mam5091"; 34041 + libraryHaskellDepends = [ base data-default pretty-diff text ]; 34042 + testHaskellDepends = [ base data-default pretty-diff tasty text ]; 34043 + description = "A set of assertion for writing more readable tests cases"; 34044 + license = lib.licenses.mit; 34045 + hydraPlatforms = lib.platforms.none; 34046 + broken = true; 34047 + }) {}; 34048 + 34049 + "assert4hs-tasty" = callPackage 34050 + ({ mkDerivation, assert4hs, base, tasty }: 34051 + mkDerivation { 34052 + pname = "assert4hs-tasty"; 34053 + version = "0.0.0.1"; 34054 + sha256 = "1gdbd52laywmnyiprg4igf1hwgqna317l04n774388hsfss8gv7p"; 34055 + libraryHaskellDepends = [ assert4hs base tasty ]; 34056 + testHaskellDepends = [ assert4hs base tasty ]; 34057 + description = "Provider for tasty runner to run assert4hs tests"; 34058 + license = lib.licenses.mit; 34059 + hydraPlatforms = lib.platforms.none; 34060 + broken = true; 34061 + }) {}; 34062 + 34063 "assertions" = callPackage 34064 ({ mkDerivation, ansi-terminal, base, containers, interpolate 34065 , process ··· 34603 license = lib.licenses.bsd3; 34604 }) {}; 34605 34606 + "atlas" = callPackage 34607 + ({ mkDerivation, base, containers, data-default, hspec, inline-c 34608 + , lens, primitive, template-haskell, transformers 34609 + }: 34610 + mkDerivation { 34611 + pname = "atlas"; 34612 + version = "0"; 34613 + sha256 = "0g98waw84hrhzpky73p1dy4mfc06vf665xfn6f2f9xv2jnxi0rgw"; 34614 + libraryHaskellDepends = [ 34615 + base containers data-default inline-c lens primitive 34616 + template-haskell transformers 34617 + ]; 34618 + testHaskellDepends = [ base hspec primitive transformers ]; 34619 + description = "Skyline rectangle packing"; 34620 + license = "(BSD-2-Clause OR Apache-2.0)"; 34621 + }) {}; 34622 + 34623 "atlassian-connect-core" = callPackage 34624 ({ mkDerivation, aeson, atlassian-connect-descriptor, base 34625 , base64-bytestring, bytestring, case-insensitive, cipher-aes ··· 34654 }: 34655 mkDerivation { 34656 pname = "atlassian-connect-descriptor"; 34657 + version = "0.4.12.0"; 34658 + sha256 = "0l8912w6iscnv3q32kd7jfnymg7gnrjpx4jrn4bxggv8bdls7raa"; 34659 libraryHaskellDepends = [ 34660 aeson base cases network network-uri text time-units 34661 unordered-containers ··· 35178 license = lib.licenses.bsd3; 35179 }) {}; 35180 35181 + "attoparsec_0_14_1" = callPackage 35182 + ({ mkDerivation, array, base, bytestring, case-insensitive 35183 + , containers, criterion, deepseq, directory, filepath, ghc-prim 35184 + , http-types, parsec, QuickCheck, quickcheck-unicode, scientific 35185 + , tasty, tasty-quickcheck, text, transformers, unordered-containers 35186 + , vector 35187 + }: 35188 + mkDerivation { 35189 + pname = "attoparsec"; 35190 + version = "0.14.1"; 35191 + sha256 = "1cr9mlv4ppba31khpgripasy6zk1g353yf1fq1vzja0cv60qy3w7"; 35192 + libraryHaskellDepends = [ 35193 + array base bytestring containers deepseq ghc-prim scientific text 35194 + transformers 35195 + ]; 35196 + testHaskellDepends = [ 35197 + array base bytestring deepseq QuickCheck quickcheck-unicode 35198 + scientific tasty tasty-quickcheck text transformers vector 35199 + ]; 35200 + benchmarkHaskellDepends = [ 35201 + array base bytestring case-insensitive containers criterion deepseq 35202 + directory filepath ghc-prim http-types parsec scientific text 35203 + transformers unordered-containers vector 35204 + ]; 35205 + description = "Fast combinator parsing for bytestrings and text"; 35206 + license = lib.licenses.bsd3; 35207 + hydraPlatforms = lib.platforms.none; 35208 + }) {}; 35209 + 35210 "attoparsec-arff" = callPackage 35211 ({ mkDerivation, attoparsec, base, bytestring }: 35212 mkDerivation { ··· 35301 pname = "attoparsec-expr"; 35302 version = "0.1.1.2"; 35303 sha256 = "0z25pc3rq98ysk92jclr90n35982a566sxri51yh1s9c24vd8k4d"; 35304 + revision = "1"; 35305 + editedCabalFile = "1cpgzd24fvrpsly113ck8rhrc33pfw8qhfpk4wn85qj95763faqb"; 35306 libraryHaskellDepends = [ attoparsec base ]; 35307 description = "Port of parsec's expression parser to attoparsec"; 35308 license = lib.licenses.bsd3; ··· 35334 pname = "attoparsec-iso8601"; 35335 version = "1.0.2.0"; 35336 sha256 = "162gc101mwhmjbfhhv1wm3yvk2h4ra34wpw5x87735cfqxvjv582"; 35337 + revision = "1"; 35338 + editedCabalFile = "1c43ynmjfljp3nsp67521nrnb0d4vzwr33dfqf15xh02gifcf9ma"; 35339 libraryHaskellDepends = [ 35340 attoparsec base base-compat-batteries text time time-compat 35341 ]; ··· 36164 ({ mkDerivation, base, lens }: 36165 mkDerivation { 36166 pname = "aviation-units"; 36167 + version = "0.0.3"; 36168 + sha256 = "1161mjw9vr7wl0isakw786xds9ajs5r8gx91rsyxn0nb9zvafdr1"; 36169 libraryHaskellDepends = [ base lens ]; 36170 description = "Units of measurements used in aviation"; 36171 license = lib.licenses.bsd3; ··· 36175 ({ mkDerivation, aviation-units, base, lens }: 36176 mkDerivation { 36177 pname = "aviation-weight-balance"; 36178 + version = "0.0.3"; 36179 + sha256 = "1jl51pxhll513zyvhnmahvhidx2rd6vll1in6xdqrdh9rn0q8baw"; 36180 libraryHaskellDepends = [ aviation-units base lens ]; 36181 description = "Weight and Balance structures used in aviation"; 36182 license = lib.licenses.bsd3; ··· 37367 benchmarkHaskellDepends = [ base criterion pipes ]; 37368 description = "Immutable disk-based B* trees"; 37369 license = lib.licenses.bsd3; 37370 + hydraPlatforms = lib.platforms.none; 37371 + broken = true; 37372 }) {}; 37373 37374 "b9" = callPackage ··· 38065 broken = true; 38066 }) {}; 38067 38068 + "base_4_15_0_0" = callPackage 38069 + ({ mkDerivation, ghc-bignum, ghc-prim, rts }: 38070 mkDerivation { 38071 pname = "base"; 38072 + version = "4.15.0.0"; 38073 + sha256 = "12s4v5w97vaxk66a1mgdgypv765j61lq2n2h4iiazirpggd73n3g"; 38074 + libraryHaskellDepends = [ ghc-bignum ghc-prim rts ]; 38075 description = "Basic libraries"; 38076 license = lib.licenses.bsd3; 38077 hydraPlatforms = lib.platforms.none; 38078 + }) {}; 38079 38080 "base-compat" = callPackage 38081 ({ mkDerivation, base, unix }: ··· 38132 ]; 38133 description = "Binary-to-text encodings (e.g. base64)"; 38134 license = lib.licenses.bsd3; 38135 + hydraPlatforms = lib.platforms.none; 38136 + broken = true; 38137 }) {}; 38138 38139 "base-feature-macros" = callPackage ··· 38248 ]; 38249 description = "Fast RFC 4648-compliant Base16 encoding"; 38250 license = lib.licenses.bsd3; 38251 + hydraPlatforms = lib.platforms.none; 38252 + broken = true; 38253 }) {}; 38254 38255 "base16-bytestring_0_1_1_7" = callPackage ··· 38298 ]; 38299 description = "Optics for the Base16 library"; 38300 license = lib.licenses.bsd3; 38301 + hydraPlatforms = lib.platforms.none; 38302 + broken = true; 38303 }) {}; 38304 38305 "base32" = callPackage ··· 40104 ]; 40105 description = "Implementation of the BGAPI serial protocol"; 40106 license = lib.licenses.mit; 40107 + hydraPlatforms = lib.platforms.none; 40108 + broken = true; 40109 }) {}; 40110 40111 "bgmax" = callPackage ··· 40198 license = lib.licenses.bsd3; 40199 }) {}; 40200 40201 + "bidi-icu" = callPackage 40202 + ({ mkDerivation, base, containers, data-default, ghc-prim, hspec 40203 + , icu-uc, inline-c, primitive, tasty, tasty-hspec, template-haskell 40204 + , text, transformers, vector 40205 + }: 40206 + mkDerivation { 40207 + pname = "bidi-icu"; 40208 + version = "0"; 40209 + sha256 = "000z286nmqvxjx55dxxfrz2pxjdjnwcbpjm7a7wlm5ng70704bpj"; 40210 + libraryHaskellDepends = [ 40211 + base containers data-default ghc-prim inline-c primitive 40212 + template-haskell text transformers vector 40213 + ]; 40214 + libraryPkgconfigDepends = [ icu-uc ]; 40215 + testHaskellDepends = [ 40216 + base data-default ghc-prim hspec primitive tasty tasty-hspec text 40217 + vector 40218 + ]; 40219 + description = "The unicode bidirectional algorithm via ICU"; 40220 + license = "(BSD-2-Clause OR Apache-2.0)"; 40221 + hydraPlatforms = lib.platforms.none; 40222 + broken = true; 40223 + }) {icu-uc = null;}; 40224 + 40225 "bidirectional" = callPackage 40226 ({ mkDerivation, base, hedgehog, mtl, profunctors }: 40227 mkDerivation { ··· 40838 license = lib.licenses.mit; 40839 }) {}; 40840 40841 + "binary-parser_0_5_7" = callPackage 40842 + ({ mkDerivation, base, bytestring, mtl, QuickCheck 40843 + , quickcheck-instances, rerebase, tasty, tasty-hunit 40844 + , tasty-quickcheck, text, transformers 40845 + }: 40846 + mkDerivation { 40847 + pname = "binary-parser"; 40848 + version = "0.5.7"; 40849 + sha256 = "03w8xjy45kvakxk085234gi9mhg5vhz6394kh8bhd275qwf4g8cz"; 40850 + libraryHaskellDepends = [ base bytestring mtl text transformers ]; 40851 + testHaskellDepends = [ 40852 + QuickCheck quickcheck-instances rerebase tasty tasty-hunit 40853 + tasty-quickcheck 40854 + ]; 40855 + description = "A highly-efficient but limited parser API specialised for bytestrings"; 40856 + license = lib.licenses.mit; 40857 + hydraPlatforms = lib.platforms.none; 40858 + }) {}; 40859 + 40860 "binary-parsers" = callPackage 40861 ({ mkDerivation, attoparsec, base, binary, bytestring 40862 , bytestring-lexing, case-insensitive, criterion, deepseq ··· 42350 ]; 42351 description = "BIP-0032: Hierarchical Deterministic Wallets for Bitcoin and other cryptocurrencies"; 42352 license = lib.licenses.asl20; 42353 + hydraPlatforms = lib.platforms.none; 42354 + broken = true; 42355 }) {}; 42356 42357 "birch-beer" = callPackage ··· 42754 ]; 42755 description = "Bitcoin keys"; 42756 license = lib.licenses.asl20; 42757 + hydraPlatforms = lib.platforms.none; 42758 + broken = true; 42759 }) {}; 42760 42761 "bitcoin-payment-channel" = callPackage ··· 42908 ]; 42909 description = "Provides consistent low-level types used commonly among Bitcoin implementations"; 42910 license = lib.licenses.mit; 42911 + hydraPlatforms = lib.platforms.none; 42912 + broken = true; 42913 }) {}; 42914 42915 "bitcoind-regtest" = callPackage ··· 43318 pname = "bitwise"; 43319 version = "1.0.0.1"; 43320 sha256 = "03xyzdkyb99gvm9g5chl07rqbnm7qrxba7wgmrfmal0rkwm0ibkn"; 43321 + revision = "4"; 43322 + editedCabalFile = "0fjcz8239fagjb4pc42digg511rjaz9r8j8fcvcb6ncxijg7g694"; 43323 libraryHaskellDepends = [ array base bytestring ]; 43324 testHaskellDepends = [ base QuickCheck ]; 43325 benchmarkHaskellDepends = [ array base bytestring criterion ]; ··· 44617 ]; 44618 description = "Copy a directory tree, making zero-size sparse copies of big files"; 44619 license = lib.licenses.bsd2; 44620 + hydraPlatforms = lib.platforms.none; 44621 + broken = true; 44622 }) {}; 44623 44624 "bogre-banana" = callPackage ··· 45356 broken = true; 45357 }) {}; 45358 45359 + "bottom" = callPackage 45360 + ({ mkDerivation, base, bytestring, criterion, deepseq, hspec 45361 + , megaparsec, optparse-applicative, QuickCheck, text 45362 + }: 45363 + mkDerivation { 45364 + pname = "bottom"; 45365 + version = "0.2.0.0"; 45366 + sha256 = "1vsrp4vc2nd16nqwysmg2lqfjy142fgfifpa96z6ns3z47ppid49"; 45367 + isLibrary = true; 45368 + isExecutable = true; 45369 + libraryHaskellDepends = [ 45370 + base bytestring deepseq megaparsec text 45371 + ]; 45372 + executableHaskellDepends = [ 45373 + base bytestring optparse-applicative text 45374 + ]; 45375 + testHaskellDepends = [ base bytestring hspec QuickCheck text ]; 45376 + benchmarkHaskellDepends = [ 45377 + base bytestring criterion deepseq text 45378 + ]; 45379 + description = "Encoding and decoding for the Bottom spec"; 45380 + license = lib.licenses.asl20; 45381 + }) {}; 45382 + 45383 "bound" = callPackage 45384 ({ mkDerivation, base, bifunctors, binary, bytes, cereal, comonad 45385 , deepseq, deriving-compat, functor-classes-compat, hashable ··· 45423 ]; 45424 description = "ScopeH and ScopeT extras for bound"; 45425 license = lib.licenses.bsd3; 45426 + hydraPlatforms = lib.platforms.none; 45427 + broken = true; 45428 }) {}; 45429 45430 "bound-gen" = callPackage ··· 46050 }: 46051 mkDerivation { 46052 pname = "brittany"; 46053 + version = "0.13.1.1"; 46054 + sha256 = "1z47kzmff9vdnkg4xihpdvccfy5080i05mg4j8sy3nv4mwja0ki1"; 46055 isLibrary = true; 46056 isExecutable = true; 46057 libraryHaskellDepends = [ ··· 48028 license = lib.licenses.mit; 48029 }) {}; 48030 48031 + "bytestring-strict-builder_0_4_5_4" = callPackage 48032 + ({ mkDerivation, base, bytestring, criterion, QuickCheck 48033 + , quickcheck-instances, rerebase, tasty, tasty-hunit 48034 + , tasty-quickcheck 48035 + }: 48036 + mkDerivation { 48037 + pname = "bytestring-strict-builder"; 48038 + version = "0.4.5.4"; 48039 + sha256 = "1yjhxqsb96gi8ll70wf1p6islx0959f62fd6ypap4wyp4v2dr8c4"; 48040 + libraryHaskellDepends = [ base bytestring ]; 48041 + testHaskellDepends = [ 48042 + QuickCheck quickcheck-instances rerebase tasty tasty-hunit 48043 + tasty-quickcheck 48044 + ]; 48045 + benchmarkHaskellDepends = [ criterion rerebase ]; 48046 + description = "An efficient strict bytestring builder"; 48047 + license = lib.licenses.mit; 48048 + hydraPlatforms = lib.platforms.none; 48049 + }) {}; 48050 + 48051 "bytestring-substring" = callPackage 48052 ({ mkDerivation, base, bytestring, pipes, primitive }: 48053 mkDerivation { ··· 48112 ]; 48113 description = "A very efficient ByteString builder implementation based on the binary tree"; 48114 license = lib.licenses.mit; 48115 + }) {}; 48116 + 48117 + "bytestring-tree-builder_0_2_7_9" = callPackage 48118 + ({ mkDerivation, base, base-prelude, bytestring, criterion, deepseq 48119 + , QuickCheck, quickcheck-instances, tasty, tasty-hunit 48120 + , tasty-quickcheck, text 48121 + }: 48122 + mkDerivation { 48123 + pname = "bytestring-tree-builder"; 48124 + version = "0.2.7.9"; 48125 + sha256 = "0lmm52716b0qqnlpqgiscc92wk9n1fckydmp4vzi58h5majzpnyb"; 48126 + libraryHaskellDepends = [ base bytestring text ]; 48127 + testHaskellDepends = [ 48128 + base-prelude bytestring QuickCheck quickcheck-instances tasty 48129 + tasty-hunit tasty-quickcheck 48130 + ]; 48131 + benchmarkHaskellDepends = [ 48132 + base-prelude bytestring criterion deepseq 48133 + ]; 48134 + description = "A very efficient ByteString builder implementation based on the binary tree"; 48135 + license = lib.licenses.mit; 48136 + hydraPlatforms = lib.platforms.none; 48137 }) {}; 48138 48139 "bytestring-trie" = callPackage ··· 48880 ]; 48881 description = "Cabal utility"; 48882 license = lib.licenses.mit; 48883 + hydraPlatforms = lib.platforms.none; 48884 + broken = true; 48885 }) {}; 48886 48887 "cabal-file" = callPackage ··· 49388 license = lib.licenses.gpl3Only; 49389 }) {}; 49390 49391 + "cabal-rpm_2_0_8" = callPackage 49392 + ({ mkDerivation, base, bytestring, Cabal, directory, extra 49393 + , filepath, http-client, http-client-tls, http-conduit 49394 + , optparse-applicative, process, simple-cabal, simple-cmd 49395 + , simple-cmd-args, time, unix 49396 + }: 49397 + mkDerivation { 49398 + pname = "cabal-rpm"; 49399 + version = "2.0.8"; 49400 + sha256 = "18ryg2qv1ppxkylgniw4iava9gh410pp6ibm1362ij52128z6rhz"; 49401 + isLibrary = false; 49402 + isExecutable = true; 49403 + executableHaskellDepends = [ 49404 + base bytestring Cabal directory extra filepath http-client 49405 + http-client-tls http-conduit optparse-applicative process 49406 + simple-cabal simple-cmd simple-cmd-args time unix 49407 + ]; 49408 + description = "RPM packaging tool for Haskell Cabal-based packages"; 49409 + license = lib.licenses.gpl3Only; 49410 + hydraPlatforms = lib.platforms.none; 49411 + }) {}; 49412 + 49413 "cabal-scripts" = callPackage 49414 ({ mkDerivation, base }: 49415 mkDerivation { ··· 50406 broken = true; 50407 }) {}; 50408 50409 + "calamity-commands" = callPackage 50410 + ({ mkDerivation, base, generic-lens, lens, megaparsec, polysemy 50411 + , polysemy-plugin, text, text-show, unordered-containers 50412 + }: 50413 + mkDerivation { 50414 + pname = "calamity-commands"; 50415 + version = "0.1.0.0"; 50416 + sha256 = "0l2x65w7inib5bdfw0gzffm3pdlsylnivnjc8y82x7fi6jha8jcp"; 50417 + libraryHaskellDepends = [ 50418 + base generic-lens lens megaparsec polysemy polysemy-plugin text 50419 + text-show unordered-containers 50420 + ]; 50421 + description = "A library for declaring, parsing, and invoking text-input based commands"; 50422 + license = lib.licenses.mit; 50423 + }) {}; 50424 + 50425 "calc" = callPackage 50426 ({ mkDerivation, array, base, harpy, haskell98, mtl }: 50427 mkDerivation { ··· 50607 ({ mkDerivation, base, nanospec }: 50608 mkDerivation { 50609 pname = "call-stack"; 50610 version = "0.3.0"; 50611 sha256 = "0ski7ihdxah7x4x07qgkjljg8hzqs9d6aa5k4cmr40bzp3i8s3mq"; 50612 libraryHaskellDepends = [ base ]; 50613 testHaskellDepends = [ base nanospec ]; 50614 description = "Use GHC call-stacks in a backward compatible way"; 50615 license = lib.licenses.mit; 50616 }) {}; 50617 50618 "camfort" = callPackage ··· 50973 pname = "capability"; 50974 version = "0.4.0.0"; 50975 sha256 = "02dnvzfvn81k15qp41fqd3pk4izg8rfbj7d5f6ry0wfa8d8payq0"; 50976 + revision = "1"; 50977 + editedCabalFile = "0dqqry8qjx9gigz7x542zchrvjbmmhpafzn4fxf1dw0yd6hqavfq"; 50978 libraryHaskellDepends = [ 50979 base constraints dlist exceptions generic-lens lens monad-control 50980 monad-unlift mtl mutable-containers primitive reflection ··· 51679 broken = true; 51680 }) {}; 51681 51682 + "cases_0_1_4_1" = callPackage 51683 + ({ mkDerivation, attoparsec, base, gauge, HTF, HUnit, mwc-random 51684 + , QuickCheck, rerebase, text 51685 + }: 51686 + mkDerivation { 51687 + pname = "cases"; 51688 + version = "0.1.4.1"; 51689 + sha256 = "16bl4qzjfwkbzacrj33myakqcmg2j9fgzdnykwpnnqc2vikdpn0z"; 51690 + libraryHaskellDepends = [ attoparsec base text ]; 51691 + testHaskellDepends = [ HTF HUnit QuickCheck rerebase ]; 51692 + benchmarkHaskellDepends = [ gauge mwc-random rerebase ]; 51693 + description = "A converter for spinal, snake and camel cases"; 51694 + license = lib.licenses.mit; 51695 + hydraPlatforms = lib.platforms.none; 51696 + broken = true; 51697 + }) {}; 51698 + 51699 "cash" = callPackage 51700 ({ mkDerivation, base, deepseq, haskell98, HaXml, network, parallel 51701 , pretty ··· 51945 pname = "cassava"; 51946 version = "0.5.2.0"; 51947 sha256 = "01h1zrdqb313cjd4rqm1107azzx4czqi018c2djf66a5i7ajl3dk"; 51948 + revision = "4"; 51949 + editedCabalFile = "19rkq41r5vj8drnj850b1wqnc54mxpw0x5z54brq0nvyww5f8ai8"; 51950 configureFlags = [ "-f-bytestring--lt-0_10_4" ]; 51951 libraryHaskellDepends = [ 51952 array attoparsec base bytestring containers deepseq hashable Only ··· 52415 maintainers = with lib.maintainers; [ sorki ]; 52416 }) {}; 52417 52418 + "cayenne-lpp" = callPackage 52419 + ({ mkDerivation, base, base16-bytestring, binary, bytestring, hspec 52420 + , hspec-discover, text, time, timerep 52421 + }: 52422 + mkDerivation { 52423 + pname = "cayenne-lpp"; 52424 + version = "0.2.0.0"; 52425 + sha256 = "0v9kd7mz9kc4m3icaz64rpp55rbw8w2x33g1j609pg870i3mgkax"; 52426 + libraryHaskellDepends = [ 52427 + base binary bytestring text time timerep 52428 + ]; 52429 + testHaskellDepends = [ base base16-bytestring hspec ]; 52430 + testToolDepends = [ hspec-discover ]; 52431 + description = "Cayenne Low Power Payload"; 52432 + license = lib.licenses.bsd3; 52433 + }) {}; 52434 + 52435 "cayley-client" = callPackage 52436 ({ mkDerivation, aeson, attoparsec, base, binary, bytestring 52437 , exceptions, hspec, http-client, http-conduit, lens, lens-aeson ··· 52497 pname = "cbor-tool"; 52498 version = "0.2.2.0"; 52499 sha256 = "0rsnnz1zh9jyjif94lrdppzaa41hypqs1r5dlyzbwlw1m75g286p"; 52500 + revision = "2"; 52501 + editedCabalFile = "15dlsldsc7fhn7i0b0rfsrdnlddjfgjap49b8915cphjc7b17p2p"; 52502 isLibrary = false; 52503 isExecutable = true; 52504 executableHaskellDepends = [ ··· 55719 pname = "clash-lib"; 55720 version = "1.2.5"; 55721 sha256 = "14xi0llzm6f3ymlcfwq67d16ggdkqxrxkvr6rwmykxrca3j1b6r3"; 55722 + revision = "1"; 55723 + editedCabalFile = "15pvhd19yq2m1c2n33iawxngmpc6d0jfsh02038j8fbpzx68p7bw"; 55724 enableSeparateDataOutput = true; 55725 libraryHaskellDepends = [ 55726 aeson ansi-terminal attoparsec base binary bytestring clash-prelude ··· 55762 pname = "clash-lib"; 55763 version = "1.4.0"; 55764 sha256 = "1i0zmz26p35hfp89s45s6g7x2rvhyjc3lrx35r06cnllw6xvp60z"; 55765 + revision = "1"; 55766 + editedCabalFile = "0gjsc0nvaqj8f5m9nknxbs1jhb6nlwfy2cxgyj73rbwhwa4w2msk"; 55767 enableSeparateDataOutput = true; 55768 libraryHaskellDepends = [ 55769 aeson aeson-pretty ansi-terminal array attoparsec base ··· 57066 testToolDepends = [ markdown-unlit ]; 57067 description = "Integers bounded by a closed interval"; 57068 license = lib.licenses.mit; 57069 + }) {}; 57070 + 57071 + "closed-intervals" = callPackage 57072 + ({ mkDerivation, base, containers, doctest-exitcode-stdio 57073 + , doctest-lib, QuickCheck, time, utility-ht 57074 + }: 57075 + mkDerivation { 57076 + pname = "closed-intervals"; 57077 + version = "0.1.0.0"; 57078 + sha256 = "1k8kbqh6w7cj7qkmzvh47v9zrpf5y465lj6fzq7vk71bq0dy59vm"; 57079 + libraryHaskellDepends = [ base containers time ]; 57080 + testHaskellDepends = [ 57081 + base containers doctest-exitcode-stdio doctest-lib QuickCheck time 57082 + utility-ht 57083 + ]; 57084 + description = "Closed intervals of totally ordered types"; 57085 + license = lib.licenses.gpl3Only; 57086 }) {}; 57087 57088 "closure" = callPackage ··· 62081 ]; 62082 description = "conferer's FromConfig instances for snap Config"; 62083 license = lib.licenses.mpl20; 62084 + hydraPlatforms = lib.platforms.none; 62085 + broken = true; 62086 }) {}; 62087 62088 "conferer-source-dhall" = callPackage ··· 62749 license = lib.licenses.mit; 62750 }) {}; 62751 62752 + "const" = callPackage 62753 + ({ mkDerivation, base, bytestring, primitive, ptrdiff }: 62754 + mkDerivation { 62755 + pname = "const"; 62756 + version = "0"; 62757 + sha256 = "09mckqgxpfn0kvc0niyiwix7hzmcc97vdvn9bz2nnbzfaykp0fsm"; 62758 + libraryHaskellDepends = [ base bytestring primitive ptrdiff ]; 62759 + description = "Read-only mutable primitives"; 62760 + license = "(BSD-2-Clause OR Apache-2.0)"; 62761 + }) {}; 62762 + 62763 "const-math-ghc-plugin" = callPackage 62764 ({ mkDerivation, base, containers, directory, ghc, process }: 62765 mkDerivation { ··· 63016 }: 63017 mkDerivation { 63018 pname = "constraints-deriving"; 63019 + version = "1.1.1.2"; 63020 + sha256 = "1l7ririwwr6zza5m0bdq2bp118i0qaa4x21hypcbb7hz7hn2jqwa"; 63021 isLibrary = true; 63022 isExecutable = true; 63023 setupHaskellDepends = [ base Cabal ]; ··· 63051 ({ mkDerivation, aeson, base, constraints, template-haskell }: 63052 mkDerivation { 63053 pname = "constraints-extras"; 63054 + version = "0.3.1.0"; 63055 + sha256 = "0hr1xaxypkmd2a856ha8v3jhkh4hr6g8kar0lr4vj3jsj2h6cmks"; 63056 isLibrary = true; 63057 isExecutable = true; 63058 libraryHaskellDepends = [ base constraints template-haskell ]; ··· 63098 license = lib.licenses.bsd3; 63099 }) {}; 63100 63101 + "construct_0_3_0_2" = callPackage 63102 + ({ mkDerivation, attoparsec, base, bytestring, Cabal, cabal-doctest 63103 + , cereal, directory, doctest, filepath, incremental-parser 63104 + , input-parsers, markdown-unlit, monoid-subclasses, parsers 63105 + , rank2classes, tasty, tasty-hunit, text 63106 + }: 63107 + mkDerivation { 63108 + pname = "construct"; 63109 + version = "0.3.0.2"; 63110 + sha256 = "1qng4g9x9smzg3gydpqyxalb49n9673rfn606qh3mq1xhcvj127j"; 63111 + enableSeparateDataOutput = true; 63112 + setupHaskellDepends = [ base Cabal cabal-doctest ]; 63113 + libraryHaskellDepends = [ 63114 + attoparsec base bytestring cereal incremental-parser input-parsers 63115 + monoid-subclasses parsers rank2classes text 63116 + ]; 63117 + testHaskellDepends = [ 63118 + attoparsec base bytestring cereal directory doctest filepath 63119 + incremental-parser monoid-subclasses rank2classes tasty tasty-hunit 63120 + text 63121 + ]; 63122 + testToolDepends = [ markdown-unlit ]; 63123 + description = "Haskell version of the Construct library for easy specification of file formats"; 63124 + license = lib.licenses.bsd3; 63125 + hydraPlatforms = lib.platforms.none; 63126 + }) {}; 63127 + 63128 "constructible" = callPackage 63129 ({ mkDerivation, base, binary-search, complex-generic 63130 , integer-roots ··· 65070 broken = true; 65071 }) {}; 65072 65073 + "cps-except" = callPackage 65074 + ({ mkDerivation, base, mtl, mtl-compat }: 65075 + mkDerivation { 65076 + pname = "cps-except"; 65077 + version = "0.0.1.2"; 65078 + sha256 = "0vr53825szvw8274vba9ylr0xqla16sn0wcpy8ap1yh55in9k24w"; 65079 + libraryHaskellDepends = [ base mtl mtl-compat ]; 65080 + description = "ExceptT replacement in CPS style"; 65081 + license = lib.licenses.bsd3; 65082 + }) {}; 65083 + 65084 "cpsa" = callPackage 65085 ({ mkDerivation, base, containers, directory, parallel }: 65086 mkDerivation { ··· 65131 libraryHaskellDepends = [ attoparsec base bytestring deepseq ]; 65132 description = "Haskell Library for Checking CPU Information"; 65133 license = lib.licenses.mit; 65134 + }) {}; 65135 + 65136 + "cpuinfo_0_1_0_2" = callPackage 65137 + ({ mkDerivation, attoparsec, base, bytestring, deepseq }: 65138 + mkDerivation { 65139 + pname = "cpuinfo"; 65140 + version = "0.1.0.2"; 65141 + sha256 = "0973bkgcfha0xyimizgq55w4a32gjgklcikfhcwkak4m9czwyynr"; 65142 + libraryHaskellDepends = [ attoparsec base bytestring deepseq ]; 65143 + description = "Haskell Library for Checking CPU Information"; 65144 + license = lib.licenses.mit; 65145 + hydraPlatforms = lib.platforms.none; 65146 }) {}; 65147 65148 "cpuperf" = callPackage ··· 65456 license = lib.licenses.bsd3; 65457 }) {}; 65458 65459 + "crackNum_3_1" = callPackage 65460 + ({ mkDerivation, base, directory, filepath, libBF, process, sbv 65461 + , tasty, tasty-golden 65462 + }: 65463 + mkDerivation { 65464 + pname = "crackNum"; 65465 + version = "3.1"; 65466 + sha256 = "1qavlqz1ca2c0v029kijlnf51l2sdiwk6dkx8kyk6xqp97bhx8rk"; 65467 + isLibrary = false; 65468 + isExecutable = true; 65469 + executableHaskellDepends = [ 65470 + base directory filepath libBF process sbv tasty tasty-golden 65471 + ]; 65472 + description = "Crack various integer and floating-point data formats"; 65473 + license = lib.licenses.bsd3; 65474 + hydraPlatforms = lib.platforms.none; 65475 + }) {}; 65476 + 65477 "craft" = callPackage 65478 ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, async, base 65479 , bytestring, conduit, conduit-combinators, conduit-extra ··· 66244 pname = "crypt-sha512"; 66245 version = "0"; 66246 sha256 = "1wsma9frdrn39i506zydlzlk1ir6jh1pidqfjms8rwqjpx965gn2"; 66247 + revision = "6"; 66248 + editedCabalFile = "1fkwa9vqkavy6pmig971xbk70kwn7hfpa7d1afvsp9g8sqpl52hz"; 66249 libraryHaskellDepends = [ 66250 attoparsec base bytestring cryptohash-sha512 66251 ]; ··· 66914 "cryptol" = callPackage 66915 ({ mkDerivation, alex, ansi-terminal, array, async, base 66916 , base-compat, blaze-html, bv-sized, bytestring, containers 66917 + , criterion, cryptohash-sha1, deepseq, directory, exceptions, extra 66918 , filepath, ghc-prim, gitrev, GraphSCC, happy, haskeline, heredoc 66919 + , integer-gmp, libBF, MemoTrie, monad-control, monadLib, mtl 66920 + , optparse-applicative, panic, parameterized-utils, pretty, process 66921 + , random, sbv, simple-smt, stm, strict, temporary, text, tf-random 66922 + , time, transformers, transformers-base, what4 66923 }: 66924 mkDerivation { 66925 pname = "cryptol"; 66926 + description = "GLUT events via a Kafka message broker"; 66927 + sha256 = "05h751lxyym27b5kfrcss5vjg4ifpl4lqgxvvp6fz4mpbigm7ds3"; 66928 isLibrary = true; 66929 isExecutable = true; 66930 enableSeparateDataOutput = true; ··· 66938 libraryToolDepends = [ alex happy ]; 66939 executableHaskellDepends = [ 66940 ansi-terminal base base-compat blaze-html containers directory 66941 + extra filepath haskeline monad-control mtl optparse-applicative 66942 + process temporary text transformers 66943 ]; 66944 benchmarkHaskellDepends = [ 66945 base criterion deepseq directory filepath sbv text ··· 67585 executableToolDepends = [ alex happy ]; 67586 description = "Implementation of Univalence in Cubical Sets"; 67587 license = lib.licenses.mit; 67588 + hydraPlatforms = lib.platforms.none; 67589 + broken = true; 67590 }) {}; 67591 67592 "cubicbezier" = callPackage ··· 67871 ({ mkDerivation, base, parsec, text }: 67872 mkDerivation { 67873 pname = "curly-expander"; 67874 + version = "0.3.0.0"; 67875 + sha256 = "08yw57f08rcvhnqsljndnqgbkll3zgf22xnqpjxlf1b6a8yfbqxm"; 67876 libraryHaskellDepends = [ base parsec text ]; 67877 testHaskellDepends = [ base parsec text ]; 67878 description = "Curly braces (brackets) expanding"; ··· 69341 libraryHaskellDepends = [ base constraints ]; 69342 description = "Define Backwards Compatibility Schemes for Arbitrary Data"; 69343 license = lib.licenses.mit; 69344 + }) {}; 69345 + 69346 + "data-compat_0_1_0_3" = callPackage 69347 + ({ mkDerivation, base, constraints }: 69348 + mkDerivation { 69349 + pname = "data-compat"; 69350 + version = "0.1.0.3"; 69351 + sha256 = "1wfm561ird8hv0d52gfyx684xmvps90s4cly8knwwv31cz9r9vpg"; 69352 + libraryHaskellDepends = [ base constraints ]; 69353 + description = "Define Backwards Compatibility Schemes for Arbitrary Data"; 69354 + license = lib.licenses.mit; 69355 + hydraPlatforms = lib.platforms.none; 69356 }) {}; 69357 69358 "data-concurrent-queue" = callPackage ··· 73260 pname = "dependent-sum"; 73261 version = "0.7.1.0"; 73262 sha256 = "0aj63gvak0y4mgxndykqfg5w958hf7lp5blml2z647rjgy85bjw1"; 73263 + revision = "1"; 73264 + editedCabalFile = "0h9rr26ksrqfnfjibnrzbf6hyp1mmffgzbvjjxjs6vdqylvr4h8f"; 73265 libraryHaskellDepends = [ base constraints-extras some ]; 73266 description = "Dependent sum type"; 73267 license = lib.licenses.publicDomain; ··· 74300 license = lib.licenses.bsd3; 74301 }) {}; 74302 74303 + "dhall_1_38_1" = callPackage 74304 + ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, atomic-write 74305 + , base, bytestring, case-insensitive, cborg, cborg-json, containers 74306 + , contravariant, cryptonite, data-fix, deepseq, Diff, directory 74307 + , doctest, dotgen, either, exceptions, filepath, foldl, gauge 74308 + , generic-random, half, hashable, haskeline, http-client 74309 + , http-client-tls, http-types, lens-family-core, megaparsec, memory 74310 + , mmorph, mockery, mtl, network-uri, optparse-applicative 74311 + , parser-combinators, parsers, pretty-simple, prettyprinter 74312 + , prettyprinter-ansi-terminal, profunctors, QuickCheck 74313 + , quickcheck-instances, repline, scientific, serialise 74314 + , special-values, spoon, tasty, tasty-expected-failure, tasty-hunit 74315 + , tasty-quickcheck, tasty-silver, template-haskell, text 74316 + , text-manipulate, th-lift-instances, transformers 74317 + , transformers-compat, turtle, unordered-containers, uri-encode 74318 + , vector 74319 + }: 74320 + mkDerivation { 74321 + pname = "dhall"; 74322 + version = "1.38.1"; 74323 + sha256 = "0g70x2crdrkwf41gvwr718am25dmbn9bg4cml9f9va7i1vx5rsgk"; 74324 + isLibrary = true; 74325 + isExecutable = true; 74326 + enableSeparateDataOutput = true; 74327 + libraryHaskellDepends = [ 74328 + aeson aeson-pretty ansi-terminal atomic-write base bytestring 74329 + case-insensitive cborg cborg-json containers contravariant 74330 + cryptonite data-fix deepseq Diff directory dotgen either exceptions 74331 + filepath half hashable haskeline http-client http-client-tls 74332 + http-types lens-family-core megaparsec memory mmorph mtl 74333 + network-uri optparse-applicative parser-combinators parsers 74334 + pretty-simple prettyprinter prettyprinter-ansi-terminal profunctors 74335 + repline scientific serialise template-haskell text text-manipulate 74336 + th-lift-instances transformers transformers-compat 74337 + unordered-containers uri-encode vector 74338 + ]; 74339 + executableHaskellDepends = [ base ]; 74340 + testHaskellDepends = [ 74341 + base bytestring cborg containers data-fix deepseq directory doctest 74342 + either filepath foldl generic-random http-client http-client-tls 74343 + lens-family-core megaparsec mockery prettyprinter QuickCheck 74344 + quickcheck-instances scientific serialise special-values spoon 74345 + tasty tasty-expected-failure tasty-hunit tasty-quickcheck 74346 + tasty-silver template-haskell text transformers turtle 74347 + unordered-containers vector 74348 + ]; 74349 + benchmarkHaskellDepends = [ 74350 + base bytestring containers directory gauge text 74351 + ]; 74352 + doCheck = false; 74353 + description = "A configuration language guaranteed to terminate"; 74354 + license = lib.licenses.bsd3; 74355 + hydraPlatforms = lib.platforms.none; 74356 + }) {}; 74357 + 74358 "dhall-bash" = callPackage 74359 ({ mkDerivation, base, bytestring, containers, dhall 74360 , neat-interpolation, optparse-generic, shell-escape, text ··· 74399 74400 "dhall-docs" = callPackage 74401 ({ mkDerivation, base, bytestring, containers, cryptonite, dhall 74402 + , directory, doctest, file-embed, filepath, foldl, lens-family-core 74403 + , lucid, megaparsec, memory, mmark, mtl, optparse-applicative, path 74404 + , path-io, pretty, prettyprinter, tasty, tasty-hunit, tasty-silver 74405 + , text, transformers, turtle 74406 }: 74407 mkDerivation { 74408 pname = "dhall-docs"; 74409 + version = "1.0.5"; 74410 + sha256 = "00s1vhwilnr6hvv56w98kc1md08lw6v80v8a7yhwrmg9qggwdc12"; 74411 isLibrary = true; 74412 isExecutable = true; 74413 enableSeparateDataOutput = true; ··· 74419 executableHaskellDepends = [ base dhall ]; 74420 testHaskellDepends = [ 74421 base bytestring containers dhall directory doctest filepath foldl 74422 + path path-io pretty tasty tasty-hunit tasty-silver text turtle 74423 ]; 74424 description = "Generate HTML docs from a dhall package"; 74425 license = lib.licenses.bsd3; ··· 74492 license = lib.licenses.bsd3; 74493 }) {}; 74494 74495 + "dhall-json_1_7_6" = callPackage 74496 + ({ mkDerivation, aeson, aeson-pretty, aeson-yaml, ansi-terminal 74497 + , base, bytestring, containers, dhall, exceptions, filepath 74498 + , lens-family-core, optparse-applicative, prettyprinter 74499 + , prettyprinter-ansi-terminal, scientific, tasty, tasty-hunit 74500 + , tasty-silver, text, unordered-containers, vector 74501 + }: 74502 + mkDerivation { 74503 + pname = "dhall-json"; 74504 + version = "1.7.6"; 74505 + sha256 = "1fl5ngp1qh77qr27ax5009siy20cas6fm55776zhs82zb96sli0n"; 74506 + isLibrary = true; 74507 + isExecutable = true; 74508 + libraryHaskellDepends = [ 74509 + aeson aeson-pretty aeson-yaml base bytestring containers dhall 74510 + exceptions filepath lens-family-core optparse-applicative 74511 + prettyprinter scientific text unordered-containers vector 74512 + ]; 74513 + executableHaskellDepends = [ 74514 + aeson aeson-pretty ansi-terminal base bytestring dhall exceptions 74515 + optparse-applicative prettyprinter prettyprinter-ansi-terminal text 74516 + ]; 74517 + testHaskellDepends = [ 74518 + aeson base bytestring dhall tasty tasty-hunit tasty-silver text 74519 + ]; 74520 + description = "Convert between Dhall and JSON or YAML"; 74521 + license = lib.licenses.bsd3; 74522 + hydraPlatforms = lib.platforms.none; 74523 + }) {}; 74524 + 74525 "dhall-lex" = callPackage 74526 ({ mkDerivation, alex, array, base, bytestring, criterion, deepseq 74527 , hspec, hspec-dirstream, scientific ··· 74572 license = lib.licenses.mit; 74573 }) {}; 74574 74575 + "dhall-lsp-server_1_0_14" = callPackage 74576 + ({ mkDerivation, aeson, aeson-pretty, base, bytestring, containers 74577 + , data-default, dhall, dhall-json, directory, doctest, filepath 74578 + , haskell-lsp, haskell-lsp-types, hslogger, lens, lsp-test 74579 + , megaparsec, mtl, network-uri, optparse-applicative, prettyprinter 74580 + , QuickCheck, rope-utf16-splay, tasty, tasty-hspec, text 74581 + , transformers, unordered-containers, uri-encode 74582 + }: 74583 + mkDerivation { 74584 + pname = "dhall-lsp-server"; 74585 + version = "1.0.14"; 74586 + sha256 = "1jy80w3lr6c0hvn0525h5kn6fh9rj6ir942hdkilrzd9farg6qj9"; 74587 + isLibrary = true; 74588 + isExecutable = true; 74589 + libraryHaskellDepends = [ 74590 + aeson aeson-pretty base bytestring containers data-default dhall 74591 + dhall-json directory filepath haskell-lsp hslogger lens megaparsec 74592 + mtl network-uri prettyprinter rope-utf16-splay text transformers 74593 + unordered-containers uri-encode 74594 + ]; 74595 + executableHaskellDepends = [ base optparse-applicative ]; 74596 + testHaskellDepends = [ 74597 + base directory doctest filepath haskell-lsp-types lsp-test 74598 + QuickCheck tasty tasty-hspec text 74599 + ]; 74600 + description = "Language Server Protocol (LSP) server for Dhall"; 74601 + license = lib.licenses.mit; 74602 + hydraPlatforms = lib.platforms.none; 74603 + }) {}; 74604 + 74605 "dhall-nix" = callPackage 74606 ({ mkDerivation, base, containers, data-fix, dhall, hnix 74607 , lens-family-core, neat-interpolation, optparse-generic, text ··· 74650 broken = true; 74651 }) {}; 74652 74653 + "dhall-openapi" = callPackage 74654 + ({ mkDerivation, aeson, base, containers, dhall, directory 74655 + , filepath, megaparsec, optparse-applicative, parser-combinators 74656 + , prettyprinter, scientific, sort, text, vector 74657 + }: 74658 + mkDerivation { 74659 + pname = "dhall-openapi"; 74660 + version = "1.0.0"; 74661 + sha256 = "1dg1hj8yfm08bzzirzg6cq26vkxv6i86rrf96a73pb1hpz3jjq7j"; 74662 + isLibrary = true; 74663 + isExecutable = true; 74664 + libraryHaskellDepends = [ 74665 + aeson base containers dhall prettyprinter scientific sort text 74666 + vector 74667 + ]; 74668 + executableHaskellDepends = [ 74669 + aeson base containers dhall directory filepath megaparsec 74670 + optparse-applicative parser-combinators prettyprinter sort text 74671 + vector 74672 + ]; 74673 + description = "Convert an OpenAPI specification to a Dhall package"; 74674 + license = lib.licenses.bsd3; 74675 + }) {}; 74676 + 74677 "dhall-recursive-adt" = callPackage 74678 ({ mkDerivation, base, data-fix, dhall, either, hedgehog 74679 , neat-interpolation, recursion-schemes, tasty, tasty-hedgehog ··· 74771 ]; 74772 description = "Convert between Dhall and YAML"; 74773 license = lib.licenses.gpl3Only; 74774 + }) {}; 74775 + 74776 + "dhall-yaml_1_2_6" = callPackage 74777 + ({ mkDerivation, aeson, ansi-terminal, base, bytestring, dhall 74778 + , dhall-json, exceptions, HsYAML, HsYAML-aeson 74779 + , optparse-applicative, prettyprinter, prettyprinter-ansi-terminal 74780 + , tasty, tasty-expected-failure, tasty-hunit, text, vector 74781 + }: 74782 + mkDerivation { 74783 + pname = "dhall-yaml"; 74784 + version = "1.2.6"; 74785 + sha256 = "0v6f513hxn382h4l8hyj9gxara3xdfcrldzri0i3yjvir62bkicm"; 74786 + isLibrary = true; 74787 + isExecutable = true; 74788 + libraryHaskellDepends = [ 74789 + aeson base bytestring dhall dhall-json HsYAML HsYAML-aeson 74790 + optparse-applicative text vector 74791 + ]; 74792 + executableHaskellDepends = [ 74793 + aeson ansi-terminal base bytestring dhall dhall-json exceptions 74794 + optparse-applicative prettyprinter prettyprinter-ansi-terminal text 74795 + ]; 74796 + testHaskellDepends = [ 74797 + base bytestring dhall dhall-json tasty tasty-expected-failure 74798 + tasty-hunit text 74799 + ]; 74800 + description = "Convert between Dhall and YAML"; 74801 + license = lib.licenses.gpl3Only; 74802 + hydraPlatforms = lib.platforms.none; 74803 }) {}; 74804 74805 "dhcp-lease-parser" = callPackage ··· 76444 ]; 76445 description = "Gemini client"; 76446 license = lib.licenses.gpl3Only; 76447 + hydraPlatforms = lib.platforms.none; 76448 + broken = true; 76449 }) {}; 76450 76451 "diophantine" = callPackage ··· 76907 }: 76908 mkDerivation { 76909 pname = "discord-haskell"; 76910 + version = "1.8.5"; 76911 + sha256 = "0hp3w1d5pwfj06m72dl44cp67h99b3c43kv641vz6dff7xk75hsm"; 76912 isLibrary = true; 76913 isExecutable = true; 76914 libraryHaskellDepends = [ ··· 82798 broken = true; 82799 }) {}; 82800 82801 + "eio" = callPackage 82802 + ({ mkDerivation, base, markdown-unlit }: 82803 + mkDerivation { 82804 + pname = "eio"; 82805 + version = "0.0.0.0"; 82806 + sha256 = "0akr5h7r3c5qrbpyq52h2lzmbd22ars7mdfwgl7dwh75bgwss11l"; 82807 + isLibrary = true; 82808 + isExecutable = true; 82809 + libraryHaskellDepends = [ base ]; 82810 + executableHaskellDepends = [ base ]; 82811 + executableToolDepends = [ markdown-unlit ]; 82812 + description = "IO with Exceptions tracked on the type-level"; 82813 + license = lib.licenses.mpl20; 82814 + hydraPlatforms = lib.platforms.none; 82815 + broken = true; 82816 + }) {}; 82817 + 82818 "either" = callPackage 82819 ({ mkDerivation, base, bifunctors, mtl, profunctors, QuickCheck 82820 , semigroupoids, test-framework, test-framework-quickcheck2 ··· 85490 ]; 85491 description = "Send messages to an Erlang node using Haskell"; 85492 license = "GPL"; 85493 + hydraPlatforms = lib.platforms.none; 85494 + broken = true; 85495 }) {}; 85496 85497 "eros" = callPackage ··· 86038 pname = "esqueleto"; 86039 version = "3.4.1.0"; 86040 sha256 = "1nm2xdl6an140gl5cw6ij7s6i6v2xfp98m8dwbwzns75nrgmsb73"; 86041 + revision = "1"; 86042 + editedCabalFile = "0jm10cw3ikk6gwn7qy87d7g9swwcp6lg60yy678l4jx7dnipahm0"; 86043 libraryHaskellDepends = [ 86044 aeson attoparsec base blaze-html bytestring conduit containers 86045 monad-logger persistent resourcet tagged text time transformers ··· 86056 license = lib.licenses.bsd3; 86057 }) {}; 86058 86059 + "esqueleto_3_4_2_0" = callPackage 86060 + ({ mkDerivation, aeson, attoparsec, base, blaze-html, bytestring 86061 + , conduit, containers, exceptions, hspec, monad-logger, mtl, mysql 86062 + , mysql-simple, persistent, persistent-mysql, persistent-postgresql 86063 + , persistent-sqlite, postgresql-libpq, postgresql-simple, resourcet 86064 + , tagged, text, time, transformers, unliftio, unordered-containers 86065 + , vector 86066 + }: 86067 + mkDerivation { 86068 + pname = "esqueleto"; 86069 + version = "3.4.2.0"; 86070 + sha256 = "1gmh96a0vqvxizgs2k66p06jhjcgqrm5phbvahs7b2iavaralpr3"; 86071 + libraryHaskellDepends = [ 86072 + aeson attoparsec base blaze-html bytestring conduit containers 86073 + monad-logger persistent resourcet tagged text time transformers 86074 + unliftio unordered-containers 86075 + ]; 86076 + testHaskellDepends = [ 86077 + aeson attoparsec base blaze-html bytestring conduit containers 86078 + exceptions hspec monad-logger mtl mysql mysql-simple persistent 86079 + persistent-mysql persistent-postgresql persistent-sqlite 86080 + postgresql-libpq postgresql-simple resourcet tagged text time 86081 + transformers unliftio unordered-containers vector 86082 + ]; 86083 + description = "Type-safe EDSL for SQL queries on persistent backends"; 86084 + license = lib.licenses.bsd3; 86085 + hydraPlatforms = lib.platforms.none; 86086 + }) {}; 86087 + 86088 "ess" = callPackage 86089 ({ mkDerivation, base }: 86090 mkDerivation { ··· 86571 ]; 86572 description = "Ethereum Recursive Length Prefix Encoding"; 86573 license = lib.licenses.asl20; 86574 + hydraPlatforms = lib.platforms.none; 86575 + broken = true; 86576 }) {}; 86577 86578 "eths-rlp" = callPackage ··· 87547 pname = "exceptions"; 87548 version = "0.10.4"; 87549 sha256 = "1kw4pmx7j7zwbdwm0dyn9rcs6kp4byfxy48861yxdz6gam1zn2sd"; 87550 + revision = "2"; 87551 + editedCabalFile = "1154g0dqil2xf4wc1v6gndzhnbf5saf2dzf77c6lcjxssx360m6j"; 87552 libraryHaskellDepends = [ 87553 base mtl stm template-haskell transformers 87554 ]; ··· 88185 license = lib.licenses.bsd3; 88186 }) {}; 88187 88188 + "experimenter_0_1_0_12" = callPackage 88189 + ({ mkDerivation, aeson, base, bytestring, cereal, cereal-vector 88190 + , conduit, containers, deepseq, directory, esqueleto, filepath 88191 + , foundation, HaTeX, hostname, hspec, lens, matrix, monad-logger 88192 + , mtl, mwc-random, parallel, persistent, persistent-postgresql 88193 + , persistent-template, process, QuickCheck, resource-pool 88194 + , resourcet, stm, text, time, transformers, unix, unliftio-core 88195 + , vector 88196 + }: 88197 + mkDerivation { 88198 + pname = "experimenter"; 88199 + version = "0.1.0.12"; 88200 + sha256 = "0sam7wl4gha9midkgj15h0q68g121pihxxvv8dlx3wgd9as1h5d6"; 88201 + libraryHaskellDepends = [ 88202 + aeson base bytestring cereal cereal-vector conduit containers 88203 + deepseq directory esqueleto filepath HaTeX hostname lens matrix 88204 + monad-logger mtl mwc-random parallel persistent 88205 + persistent-postgresql persistent-template process resource-pool 88206 + resourcet stm text time transformers unix unliftio-core vector 88207 + ]; 88208 + testHaskellDepends = [ 88209 + aeson base bytestring cereal cereal-vector conduit containers 88210 + deepseq directory esqueleto filepath foundation HaTeX hostname 88211 + hspec lens matrix monad-logger mtl mwc-random parallel persistent 88212 + persistent-postgresql persistent-template process QuickCheck 88213 + resource-pool resourcet stm text time transformers unix 88214 + unliftio-core vector 88215 + ]; 88216 + description = "Perform scientific experiments stored in a DB, and generate reports"; 88217 + license = lib.licenses.bsd3; 88218 + hydraPlatforms = lib.platforms.none; 88219 + }) {}; 88220 + 88221 "expiring-cache-map" = callPackage 88222 ({ mkDerivation, base, bytestring, containers, hashable, time 88223 , unordered-containers ··· 88404 ({ mkDerivation, base, containers, fgl, mtl, transformers }: 88405 mkDerivation { 88406 pname = "exploring-interpreters"; 88407 + version = "0.3.0.0"; 88408 + sha256 = "0h39si80s4q4n6599qj95z19jy3yc0101pphm4apvalm6wmppgpz"; 88409 libraryHaskellDepends = [ base containers fgl mtl transformers ]; 88410 description = "A generic exploring interpreter for exploratory programming"; 88411 license = lib.licenses.bsd3; ··· 89850 ]; 89851 description = "Haskell bindings to the fastpbkdf2 C library"; 89852 license = lib.licenses.bsd3; 89853 + hydraPlatforms = lib.platforms.none; 89854 + broken = true; 89855 }) {inherit (pkgs) openssl;}; 89856 89857 "fastsum" = callPackage ··· 89932 executableHaskellDepends = [ base mtl optparse-applicative split ]; 89933 description = "A compiler for Fay, a Haskell subset that compiles to JavaScript"; 89934 license = lib.licenses.bsd3; 89935 }) {}; 89936 89937 "fay-base" = callPackage ··· 89944 libraryHaskellDepends = [ base fay ]; 89945 description = "The base package for Fay"; 89946 license = lib.licenses.bsd3; 89947 }) {}; 89948 89949 "fay-builder" = callPackage ··· 89977 libraryHaskellDepends = [ fay-base ]; 89978 description = "DOM FFI wrapper library for Fay"; 89979 license = lib.licenses.bsd3; 89980 }) {}; 89981 89982 "fay-geoposition" = callPackage ··· 89989 libraryHaskellDepends = [ fay-base fay-text ]; 89990 description = "W3C compliant implementation of GeoPosition API"; 89991 license = lib.licenses.bsd3; 89992 }) {}; 89993 89994 "fay-hsx" = callPackage ··· 90015 libraryHaskellDepends = [ fay-base fay-text ]; 90016 description = "jQuery bindings for Fay"; 90017 license = lib.licenses.bsd3; 90018 }) {}; 90019 90020 "fay-ref" = callPackage ··· 90027 libraryHaskellDepends = [ fay-base ]; 90028 description = "Like IORef but for Fay"; 90029 license = lib.licenses.bsd3; 90030 }) {}; 90031 90032 "fay-simplejson" = callPackage ··· 90055 libraryHaskellDepends = [ fay fay-base text ]; 90056 description = "Fay Text type represented as JavaScript strings"; 90057 license = lib.licenses.mit; 90058 }) {}; 90059 90060 "fay-uri" = callPackage ··· 90067 libraryHaskellDepends = [ fay-base ]; 90068 description = "Persistent FFI bindings for using jsUri in Fay"; 90069 license = lib.licenses.bsd3; 90070 }) {}; 90071 90072 "fay-websockets" = callPackage ··· 90079 libraryHaskellDepends = [ fay-base ]; 90080 description = "Websockets FFI library for Fay"; 90081 license = lib.licenses.bsd3; 90082 }) {}; 90083 90084 "fb" = callPackage ··· 90160 }: 90161 mkDerivation { 90162 pname = "fbrnch"; 90163 + version = "0.7.3"; 90164 + sha256 = "0fm9ymfl01k8fs5p4aa5kjjj6gziwl35z5yywbhygd32704lcqnz"; 90165 isLibrary = false; 90166 isExecutable = true; 90167 libraryHaskellDepends = [ ··· 92781 pname = "fixed-vector-hetero"; 92782 version = "0.6.0.0"; 92783 sha256 = "1gc40wh887hd6am6kjswkxn9qnzxp30ni6larnq6ghrs5zalg67r"; 92784 + revision = "3"; 92785 + editedCabalFile = "0gzmjn7cw1ywggfwqz8i5i46q93blg8l4fx7ifhzwwzarpxgkpkj"; 92786 setupHaskellDepends = [ base Cabal cabal-doctest ]; 92787 libraryHaskellDepends = [ base deepseq fixed-vector primitive ]; 92788 testHaskellDepends = [ base doctest fixed-vector ]; 92789 description = "Library for working with product types generically"; 92790 license = lib.licenses.bsd3; 92791 + }) {}; 92792 + 92793 + "fixed-vector-hetero_0_6_1_0" = callPackage 92794 + ({ mkDerivation, base, deepseq, doctest, fixed-vector, primitive }: 92795 + mkDerivation { 92796 + pname = "fixed-vector-hetero"; 92797 + version = "0.6.1.0"; 92798 + sha256 = "1simmps9qz8q4kfx8vz26ww0xy70vahrsgphvfrf9ww8fk9yg518"; 92799 + libraryHaskellDepends = [ base deepseq fixed-vector primitive ]; 92800 + testHaskellDepends = [ base doctest fixed-vector ]; 92801 + description = "Library for working with product types generically"; 92802 + license = lib.licenses.bsd3; 92803 + hydraPlatforms = lib.platforms.none; 92804 }) {}; 92805 92806 "fixed-width" = callPackage ··· 93091 ]; 93092 description = "Verify FLAC files ripped form CD using AccurateRip™"; 93093 license = lib.licenses.gpl3Only; 93094 + hydraPlatforms = lib.platforms.none; 93095 + broken = true; 93096 }) {}; 93097 93098 "flags-applicative" = callPackage ··· 93302 }: 93303 mkDerivation { 93304 pname = "flatparse"; 93305 + version = "0.2.0.0"; 93306 + sha256 = "0f7nhspfj90ypylwvya3c3dzvipvc462zyc6191xd1x40wn7qms9"; 93307 libraryHaskellDepends = [ 93308 base bytestring containers template-haskell 93309 ]; ··· 94487 }: 94488 mkDerivation { 94489 pname = "foldl-transduce"; 94490 + version = "0.6.0.1"; 94491 + sha256 = "1nbq27cs7jngg83ylc7rfmr8qs8xlr0dqkb9d978jsv4dblbs1gh"; 94492 libraryHaskellDepends = [ 94493 base bifunctors bytestring comonad containers foldl free 94494 monoid-subclasses profunctors semigroupoids semigroups split text ··· 94891 broken = true; 94892 }) {}; 94893 94894 + "forex2ledger" = callPackage 94895 + ({ mkDerivation, aeson, base, containers, currency-codes 94896 + , hledger-lib, hspec, hspec-expectations-pretty-diff, HTTP 94897 + , optparse-applicative, relude, text, time, tomland 94898 + , unordered-containers, url 94899 + }: 94900 + mkDerivation { 94901 + pname = "forex2ledger"; 94902 + version = "1.0.0.0"; 94903 + sha256 = "0rsaw9l3653kfp3hfszdyq7xqfmr38xwvlwk7mdr7sqhqs2xxbaq"; 94904 + isLibrary = true; 94905 + isExecutable = true; 94906 + libraryHaskellDepends = [ 94907 + aeson base containers currency-codes hledger-lib HTTP relude text 94908 + time tomland unordered-containers url 94909 + ]; 94910 + executableHaskellDepends = [ 94911 + base optparse-applicative relude text 94912 + ]; 94913 + testHaskellDepends = [ 94914 + aeson base containers currency-codes hspec 94915 + hspec-expectations-pretty-diff relude time 94916 + ]; 94917 + description = "Print Forex quotes in Ledger format"; 94918 + license = lib.licenses.agpl3Only; 94919 + hydraPlatforms = lib.platforms.none; 94920 + broken = true; 94921 + }) {}; 94922 + 94923 "forger" = callPackage 94924 ({ mkDerivation, base }: 94925 mkDerivation { ··· 95093 license = lib.licenses.bsd3; 95094 }) {}; 95095 95096 + "formatting_7_1_2" = callPackage 95097 + ({ mkDerivation, base, clock, criterion, double-conversion 95098 + , ghc-prim, hspec, old-locale, QuickCheck, scientific, text, time 95099 + , transformers 95100 }: 95101 mkDerivation { 95102 pname = "formatting"; 95103 + version = "7.1.2"; 95104 + sha256 = "13sdc3wc8ahf18g5yld9bqi5yhbbg1w1r69rims93c5bxhiw3f9f"; 95105 libraryHaskellDepends = [ 95106 + base clock double-conversion ghc-prim old-locale scientific text 95107 + time transformers 95108 ]; 95109 + testHaskellDepends = [ base ghc-prim hspec scientific text ]; 95110 + benchmarkHaskellDepends = [ 95111 + base criterion ghc-prim QuickCheck text 95112 ]; 95113 description = "Combinator-based type-safe formatting (like printf() or FORMAT)"; 95114 license = lib.licenses.bsd3; ··· 95284 ]; 95285 testToolDepends = [ hspec-discover ]; 95286 description = "Parsers and analyses for Fortran standards 66, 77, 90 and 95"; 95287 + license = lib.licenses.asl20; 95288 + hydraPlatforms = lib.platforms.none; 95289 + broken = true; 95290 + }) {}; 95291 + 95292 + "fortran-src-extras" = callPackage 95293 + ({ mkDerivation, aeson, base, binary, bytestring, containers 95294 + , directory, filepath, fortran-src, GenericPretty, hspec 95295 + , hspec-discover, optparse-applicative, silently, text, uniplate 95296 + }: 95297 + mkDerivation { 95298 + pname = "fortran-src-extras"; 95299 + version = "0.1.0"; 95300 + sha256 = "0q4wrif8mx5h6i2wsw2qa1hqdn95ii7211fnk8vj5g9ki3vrnlk8"; 95301 + libraryHaskellDepends = [ 95302 + aeson base binary bytestring containers directory filepath 95303 + fortran-src GenericPretty optparse-applicative text uniplate 95304 + ]; 95305 + testHaskellDepends = [ base fortran-src hspec silently uniplate ]; 95306 + testToolDepends = [ hspec-discover ]; 95307 + description = "Common functions and utils for fortran-src"; 95308 license = lib.licenses.asl20; 95309 hydraPlatforms = lib.platforms.none; 95310 broken = true; ··· 95914 }: 95915 mkDerivation { 95916 pname = "free-category"; 95917 + version = "0.0.4.3"; 95918 + sha256 = "0jla6y9bjnprbwr9nl415rf3kcf709vpg4hg59xi3bfylnhd06bd"; 95919 libraryHaskellDepends = [ base free-algebras ]; 95920 testHaskellDepends = [ 95921 base free-algebras QuickCheck tasty tasty-quickcheck ··· 97122 testHaskellDepends = [ base bytestring tasty tasty-hspec ]; 97123 description = "Transfer files with FTP and FTPS"; 97124 license = lib.licenses.publicDomain; 97125 + hydraPlatforms = lib.platforms.none; 97126 + broken = true; 97127 }) {}; 97128 97129 "ftp-client-conduit" = callPackage ··· 97140 testHaskellDepends = [ base ]; 97141 description = "Transfer file with FTP and FTPS with Conduit"; 97142 license = lib.licenses.publicDomain; 97143 + hydraPlatforms = lib.platforms.none; 97144 + broken = true; 97145 }) {}; 97146 97147 "ftp-conduit" = callPackage ··· 97430 }) {}; 97431 97432 "funcons-tools" = callPackage 97433 + ({ mkDerivation, base, bv, containers, directory 97434 + , exploring-interpreters, funcons-values, gll, haskeline, mtl 97435 + , multiset, random-strings, regex-applicative, split, text 97436 + , transformers, TypeCompose, vector 97437 }: 97438 mkDerivation { 97439 pname = "funcons-tools"; 97440 + version = "0.2.0.11"; 97441 + sha256 = "1gi7db5mjq25xwl27ihsrg0ya1jgw5zhki5c1431rizj72yx5ji9"; 97442 isLibrary = true; 97443 isExecutable = true; 97444 libraryHaskellDepends = [ 97445 + base bv containers directory funcons-values gll haskeline mtl 97446 + multiset random-strings regex-applicative split text TypeCompose 97447 + vector 97448 ]; 97449 executableHaskellDepends = [ 97450 + base bv containers directory exploring-interpreters funcons-values 97451 + gll haskeline mtl multiset random-strings regex-applicative split 97452 + text transformers TypeCompose vector 97453 ]; 97454 description = "A modular interpreter for executing funcons"; 97455 license = lib.licenses.mit; ··· 97879 }) {}; 97880 97881 "fused-effects" = callPackage 97882 + ({ mkDerivation, base, containers, hedgehog, hedgehog-fn 97883 + , inspection-testing, markdown-unlit, tasty-bench, transformers 97884 }: 97885 mkDerivation { 97886 pname = "fused-effects"; 97887 + version = "1.1.1.1"; 97888 + sha256 = "1hd7sslc28fgx3l59afjzfdx3qya6ilc46mla16idm0z8i0avhh5"; 97889 libraryHaskellDepends = [ base transformers ]; 97890 testHaskellDepends = [ 97891 + base containers hedgehog hedgehog-fn inspection-testing 97892 + transformers 97893 ]; 97894 testToolDepends = [ markdown-unlit ]; 97895 + benchmarkHaskellDepends = [ base tasty-bench transformers ]; 97896 description = "A fast, flexible, fused effect system"; 97897 license = lib.licenses.bsd3; 97898 }) {}; ··· 98094 }: 98095 mkDerivation { 98096 pname = "futhark"; 98097 + version = "0.19.4"; 98098 + sha256 = "1d4704pmknv39yw2bjxkp5n2wl9a14n3pn221m3src5z237lchq7"; 98099 isLibrary = true; 98100 isExecutable = true; 98101 libraryHaskellDepends = [ ··· 98441 libraryHaskellDepends = [ base bytestring serialport ]; 98442 description = "Interface to the FXPak/FXPak Pro USB interface"; 98443 license = lib.licenses.bsd3; 98444 + hydraPlatforms = lib.platforms.none; 98445 + broken = true; 98446 }) {}; 98447 98448 "g-npm" = callPackage ··· 99401 }) {}; 99402 99403 "gemini-textboard" = callPackage 99404 + ({ mkDerivation, base, base64, cache, clock, cryptohash-sha256 99405 + , gemini-router, gemini-server, HsOpenSSL, language-gemini 99406 + , network-uri, nonce, sqlite-simple, text, time, transformers 99407 }: 99408 mkDerivation { 99409 pname = "gemini-textboard"; 99410 + version = "0.2.0.1"; 99411 + sha256 = "1yvizcxafq943q9fbz08mq2x50dw9ykdz5vy6hr6ps2g47j4wfa0"; 99412 isLibrary = false; 99413 isExecutable = true; 99414 executableHaskellDepends = [ 99415 + base base64 cache clock cryptohash-sha256 gemini-router 99416 + gemini-server HsOpenSSL language-gemini network-uri nonce 99417 + sqlite-simple text time transformers 99418 ]; 99419 description = "A barebones textboard for the Gemini protocol"; 99420 license = lib.licenses.bsd3; ··· 99609 }: 99610 mkDerivation { 99611 pname = "generic-accessors"; 99612 + version = "0.7.1.0"; 99613 + sha256 = "0pj7dfvizjkjfrnhc2kgb99ygrjxjgbisaj1fszhznn305b879c1"; 99614 libraryHaskellDepends = [ 99615 base binary cereal lens linear spatial-math TypeCompose 99616 ]; ··· 99639 license = lib.licenses.bsd3; 99640 }) {}; 99641 99642 + "generic-aeson_0_2_0_12" = callPackage 99643 + ({ mkDerivation, aeson, attoparsec, base, generic-deriving, mtl 99644 + , tagged, text, unordered-containers, vector 99645 + }: 99646 + mkDerivation { 99647 + pname = "generic-aeson"; 99648 + version = "0.2.0.12"; 99649 + sha256 = "17br2dl9gd2hyflgp0fzqs5ghp4my4l234pjfvvnhk9n4szxzcr3"; 99650 + libraryHaskellDepends = [ 99651 + aeson attoparsec base generic-deriving mtl tagged text 99652 + unordered-containers vector 99653 + ]; 99654 + description = "Derivation of Aeson instances using GHC generics"; 99655 + license = lib.licenses.bsd3; 99656 + hydraPlatforms = lib.platforms.none; 99657 + }) {}; 99658 + 99659 "generic-arbitrary" = callPackage 99660 ({ mkDerivation, base, QuickCheck }: 99661 mkDerivation { ··· 100877 ]; 100878 description = "GenValidity support for Persistent"; 100879 license = lib.licenses.mit; 100880 + hydraPlatforms = lib.platforms.none; 100881 + broken = true; 100882 }) {}; 100883 100884 "genvalidity-property" = callPackage ··· 101561 license = lib.licenses.bsd3; 101562 }) {}; 101563 101564 + "ghc-bignum" = callPackage 101565 + ({ mkDerivation }: 101566 + mkDerivation { 101567 + pname = "ghc-bignum"; 101568 + version = "1.0"; 101569 + sha256 = "0xl848q8z6qx2bi6xil0d35lra7wshwvysyfblki659d7272b1im"; 101570 + description = "GHC BigNum library"; 101571 + license = lib.licenses.bsd3; 101572 + hydraPlatforms = lib.platforms.none; 101573 + broken = true; 101574 + }) {}; 101575 + 101576 + "ghc-boot_9_0_1" = callPackage 101577 + ({ mkDerivation, base, binary, bytestring, containers, directory 101578 + , filepath, ghc-boot-th 101579 }: 101580 mkDerivation { 101581 pname = "ghc-boot"; 101582 + version = "9.0.1"; 101583 + sha256 = "1qrxb762dj8p1brfpyididhjnwjk34nr6cq4j80rkhaf7pki08ik"; 101584 libraryHaskellDepends = [ 101585 + base binary bytestring containers directory filepath ghc-boot-th 101586 ]; 101587 description = "Shared functionality between GHC and its boot libraries"; 101588 license = lib.licenses.bsd3; 101589 hydraPlatforms = lib.platforms.none; 101590 }) {}; 101591 101592 + "ghc-boot-th_9_0_1" = callPackage 101593 ({ mkDerivation, base }: 101594 mkDerivation { 101595 pname = "ghc-boot-th"; 101596 + version = "9.0.1"; 101597 + sha256 = "1y3kpfczcs507md56ijw943pwvia86fh83mr2c0bq28yhd0kw8gl"; 101598 libraryHaskellDepends = [ base ]; 101599 + description = "Shared functionality between GHC and the @template-haskell@ library"; 101600 license = lib.licenses.bsd3; 101601 hydraPlatforms = lib.platforms.none; 101602 }) {}; ··· 101939 broken = true; 101940 }) {}; 101941 101942 + "ghc-heap_9_0_1" = callPackage 101943 + ({ mkDerivation, base, ghc-prim, rts }: 101944 + mkDerivation { 101945 + pname = "ghc-heap"; 101946 + version = "9.0.1"; 101947 + sha256 = "01wz87jpd5b39lh9hymx8zd0r86insvk65lwhmdgj3yv4ldyrydn"; 101948 + libraryHaskellDepends = [ base ghc-prim rts ]; 101949 + description = "Functions for walking GHC's heap"; 101950 + license = lib.licenses.bsd3; 101951 + hydraPlatforms = lib.platforms.none; 101952 + }) {}; 101953 + 101954 "ghc-heap-view" = callPackage 101955 ({ mkDerivation, base, binary, bytestring, Cabal, containers 101956 , deepseq, filepath, ghc-heap, template-haskell, transformers ··· 102076 license = lib.licenses.bsd3; 102077 }) {}; 102078 102079 + "ghc-lib_9_0_1_20210324" = callPackage 102080 ({ mkDerivation, alex, array, base, binary, bytestring, containers 102081 , deepseq, directory, exceptions, filepath, ghc-lib-parser 102082 , ghc-prim, happy, hpc, pretty, process, time, transformers, unix 102083 }: 102084 mkDerivation { 102085 pname = "ghc-lib"; 102086 + version = "9.0.1.20210324"; 102087 + sha256 = "1qzsm132jk84nvkyrmhmnhpccb2f07miwdcq7h11ljmd3c4c577a"; 102088 enableSeparateDataOutput = true; 102089 libraryHaskellDepends = [ 102090 array base binary bytestring containers deepseq directory ··· 102116 license = lib.licenses.bsd3; 102117 }) {}; 102118 102119 + "ghc-lib-parser_9_0_1_20210324" = callPackage 102120 ({ mkDerivation, alex, array, base, binary, bytestring, containers 102121 , deepseq, directory, exceptions, filepath, ghc-prim, happy, hpc 102122 , pretty, process, time, transformers, unix 102123 }: 102124 mkDerivation { 102125 pname = "ghc-lib-parser"; 102126 + version = "9.0.1.20210324"; 102127 + sha256 = "1hl20lz8r9yhgh6hlakmbqp637h49mq3sdxciy4vsz3nhzy7nqqm"; 102128 enableSeparateDataOutput = true; 102129 libraryHaskellDepends = [ 102130 array base binary bytestring containers deepseq directory ··· 102398 broken = true; 102399 }) {}; 102400 102401 + "ghc-prim_0_7_0" = callPackage 102402 + ({ mkDerivation, base, c, Cabal, rts }: 102403 mkDerivation { 102404 pname = "ghc-prim"; 102405 + version = "0.7.0"; 102406 + sha256 = "189mr2v8b338lzdhr0r1p4wqz4gm47gqw93fziawwvlj4g6k8mw9"; 102407 + setupHaskellDepends = [ base Cabal ]; 102408 libraryHaskellDepends = [ rts ]; 102409 + librarySystemDepends = [ c ]; 102410 description = "GHC primitives"; 102411 license = lib.licenses.bsd3; 102412 hydraPlatforms = lib.platforms.none; 102413 + }) {c = null;}; 102414 102415 "ghc-prof" = callPackage 102416 ({ mkDerivation, attoparsec, base, containers, directory, filepath ··· 103576 license = lib.licenses.lgpl21Only; 103577 }) {inherit (pkgs) atk;}; 103578 103579 + "gi-atk_2_0_23" = callPackage 103580 + ({ mkDerivation, atk, base, bytestring, Cabal, containers, gi-glib 103581 + , gi-gobject, haskell-gi, haskell-gi-base, haskell-gi-overloading 103582 + , text, transformers 103583 + }: 103584 + mkDerivation { 103585 + pname = "gi-atk"; 103586 + version = "2.0.23"; 103587 + sha256 = "05zwlcqx334is27h1v9x89a05srb6zp7mx0viccmij1cqhyfvsmf"; 103588 + setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; 103589 + libraryHaskellDepends = [ 103590 + base bytestring containers gi-glib gi-gobject haskell-gi 103591 + haskell-gi-base haskell-gi-overloading text transformers 103592 + ]; 103593 + libraryPkgconfigDepends = [ atk ]; 103594 + description = "Atk bindings"; 103595 + license = lib.licenses.lgpl21Only; 103596 + hydraPlatforms = lib.platforms.none; 103597 + }) {inherit (pkgs) atk;}; 103598 + 103599 "gi-cairo" = callPackage 103600 ({ mkDerivation, base, bytestring, Cabal, cairo, containers 103601 , haskell-gi, haskell-gi-base, haskell-gi-overloading, text ··· 103619 license = lib.licenses.lgpl21Only; 103620 }) {inherit (pkgs) cairo;}; 103621 103622 + "gi-cairo_1_0_25" = callPackage 103623 + ({ mkDerivation, base, bytestring, Cabal, cairo, containers 103624 + , haskell-gi, haskell-gi-base, haskell-gi-overloading, text 103625 + , transformers 103626 + }: 103627 + mkDerivation { 103628 + pname = "gi-cairo"; 103629 + version = "1.0.25"; 103630 + sha256 = "0ybf8y8xbjfcaw67l22dfkx0528j5f1if3jm808ccssgdwyy3vc4"; 103631 + setupHaskellDepends = [ base Cabal haskell-gi ]; 103632 + libraryHaskellDepends = [ 103633 + base bytestring containers haskell-gi haskell-gi-base 103634 + haskell-gi-overloading text transformers 103635 + ]; 103636 + libraryPkgconfigDepends = [ cairo ]; 103637 + preCompileBuildDriver = '' 103638 + PKG_CONFIG_PATH+=":${cairo}/lib/pkgconfig" 103639 + setupCompileFlags+=" $(pkg-config --libs cairo-gobject)" 103640 + ''; 103641 + description = "Cairo bindings"; 103642 + license = lib.licenses.lgpl21Only; 103643 + hydraPlatforms = lib.platforms.none; 103644 + }) {inherit (pkgs) cairo;}; 103645 + 103646 "gi-cairo-again" = callPackage 103647 ({ mkDerivation, base, cairo-core, haskell-gi-base 103648 , template-haskell ··· 103711 license = lib.licenses.lgpl21Only; 103712 }) {inherit (pkgs) libdbusmenu;}; 103713 103714 + "gi-dbusmenu_0_4_9" = callPackage 103715 + ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib 103716 + , gi-gobject, haskell-gi, haskell-gi-base, haskell-gi-overloading 103717 + , libdbusmenu, text, transformers 103718 + }: 103719 + mkDerivation { 103720 + pname = "gi-dbusmenu"; 103721 + version = "0.4.9"; 103722 + sha256 = "1n2bxi7cwj32ncalqwid3igk0ssh4pc81z132255216apryszq13"; 103723 + setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; 103724 + libraryHaskellDepends = [ 103725 + base bytestring containers gi-glib gi-gobject haskell-gi 103726 + haskell-gi-base haskell-gi-overloading text transformers 103727 + ]; 103728 + libraryPkgconfigDepends = [ libdbusmenu ]; 103729 + description = "Dbusmenu bindings"; 103730 + license = lib.licenses.lgpl21Only; 103731 + hydraPlatforms = lib.platforms.none; 103732 + }) {inherit (pkgs) libdbusmenu;}; 103733 + 103734 "gi-dbusmenugtk3" = callPackage 103735 ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk 103736 , gi-dbusmenu, gi-gdk, gi-gdkpixbuf, gi-glib, gi-gobject, gi-gtk ··· 103755 license = lib.licenses.lgpl21Only; 103756 }) {inherit (pkgs) gtk3; inherit (pkgs) libdbusmenu-gtk3;}; 103757 103758 + "gi-dbusmenugtk3_0_4_10" = callPackage 103759 + ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk 103760 + , gi-dbusmenu, gi-gdk, gi-gdkpixbuf, gi-glib, gi-gobject, gi-gtk 103761 + , gtk3, haskell-gi, haskell-gi-base, haskell-gi-overloading 103762 + , libdbusmenu-gtk3, text, transformers 103763 + }: 103764 + mkDerivation { 103765 + pname = "gi-dbusmenugtk3"; 103766 + version = "0.4.10"; 103767 + sha256 = "1hq7v2lii8n6nn1dhdg42z2d3in8xahkhm6xk4hmfj7abzfghz7z"; 103768 + setupHaskellDepends = [ 103769 + base Cabal gi-atk gi-dbusmenu gi-gdk gi-gdkpixbuf gi-glib 103770 + gi-gobject gi-gtk haskell-gi 103771 + ]; 103772 + libraryHaskellDepends = [ 103773 + base bytestring containers gi-atk gi-dbusmenu gi-gdk gi-gdkpixbuf 103774 + gi-glib gi-gobject gi-gtk haskell-gi haskell-gi-base 103775 + haskell-gi-overloading text transformers 103776 + ]; 103777 + libraryPkgconfigDepends = [ gtk3 libdbusmenu-gtk3 ]; 103778 + description = "DbusmenuGtk bindings"; 103779 + license = lib.licenses.lgpl21Only; 103780 + hydraPlatforms = lib.platforms.none; 103781 + }) {inherit (pkgs) gtk3; inherit (pkgs) libdbusmenu-gtk3;}; 103782 + 103783 "gi-gdk" = callPackage 103784 ({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo 103785 , gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango, gtk3 ··· 103804 license = lib.licenses.lgpl21Only; 103805 }) {inherit (pkgs) gtk3;}; 103806 103807 + "gi-gdk_4_0_3" = callPackage 103808 ({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo 103809 , gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango, gtk4 103810 , haskell-gi, haskell-gi-base, haskell-gi-overloading, text ··· 103812 }: 103813 mkDerivation { 103814 pname = "gi-gdk"; 103815 + version = "4.0.3"; 103816 + sha256 = "1bpg4x0hl9kdh1phplk1j616rjzf9gby1g23vm9xg93xfmaafr89"; 103817 setupHaskellDepends = [ 103818 base Cabal gi-cairo gi-gdkpixbuf gi-gio gi-glib gi-gobject gi-pango 103819 haskell-gi ··· 103850 license = lib.licenses.lgpl21Only; 103851 }) {inherit (pkgs) gdk-pixbuf;}; 103852 103853 + "gi-gdkpixbuf_2_0_25" = callPackage 103854 + ({ mkDerivation, base, bytestring, Cabal, containers, gdk-pixbuf 103855 + , gi-gio, gi-glib, gi-gobject, haskell-gi, haskell-gi-base 103856 + , haskell-gi-overloading, text, transformers 103857 + }: 103858 + mkDerivation { 103859 + pname = "gi-gdkpixbuf"; 103860 + version = "2.0.25"; 103861 + sha256 = "18iz6rmqcf5q098hzv8p8hhk6ib8k99phmmnzp64j37c3x71c27b"; 103862 + setupHaskellDepends = [ 103863 + base Cabal gi-gio gi-glib gi-gobject haskell-gi 103864 + ]; 103865 + libraryHaskellDepends = [ 103866 + base bytestring containers gi-gio gi-glib gi-gobject haskell-gi 103867 + haskell-gi-base haskell-gi-overloading text transformers 103868 + ]; 103869 + libraryPkgconfigDepends = [ gdk-pixbuf ]; 103870 + description = "GdkPixbuf bindings"; 103871 + license = lib.licenses.lgpl21Only; 103872 + hydraPlatforms = lib.platforms.none; 103873 + }) {inherit (pkgs) gdk-pixbuf;}; 103874 + 103875 "gi-gdkx11" = callPackage 103876 ({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo 103877 , gi-gdk, gi-gio, gi-gobject, gi-xlib, gtk3, haskell-gi ··· 103894 license = lib.licenses.lgpl21Only; 103895 }) {inherit (pkgs) gtk3;}; 103896 103897 + "gi-gdkx11_4_0_3" = callPackage 103898 ({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo 103899 , gi-gdk, gi-gio, gi-gobject, gi-xlib, gtk4-x11, haskell-gi 103900 , haskell-gi-base, haskell-gi-overloading, text, transformers 103901 }: 103902 mkDerivation { 103903 pname = "gi-gdkx11"; 103904 + version = "4.0.3"; 103905 + sha256 = "13m2dvab8hqwa7h648asjg3llvdnpwdf1rli9i44nb6n1dfk7jbv"; 103906 setupHaskellDepends = [ 103907 base Cabal gi-cairo gi-gdk gi-gio gi-gobject gi-xlib haskell-gi 103908 ]; ··· 103938 license = lib.licenses.lgpl21Only; 103939 }) {inherit (pkgs) libgit2-glib;}; 103940 103941 + "gi-ggit_1_0_10" = callPackage 103942 + ({ mkDerivation, base, bytestring, Cabal, containers, gi-gio 103943 + , gi-glib, gi-gobject, haskell-gi, haskell-gi-base 103944 + , haskell-gi-overloading, libgit2-glib, text, transformers 103945 + }: 103946 + mkDerivation { 103947 + pname = "gi-ggit"; 103948 + version = "1.0.10"; 103949 + sha256 = "1rfmvml0wfw522c9gzzpjsg5ajbsbnzylc5rf2x3qqhb1x9y3bd2"; 103950 + setupHaskellDepends = [ 103951 + base Cabal gi-gio gi-glib gi-gobject haskell-gi 103952 + ]; 103953 + libraryHaskellDepends = [ 103954 + base bytestring containers gi-gio gi-glib gi-gobject haskell-gi 103955 + haskell-gi-base haskell-gi-overloading text transformers 103956 + ]; 103957 + libraryPkgconfigDepends = [ libgit2-glib ]; 103958 + description = "libgit2-glib bindings"; 103959 + license = lib.licenses.lgpl21Only; 103960 + hydraPlatforms = lib.platforms.none; 103961 + }) {inherit (pkgs) libgit2-glib;}; 103962 + 103963 "gi-gio" = callPackage 103964 ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib 103965 , gi-gobject, glib, haskell-gi, haskell-gi-base ··· 103979 license = lib.licenses.lgpl21Only; 103980 }) {inherit (pkgs) glib;}; 103981 103982 + "gi-gio_2_0_28" = callPackage 103983 + ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib 103984 + , gi-gobject, glib, haskell-gi, haskell-gi-base 103985 + , haskell-gi-overloading, text, transformers 103986 + }: 103987 + mkDerivation { 103988 + pname = "gi-gio"; 103989 + version = "2.0.28"; 103990 + sha256 = "0bb6ciikk9mf64azbcgnybcjidxwdpjzanarf5ganbb4bb3l5d2h"; 103991 + setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; 103992 + libraryHaskellDepends = [ 103993 + base bytestring containers gi-glib gi-gobject haskell-gi 103994 + haskell-gi-base haskell-gi-overloading text transformers 103995 + ]; 103996 + libraryPkgconfigDepends = [ glib ]; 103997 + description = "Gio bindings"; 103998 + license = lib.licenses.lgpl21Only; 103999 + hydraPlatforms = lib.platforms.none; 104000 + }) {inherit (pkgs) glib;}; 104001 + 104002 "gi-girepository" = callPackage 104003 ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib 104004 , gi-gobject, gobject-introspection, haskell-gi, haskell-gi-base ··· 104018 license = lib.licenses.lgpl21Only; 104019 }) {inherit (pkgs) gobject-introspection;}; 104020 104021 + "gi-girepository_1_0_24" = callPackage 104022 + ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib 104023 + , gi-gobject, gobject-introspection, haskell-gi, haskell-gi-base 104024 + , haskell-gi-overloading, text, transformers 104025 + }: 104026 + mkDerivation { 104027 + pname = "gi-girepository"; 104028 + version = "1.0.24"; 104029 + sha256 = "1sj68k3wih2345gkmv0jb1smka73pxnjy8jwmk2ifgl407f3hhfw"; 104030 + setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; 104031 + libraryHaskellDepends = [ 104032 + base bytestring containers gi-glib gi-gobject haskell-gi 104033 + haskell-gi-base haskell-gi-overloading text transformers 104034 + ]; 104035 + libraryPkgconfigDepends = [ gobject-introspection ]; 104036 + description = "GIRepository (gobject-introspection) bindings"; 104037 + license = lib.licenses.lgpl21Only; 104038 + hydraPlatforms = lib.platforms.none; 104039 + }) {inherit (pkgs) gobject-introspection;}; 104040 + 104041 "gi-glib" = callPackage 104042 ({ mkDerivation, base, bytestring, Cabal, containers, glib 104043 , haskell-gi, haskell-gi-base, haskell-gi-overloading, text ··· 104057 license = lib.licenses.lgpl21Only; 104058 }) {inherit (pkgs) glib;}; 104059 104060 + "gi-glib_2_0_25" = callPackage 104061 + ({ mkDerivation, base, bytestring, Cabal, containers, glib 104062 + , haskell-gi, haskell-gi-base, haskell-gi-overloading, text 104063 + , transformers 104064 + }: 104065 + mkDerivation { 104066 + pname = "gi-glib"; 104067 + version = "2.0.25"; 104068 + sha256 = "0xki14pipyl45q6c0bwllkadbnqjm08ik24aw5gcmrvnjzag5gd7"; 104069 + setupHaskellDepends = [ base Cabal haskell-gi ]; 104070 + libraryHaskellDepends = [ 104071 + base bytestring containers haskell-gi haskell-gi-base 104072 + haskell-gi-overloading text transformers 104073 + ]; 104074 + libraryPkgconfigDepends = [ glib ]; 104075 + description = "GLib bindings"; 104076 + license = lib.licenses.lgpl21Only; 104077 + hydraPlatforms = lib.platforms.none; 104078 + }) {inherit (pkgs) glib;}; 104079 + 104080 "gi-gobject" = callPackage 104081 ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib, glib 104082 , haskell-gi, haskell-gi-base, haskell-gi-overloading, text ··· 104096 license = lib.licenses.lgpl21Only; 104097 }) {inherit (pkgs) glib;}; 104098 104099 + "gi-gobject_2_0_26" = callPackage 104100 + ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib, glib 104101 + , haskell-gi, haskell-gi-base, haskell-gi-overloading, text 104102 + , transformers 104103 + }: 104104 + mkDerivation { 104105 + pname = "gi-gobject"; 104106 + version = "2.0.26"; 104107 + sha256 = "1kddnhdpnm21zma1zr9hpb2krrm5ksri85nzh2s9fc9c2c90xkpz"; 104108 + setupHaskellDepends = [ base Cabal gi-glib haskell-gi ]; 104109 + libraryHaskellDepends = [ 104110 + base bytestring containers gi-glib haskell-gi haskell-gi-base 104111 + haskell-gi-overloading text transformers 104112 + ]; 104113 + libraryPkgconfigDepends = [ glib ]; 104114 + description = "GObject bindings"; 104115 + license = lib.licenses.lgpl21Only; 104116 + hydraPlatforms = lib.platforms.none; 104117 + }) {inherit (pkgs) glib;}; 104118 + 104119 "gi-graphene" = callPackage 104120 ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib 104121 , gi-gobject, graphene-gobject, haskell-gi, haskell-gi-base ··· 104137 broken = true; 104138 }) {graphene-gobject = null;}; 104139 104140 + "gi-graphene_1_0_3" = callPackage 104141 + ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib 104142 + , gi-gobject, graphene-gobject, haskell-gi, haskell-gi-base 104143 + , haskell-gi-overloading, text, transformers 104144 + }: 104145 + mkDerivation { 104146 + pname = "gi-graphene"; 104147 + version = "1.0.3"; 104148 + sha256 = "06sh52338kqqbj6251xdz4yn0601nmxzl4z95w6a70dxs66js03c"; 104149 + setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; 104150 + libraryHaskellDepends = [ 104151 + base bytestring containers gi-glib gi-gobject haskell-gi 104152 + haskell-gi-base haskell-gi-overloading text transformers 104153 + ]; 104154 + libraryPkgconfigDepends = [ graphene-gobject ]; 104155 + description = "Graphene bindings"; 104156 + license = lib.licenses.lgpl21Only; 104157 + hydraPlatforms = lib.platforms.none; 104158 + broken = true; 104159 + }) {graphene-gobject = null;}; 104160 + 104161 "gi-gsk" = callPackage 104162 ({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo 104163 + , gi-gdk, gi-gdkpixbuf, gi-glib, gi-gobject, gi-graphene, gi-pango 104164 + , gtk4, haskell-gi, haskell-gi-base, haskell-gi-overloading, text 104165 , transformers 104166 }: 104167 mkDerivation { 104168 pname = "gi-gsk"; 104169 + version = "4.0.3"; 104170 + sha256 = "16qbmjshl8nz5xkkzas7c4a0w996mbzqkjn1w8crc1fz1v27ckg2"; 104171 setupHaskellDepends = [ 104172 + base Cabal gi-cairo gi-gdk gi-gdkpixbuf gi-glib gi-gobject 104173 + gi-graphene gi-pango haskell-gi 104174 ]; 104175 libraryHaskellDepends = [ 104176 + base bytestring containers gi-cairo gi-gdk gi-gdkpixbuf gi-glib 104177 + gi-gobject gi-graphene gi-pango haskell-gi haskell-gi-base 104178 haskell-gi-overloading text transformers 104179 ]; 104180 libraryPkgconfigDepends = [ gtk4 ]; ··· 104203 license = lib.licenses.lgpl21Only; 104204 }) {inherit (pkgs.gst_all_1) gstreamer;}; 104205 104206 + "gi-gst_1_0_24" = callPackage 104207 + ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib 104208 + , gi-gobject, gstreamer, haskell-gi, haskell-gi-base 104209 + , haskell-gi-overloading, text, transformers 104210 + }: 104211 + mkDerivation { 104212 + pname = "gi-gst"; 104213 + version = "1.0.24"; 104214 + sha256 = "01xbjxwipg1s93fkswag8gp8s696z1l1gaazl2w4wnpyykx4hh8s"; 104215 + setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; 104216 + libraryHaskellDepends = [ 104217 + base bytestring containers gi-glib gi-gobject haskell-gi 104218 + haskell-gi-base haskell-gi-overloading text transformers 104219 + ]; 104220 + libraryPkgconfigDepends = [ gstreamer ]; 104221 + description = "GStreamer bindings"; 104222 + license = lib.licenses.lgpl21Only; 104223 + hydraPlatforms = lib.platforms.none; 104224 + }) {inherit (pkgs.gst_all_1) gstreamer;}; 104225 + 104226 "gi-gstaudio" = callPackage 104227 ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib 104228 , gi-gobject, gi-gst, gi-gstbase, gst-plugins-base, haskell-gi ··· 104230 }: 104231 mkDerivation { 104232 pname = "gi-gstaudio"; 104233 + version = "1.0.23"; 104234 + sha256 = "1gzs1niw45qjxiadj4xwg4fr6d71rb5k18y4plm4jj6iyvd67s72"; 104235 setupHaskellDepends = [ 104236 base Cabal gi-glib gi-gobject gi-gst gi-gstbase haskell-gi 104237 ]; ··· 104267 license = lib.licenses.lgpl21Only; 104268 }) {inherit (pkgs.gst_all_1) gst-plugins-base;}; 104269 104270 + "gi-gstbase_1_0_24" = callPackage 104271 + ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib 104272 + , gi-gobject, gi-gst, gst-plugins-base, haskell-gi, haskell-gi-base 104273 + , haskell-gi-overloading, text, transformers 104274 + }: 104275 + mkDerivation { 104276 + pname = "gi-gstbase"; 104277 + version = "1.0.24"; 104278 + sha256 = "0b8k2xk3ha6b79kkw72kgdmj8vjyh40r26saavin54gznlgd5xh8"; 104279 + setupHaskellDepends = [ 104280 + base Cabal gi-glib gi-gobject gi-gst haskell-gi 104281 + ]; 104282 + libraryHaskellDepends = [ 104283 + base bytestring containers gi-glib gi-gobject gi-gst haskell-gi 104284 + haskell-gi-base haskell-gi-overloading text transformers 104285 + ]; 104286 + libraryPkgconfigDepends = [ gst-plugins-base ]; 104287 + description = "GStreamerBase bindings"; 104288 + license = lib.licenses.lgpl21Only; 104289 + hydraPlatforms = lib.platforms.none; 104290 + }) {inherit (pkgs.gst_all_1) gst-plugins-base;}; 104291 + 104292 "gi-gstpbutils" = callPackage 104293 ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib 104294 , gi-gobject, gi-gst, gi-gstaudio, gi-gsttag, gi-gstvideo ··· 104297 }: 104298 mkDerivation { 104299 pname = "gi-gstpbutils"; 104300 + version = "1.0.23"; 104301 + sha256 = "1j7ml51gnpkcir75wybx93qgs4rll3i5vlhzbqk26xhqkbfzqsf7"; 104302 setupHaskellDepends = [ 104303 base Cabal gi-glib gi-gobject gi-gst gi-gstaudio gi-gsttag 104304 gi-gstvideo haskell-gi ··· 104322 }: 104323 mkDerivation { 104324 pname = "gi-gsttag"; 104325 + version = "1.0.23"; 104326 + sha256 = "17nwiin58kgl3psbwf2ymy2pz87crlasllg1wsabmcbv1dj38sgi"; 104327 setupHaskellDepends = [ 104328 base Cabal gi-glib gi-gobject gi-gst gi-gstbase haskell-gi 104329 ]; ··· 104359 license = lib.licenses.lgpl21Only; 104360 }) {inherit (pkgs.gst_all_1) gst-plugins-base;}; 104361 104362 + "gi-gstvideo_1_0_24" = callPackage 104363 + ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib 104364 + , gi-gobject, gi-gst, gi-gstbase, gst-plugins-base, haskell-gi 104365 + , haskell-gi-base, haskell-gi-overloading, text, transformers 104366 + }: 104367 + mkDerivation { 104368 + pname = "gi-gstvideo"; 104369 + version = "1.0.24"; 104370 + sha256 = "0qjfjk5jnpy1f4grn8i68kwdd1yvnq1yc55rk6yxhlj7wks1d35h"; 104371 + setupHaskellDepends = [ 104372 + base Cabal gi-glib gi-gobject gi-gst gi-gstbase haskell-gi 104373 + ]; 104374 + libraryHaskellDepends = [ 104375 + base bytestring containers gi-glib gi-gobject gi-gst gi-gstbase 104376 + haskell-gi haskell-gi-base haskell-gi-overloading text transformers 104377 + ]; 104378 + libraryPkgconfigDepends = [ gst-plugins-base ]; 104379 + description = "GStreamerVideo bindings"; 104380 + license = lib.licenses.lgpl21Only; 104381 + hydraPlatforms = lib.platforms.none; 104382 + }) {inherit (pkgs.gst_all_1) gst-plugins-base;}; 104383 + 104384 "gi-gtk" = callPackage 104385 ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk 104386 , gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject ··· 104405 license = lib.licenses.lgpl21Only; 104406 }) {inherit (pkgs) gtk3;}; 104407 104408 + "gi-gtk_4_0_4" = callPackage 104409 ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk 104410 , gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject 104411 , gi-graphene, gi-gsk, gi-pango, gtk4, haskell-gi, haskell-gi-base ··· 104413 }: 104414 mkDerivation { 104415 pname = "gi-gtk"; 104416 + version = "4.0.4"; 104417 + sha256 = "18c27hnfyyn3ajx73zy1laflv95xjafdm249ra6z9nynx9gqws6c"; 104418 setupHaskellDepends = [ 104419 base Cabal gi-atk gi-cairo gi-gdk gi-gdkpixbuf gi-gio gi-glib 104420 gi-gobject gi-graphene gi-gsk gi-pango haskell-gi ··· 104452 ]; 104453 description = "Declarative GTK+ programming in Haskell"; 104454 license = lib.licenses.mpl20; 104455 }) {}; 104456 104457 "gi-gtk-declarative-app-simple" = callPackage ··· 104473 ]; 104474 description = "Declarative GTK+ programming in Haskell in the style of Pux"; 104475 license = lib.licenses.mpl20; 104476 }) {}; 104477 104478 "gi-gtk-hs" = callPackage ··· 104490 ]; 104491 description = "A wrapper for gi-gtk, adding a few more idiomatic API parts on top"; 104492 license = lib.licenses.lgpl21Only; 104493 + }) {}; 104494 + 104495 + "gi-gtk-hs_0_3_10" = callPackage 104496 + ({ mkDerivation, base, base-compat, containers, gi-gdk 104497 + , gi-gdkpixbuf, gi-glib, gi-gobject, gi-gtk, haskell-gi-base, mtl 104498 + , text, transformers 104499 + }: 104500 + mkDerivation { 104501 + pname = "gi-gtk-hs"; 104502 + version = "0.3.10"; 104503 + sha256 = "00vhnkblvvq7qjs65rmfy0q2rs388954p6yd1lga2y79lc2xr6fw"; 104504 + libraryHaskellDepends = [ 104505 + base base-compat containers gi-gdk gi-gdkpixbuf gi-glib gi-gobject 104506 + gi-gtk haskell-gi-base mtl text transformers 104507 + ]; 104508 + description = "A wrapper for gi-gtk, adding a few more idiomatic API parts on top"; 104509 + license = lib.licenses.lgpl21Only; 104510 + hydraPlatforms = lib.platforms.none; 104511 }) {}; 104512 104513 "gi-gtkosxapplication" = callPackage ··· 104583 license = lib.licenses.lgpl21Only; 104584 }) {inherit (pkgs) gtksourceview3;}; 104585 104586 + "gi-gtksource_3_0_24" = callPackage 104587 + ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk 104588 + , gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject 104589 + , gi-gtk, gi-pango, gtksourceview3, haskell-gi, haskell-gi-base 104590 + , haskell-gi-overloading, text, transformers 104591 + }: 104592 + mkDerivation { 104593 + pname = "gi-gtksource"; 104594 + version = "3.0.24"; 104595 + sha256 = "0bnwqcn7y5a3z3lkl9l886m9albvc602nb7qsh2jkiilf0ng64dp"; 104596 + setupHaskellDepends = [ 104597 + base Cabal gi-atk gi-cairo gi-gdk gi-gdkpixbuf gi-gio gi-glib 104598 + gi-gobject gi-gtk gi-pango haskell-gi 104599 + ]; 104600 + libraryHaskellDepends = [ 104601 + base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf 104602 + gi-gio gi-glib gi-gobject gi-gtk gi-pango haskell-gi 104603 + haskell-gi-base haskell-gi-overloading text transformers 104604 + ]; 104605 + libraryPkgconfigDepends = [ gtksourceview3 ]; 104606 + description = "GtkSource bindings"; 104607 + license = lib.licenses.lgpl21Only; 104608 + hydraPlatforms = lib.platforms.none; 104609 + }) {inherit (pkgs) gtksourceview3;}; 104610 + 104611 "gi-handy" = callPackage 104612 ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk 104613 , gi-gdk, gi-gio, gi-glib, gi-gobject, gi-gtk, gi-pango, haskell-gi ··· 104616 }: 104617 mkDerivation { 104618 pname = "gi-handy"; 104619 + version = "0.0.8"; 104620 + sha256 = "1k7czb0gszjif2ynz9p7r765ims5m3q5kb9npf97psw88zq6l965"; 104621 setupHaskellDepends = [ 104622 base Cabal gi-atk gi-gdk gi-gio gi-glib gi-gobject gi-gtk gi-pango 104623 haskell-gi ··· 104653 license = lib.licenses.lgpl21Only; 104654 }) {inherit (pkgs) harfbuzz; harfbuzz-gobject = null;}; 104655 104656 + "gi-harfbuzz_0_0_4" = callPackage 104657 + ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib 104658 + , gi-gobject, harfbuzz, harfbuzz-gobject, haskell-gi 104659 + , haskell-gi-base, haskell-gi-overloading, text, transformers 104660 + }: 104661 + mkDerivation { 104662 + pname = "gi-harfbuzz"; 104663 + version = "0.0.4"; 104664 + sha256 = "0h3dgz914n55x7rhwayxscfkhhhj7qgw5a7fh0j2fn18c201klwm"; 104665 + setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; 104666 + libraryHaskellDepends = [ 104667 + base bytestring containers gi-glib gi-gobject haskell-gi 104668 + haskell-gi-base haskell-gi-overloading text transformers 104669 + ]; 104670 + libraryPkgconfigDepends = [ harfbuzz harfbuzz-gobject ]; 104671 + description = "HarfBuzz bindings"; 104672 + license = lib.licenses.lgpl21Only; 104673 + hydraPlatforms = lib.platforms.none; 104674 + }) {inherit (pkgs) harfbuzz; harfbuzz-gobject = null;}; 104675 + 104676 "gi-ibus" = callPackage 104677 ({ mkDerivation, base, bytestring, Cabal, containers, gi-gio 104678 , gi-glib, gi-gobject, haskell-gi, haskell-gi-base ··· 104694 license = lib.licenses.lgpl21Only; 104695 }) {inherit (pkgs) ibus;}; 104696 104697 + "gi-ibus_1_5_3" = callPackage 104698 + ({ mkDerivation, base, bytestring, Cabal, containers, gi-gio 104699 + , gi-glib, gi-gobject, haskell-gi, haskell-gi-base 104700 + , haskell-gi-overloading, ibus, text, transformers 104701 + }: 104702 + mkDerivation { 104703 + pname = "gi-ibus"; 104704 + version = "1.5.3"; 104705 + sha256 = "1gbpbxcdl9f5di2vpnkx3zsy54dkfhz81h3yxss91r65lp9fwrm8"; 104706 + setupHaskellDepends = [ 104707 + base Cabal gi-gio gi-glib gi-gobject haskell-gi 104708 + ]; 104709 + libraryHaskellDepends = [ 104710 + base bytestring containers gi-gio gi-glib gi-gobject haskell-gi 104711 + haskell-gi-base haskell-gi-overloading text transformers 104712 + ]; 104713 + libraryPkgconfigDepends = [ ibus ]; 104714 + description = "IBus bindings"; 104715 + license = lib.licenses.lgpl21Only; 104716 + hydraPlatforms = lib.platforms.none; 104717 + }) {inherit (pkgs) ibus;}; 104718 + 104719 "gi-javascriptcore" = callPackage 104720 ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib 104721 , gi-gobject, haskell-gi, haskell-gi-base, haskell-gi-overloading ··· 104736 hydraPlatforms = lib.platforms.none; 104737 }) {inherit (pkgs) webkitgtk;}; 104738 104739 + "gi-javascriptcore_4_0_23" = callPackage 104740 + ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib 104741 + , gi-gobject, haskell-gi, haskell-gi-base, haskell-gi-overloading 104742 + , text, transformers, webkitgtk 104743 + }: 104744 + mkDerivation { 104745 + pname = "gi-javascriptcore"; 104746 + version = "4.0.23"; 104747 + sha256 = "0r6jmhiq9jij72yz1z6sfjh3dk7g77q07kyvz3ayndqsbn3xrwi7"; 104748 + setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; 104749 + libraryHaskellDepends = [ 104750 + base bytestring containers gi-glib gi-gobject haskell-gi 104751 + haskell-gi-base haskell-gi-overloading text transformers 104752 + ]; 104753 + libraryPkgconfigDepends = [ webkitgtk ]; 104754 + description = "JavaScriptCore bindings"; 104755 + license = lib.licenses.lgpl21Only; 104756 + hydraPlatforms = lib.platforms.none; 104757 + }) {inherit (pkgs) webkitgtk;}; 104758 + 104759 "gi-notify" = callPackage 104760 ({ mkDerivation, base, bytestring, Cabal, containers, gi-gdkpixbuf 104761 , gi-glib, gi-gobject, haskell-gi, haskell-gi-base ··· 104777 license = lib.licenses.lgpl21Only; 104778 }) {inherit (pkgs) libnotify;}; 104779 104780 + "gi-notify_0_7_23" = callPackage 104781 + ({ mkDerivation, base, bytestring, Cabal, containers, gi-gdkpixbuf 104782 + , gi-glib, gi-gobject, haskell-gi, haskell-gi-base 104783 + , haskell-gi-overloading, libnotify, text, transformers 104784 + }: 104785 + mkDerivation { 104786 + pname = "gi-notify"; 104787 + version = "0.7.23"; 104788 + sha256 = "00p10lw9v9q8mh6630ijpz8smnpz5hiiw8kxk1fv8497akssxjsh"; 104789 + setupHaskellDepends = [ 104790 + base Cabal gi-gdkpixbuf gi-glib gi-gobject haskell-gi 104791 + ]; 104792 + libraryHaskellDepends = [ 104793 + base bytestring containers gi-gdkpixbuf gi-glib gi-gobject 104794 + haskell-gi haskell-gi-base haskell-gi-overloading text transformers 104795 + ]; 104796 + libraryPkgconfigDepends = [ libnotify ]; 104797 + description = "Libnotify bindings"; 104798 + license = lib.licenses.lgpl21Only; 104799 + hydraPlatforms = lib.platforms.none; 104800 + }) {inherit (pkgs) libnotify;}; 104801 + 104802 "gi-ostree" = callPackage 104803 ({ mkDerivation, base, bytestring, Cabal, containers, gi-gio 104804 , gi-glib, gi-gobject, haskell-gi, haskell-gi-base ··· 104823 ]; 104824 }) {inherit (pkgs) ostree;}; 104825 104826 + "gi-ostree_1_0_14" = callPackage 104827 + ({ mkDerivation, base, bytestring, Cabal, containers, gi-gio 104828 + , gi-glib, gi-gobject, haskell-gi, haskell-gi-base 104829 + , haskell-gi-overloading, ostree, text, transformers 104830 + }: 104831 + mkDerivation { 104832 + pname = "gi-ostree"; 104833 + version = "1.0.14"; 104834 + sha256 = "08jglqkq0h497iv83rc0br83qrf000gm202hp0j1pnhwvdgp7d0f"; 104835 + setupHaskellDepends = [ 104836 + base Cabal gi-gio gi-glib gi-gobject haskell-gi 104837 + ]; 104838 + libraryHaskellDepends = [ 104839 + base bytestring containers gi-gio gi-glib gi-gobject haskell-gi 104840 + haskell-gi-base haskell-gi-overloading text transformers 104841 + ]; 104842 + libraryPkgconfigDepends = [ ostree ]; 104843 + description = "OSTree bindings"; 104844 + license = lib.licenses.lgpl21Only; 104845 + platforms = [ 104846 + "aarch64-linux" "armv7l-linux" "i686-linux" "x86_64-linux" 104847 + ]; 104848 + hydraPlatforms = lib.platforms.none; 104849 + }) {inherit (pkgs) ostree;}; 104850 + 104851 "gi-pango" = callPackage 104852 ({ mkDerivation, base, bytestring, Cabal, cairo, containers 104853 , gi-glib, gi-gobject, gi-harfbuzz, haskell-gi, haskell-gi-base ··· 104873 license = lib.licenses.lgpl21Only; 104874 }) {inherit (pkgs) cairo; inherit (pkgs) pango;}; 104875 104876 + "gi-pango_1_0_24" = callPackage 104877 + ({ mkDerivation, base, bytestring, Cabal, cairo, containers 104878 + , gi-glib, gi-gobject, gi-harfbuzz, haskell-gi, haskell-gi-base 104879 + , haskell-gi-overloading, pango, text, transformers 104880 + }: 104881 + mkDerivation { 104882 + pname = "gi-pango"; 104883 + version = "1.0.24"; 104884 + sha256 = "0qvz1r3xc4rz2fvaw1mimwn39xim55zn6zhbkavw2n5jm6xnydkh"; 104885 + setupHaskellDepends = [ 104886 + base Cabal gi-glib gi-gobject gi-harfbuzz haskell-gi 104887 + ]; 104888 + libraryHaskellDepends = [ 104889 + base bytestring containers gi-glib gi-gobject gi-harfbuzz 104890 + haskell-gi haskell-gi-base haskell-gi-overloading text transformers 104891 + ]; 104892 + libraryPkgconfigDepends = [ cairo pango ]; 104893 + preCompileBuildDriver = '' 104894 + PKG_CONFIG_PATH+=":${cairo}/lib/pkgconfig" 104895 + setupCompileFlags+=" $(pkg-config --libs cairo-gobject)" 104896 + ''; 104897 + description = "Pango bindings"; 104898 + license = lib.licenses.lgpl21Only; 104899 + hydraPlatforms = lib.platforms.none; 104900 + }) {inherit (pkgs) cairo; inherit (pkgs) pango;}; 104901 + 104902 "gi-pangocairo" = callPackage 104903 ({ mkDerivation, base, bytestring, Cabal, cairo, containers 104904 , gi-cairo, gi-glib, gi-gobject, gi-pango, haskell-gi ··· 104925 license = lib.licenses.lgpl21Only; 104926 }) {inherit (pkgs) cairo; inherit (pkgs) pango;}; 104927 104928 + "gi-pangocairo_1_0_25" = callPackage 104929 + ({ mkDerivation, base, bytestring, Cabal, cairo, containers 104930 + , gi-cairo, gi-glib, gi-gobject, gi-pango, haskell-gi 104931 + , haskell-gi-base, haskell-gi-overloading, pango, text 104932 + , transformers 104933 + }: 104934 + mkDerivation { 104935 + pname = "gi-pangocairo"; 104936 + version = "1.0.25"; 104937 + sha256 = "1w7sdwxfsymysazv9b045li97mjj2xspgrfyhm74x7sd7b4jl4aa"; 104938 + setupHaskellDepends = [ 104939 + base Cabal gi-cairo gi-glib gi-gobject gi-pango haskell-gi 104940 + ]; 104941 + libraryHaskellDepends = [ 104942 + base bytestring containers gi-cairo gi-glib gi-gobject gi-pango 104943 + haskell-gi haskell-gi-base haskell-gi-overloading text transformers 104944 + ]; 104945 + libraryPkgconfigDepends = [ cairo pango ]; 104946 + preCompileBuildDriver = '' 104947 + PKG_CONFIG_PATH+=":${cairo}/lib/pkgconfig" 104948 + setupCompileFlags+=" $(pkg-config --libs cairo-gobject)" 104949 + ''; 104950 + description = "PangoCairo bindings"; 104951 + license = lib.licenses.lgpl21Only; 104952 + hydraPlatforms = lib.platforms.none; 104953 + }) {inherit (pkgs) cairo; inherit (pkgs) pango;}; 104954 + 104955 "gi-poppler" = callPackage 104956 ({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo 104957 , gi-gio, gi-glib, gi-gobject, haskell-gi, haskell-gi-base ··· 104959 }: 104960 mkDerivation { 104961 pname = "gi-poppler"; 104962 + version = "0.18.25"; 104963 + sha256 = "0hl7wljszc1jpjcpl0ax6qidjynr2dh063m1j9xn718f1yqgldix"; 104964 setupHaskellDepends = [ 104965 base Cabal gi-cairo gi-gio gi-glib gi-gobject haskell-gi 104966 ]; ··· 104996 license = lib.licenses.lgpl21Only; 104997 }) {inherit (pkgs) libsecret;}; 104998 104999 + "gi-secret_0_0_13" = callPackage 105000 + ({ mkDerivation, base, bytestring, Cabal, containers, gi-gio 105001 + , gi-glib, gi-gobject, haskell-gi, haskell-gi-base 105002 + , haskell-gi-overloading, libsecret, text, transformers 105003 + }: 105004 + mkDerivation { 105005 + pname = "gi-secret"; 105006 + version = "0.0.13"; 105007 + sha256 = "0n37sdm4q6q807j4wgwwsl28knc71d8jiyx4prxbl2d69gg6i2ka"; 105008 + setupHaskellDepends = [ 105009 + base Cabal gi-gio gi-glib gi-gobject haskell-gi 105010 + ]; 105011 + libraryHaskellDepends = [ 105012 + base bytestring containers gi-gio gi-glib gi-gobject haskell-gi 105013 + haskell-gi-base haskell-gi-overloading text transformers 105014 + ]; 105015 + libraryPkgconfigDepends = [ libsecret ]; 105016 + description = "Libsecret bindings"; 105017 + license = lib.licenses.lgpl21Only; 105018 + hydraPlatforms = lib.platforms.none; 105019 + }) {inherit (pkgs) libsecret;}; 105020 + 105021 "gi-soup" = callPackage 105022 ({ mkDerivation, base, bytestring, Cabal, containers, gi-gio 105023 , gi-glib, gi-gobject, haskell-gi, haskell-gi-base ··· 105037 libraryPkgconfigDepends = [ libsoup ]; 105038 description = "Libsoup bindings"; 105039 license = lib.licenses.lgpl21Only; 105040 + }) {inherit (pkgs) libsoup;}; 105041 + 105042 + "gi-soup_2_4_24" = callPackage 105043 + ({ mkDerivation, base, bytestring, Cabal, containers, gi-gio 105044 + , gi-glib, gi-gobject, haskell-gi, haskell-gi-base 105045 + , haskell-gi-overloading, libsoup, text, transformers 105046 + }: 105047 + mkDerivation { 105048 + pname = "gi-soup"; 105049 + version = "2.4.24"; 105050 + sha256 = "148ksnsfadbx3as23c79nmmsrkzfcvncbvvqqmhygwkm9mxsv9sr"; 105051 + setupHaskellDepends = [ 105052 + base Cabal gi-gio gi-glib gi-gobject haskell-gi 105053 + ]; 105054 + libraryHaskellDepends = [ 105055 + base bytestring containers gi-gio gi-glib gi-gobject haskell-gi 105056 + haskell-gi-base haskell-gi-overloading text transformers 105057 + ]; 105058 + libraryPkgconfigDepends = [ libsoup ]; 105059 + description = "Libsoup bindings"; 105060 + license = lib.licenses.lgpl21Only; 105061 + hydraPlatforms = lib.platforms.none; 105062 }) {inherit (pkgs) libsoup;}; 105063 105064 "gi-vte" = callPackage ··· 105085 license = lib.licenses.lgpl21Only; 105086 }) {vte_291 = pkgs.vte;}; 105087 105088 + "gi-vte_2_91_28" = callPackage 105089 + ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk 105090 + , gi-gdk, gi-gio, gi-glib, gi-gobject, gi-gtk, gi-pango, haskell-gi 105091 + , haskell-gi-base, haskell-gi-overloading, text, transformers 105092 + , vte_291 105093 + }: 105094 + mkDerivation { 105095 + pname = "gi-vte"; 105096 + version = "2.91.28"; 105097 + sha256 = "06bgl5r1r4ri22c43an4h538p0b3icrb8nq1w7fw8cmxqj7y5m33"; 105098 + setupHaskellDepends = [ 105099 + base Cabal gi-atk gi-gdk gi-gio gi-glib gi-gobject gi-gtk gi-pango 105100 + haskell-gi 105101 + ]; 105102 + libraryHaskellDepends = [ 105103 + base bytestring containers gi-atk gi-gdk gi-gio gi-glib gi-gobject 105104 + gi-gtk gi-pango haskell-gi haskell-gi-base haskell-gi-overloading 105105 + text transformers 105106 + ]; 105107 + libraryPkgconfigDepends = [ vte_291 ]; 105108 + description = "Vte bindings"; 105109 + license = lib.licenses.lgpl21Only; 105110 + hydraPlatforms = lib.platforms.none; 105111 + }) {vte_291 = pkgs.vte;}; 105112 + 105113 "gi-webkit" = callPackage 105114 ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk 105115 , gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject ··· 105158 hydraPlatforms = lib.platforms.none; 105159 }) {inherit (pkgs) webkitgtk;}; 105160 105161 + "gi-webkit2_4_0_27" = callPackage 105162 + ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk 105163 + , gi-cairo, gi-gdk, gi-gio, gi-glib, gi-gobject, gi-gtk 105164 + , gi-javascriptcore, gi-soup, haskell-gi, haskell-gi-base 105165 + , haskell-gi-overloading, text, transformers, webkitgtk 105166 + }: 105167 + mkDerivation { 105168 + pname = "gi-webkit2"; 105169 + version = "4.0.27"; 105170 + sha256 = "05ka1i4afd9j5kyyd1z9xxv9vmbmq2wziir3pln9a692zga0f2h1"; 105171 + setupHaskellDepends = [ 105172 + base Cabal gi-atk gi-cairo gi-gdk gi-gio gi-glib gi-gobject gi-gtk 105173 + gi-javascriptcore gi-soup haskell-gi 105174 + ]; 105175 + libraryHaskellDepends = [ 105176 + base bytestring containers gi-atk gi-cairo gi-gdk gi-gio gi-glib 105177 + gi-gobject gi-gtk gi-javascriptcore gi-soup haskell-gi 105178 + haskell-gi-base haskell-gi-overloading text transformers 105179 + ]; 105180 + libraryPkgconfigDepends = [ webkitgtk ]; 105181 + description = "WebKit2 bindings"; 105182 + license = lib.licenses.lgpl21Only; 105183 + hydraPlatforms = lib.platforms.none; 105184 + }) {inherit (pkgs) webkitgtk;}; 105185 + 105186 "gi-webkit2webextension" = callPackage 105187 ({ mkDerivation, base, bytestring, Cabal, containers, gi-gio 105188 , gi-gobject, gi-gtk, gi-javascriptcore, gi-soup, haskell-gi ··· 105191 }: 105192 mkDerivation { 105193 pname = "gi-webkit2webextension"; 105194 + version = "4.0.26"; 105195 + sha256 = "0fa2x9dzcaiv5f5kzf4ql27fr8zgq5fky3gzhj8py0m2pnahpa6v"; 105196 setupHaskellDepends = [ 105197 base Cabal gi-gio gi-gobject gi-gtk gi-javascriptcore gi-soup 105198 haskell-gi ··· 105216 }: 105217 mkDerivation { 105218 pname = "gi-wnck"; 105219 + version = "3.0.10"; 105220 + sha256 = "1q3fncvd7ic0ri2v883xlqlfxm5hiwj0sn750505q73lqllx5wqw"; 105221 setupHaskellDepends = [ 105222 base Cabal gi-atk gi-gdk gi-gdkpixbuf gi-gobject gi-gtk haskell-gi 105223 ]; ··· 105250 libraryPkgconfigDepends = [ xlibsWrapper ]; 105251 description = "xlib bindings"; 105252 license = lib.licenses.lgpl21Only; 105253 + }) {inherit (pkgs) xlibsWrapper;}; 105254 + 105255 + "gi-xlib_2_0_10" = callPackage 105256 + ({ mkDerivation, base, bytestring, Cabal, containers, haskell-gi 105257 + , haskell-gi-base, haskell-gi-overloading, text, transformers 105258 + , xlibsWrapper 105259 + }: 105260 + mkDerivation { 105261 + pname = "gi-xlib"; 105262 + version = "2.0.10"; 105263 + sha256 = "1h6kpg0mm16b5rz7ixi5qj8y0is96cwkkpgwcl8m8ycjscsgfj88"; 105264 + setupHaskellDepends = [ base Cabal haskell-gi ]; 105265 + libraryHaskellDepends = [ 105266 + base bytestring containers haskell-gi haskell-gi-base 105267 + haskell-gi-overloading text transformers 105268 + ]; 105269 + libraryPkgconfigDepends = [ xlibsWrapper ]; 105270 + description = "xlib bindings"; 105271 + license = lib.licenses.lgpl21Only; 105272 + hydraPlatforms = lib.platforms.none; 105273 }) {inherit (pkgs) xlibsWrapper;}; 105274 105275 "giak" = callPackage ··· 105540 }: 105541 mkDerivation { 105542 pname = "git-annex"; 105543 + version = "8.20210330"; 105544 + sha256 = "07dhxlmnj48drgndcplafc7xhby0w3rks68fz9wsppxan929240p"; 105545 configureFlags = [ 105546 "-fassistant" "-f-benchmark" "-fdbus" "-f-debuglocks" "-fmagicmime" 105547 "-fnetworkbsd" "-fpairing" "-fproduction" "-fs3" "-ftorrentparser" ··· 106448 }: 106449 mkDerivation { 106450 pname = "gitlib"; 106451 + version = "3.1.3"; 106452 + sha256 = "02gk4z3q1hrr6wl7c2989ib2nqf8wcsx9msq6nbsfhxjsmc7qds7"; 106453 libraryHaskellDepends = [ 106454 base base16-bytestring bytestring conduit conduit-combinators 106455 containers directory exceptions filepath hashable mtl resourcet ··· 111928 broken = true; 111929 }) {}; 111930 111931 + "graphql-client_1_1_1" = callPackage 111932 + ({ mkDerivation, aeson, aeson-schemas, base, bytestring, file-embed 111933 + , http-client, http-client-tls, http-types, mtl 111934 + , optparse-applicative, path, path-io, tasty, tasty-hunit 111935 + , template-haskell, text, transformers, typed-process 111936 + , unliftio-core 111937 + }: 111938 + mkDerivation { 111939 + pname = "graphql-client"; 111940 + version = "1.1.1"; 111941 + sha256 = "1d00ib9c8ps8vv1qgrkjfzrjbgbsdnp1jiz7779bwm76j88vggb4"; 111942 + isLibrary = true; 111943 + isExecutable = true; 111944 + libraryHaskellDepends = [ 111945 + aeson aeson-schemas base http-client http-client-tls http-types mtl 111946 + template-haskell text transformers unliftio-core 111947 + ]; 111948 + executableHaskellDepends = [ 111949 + aeson aeson-schemas base bytestring file-embed http-client 111950 + http-client-tls http-types mtl optparse-applicative path path-io 111951 + template-haskell text transformers typed-process unliftio-core 111952 + ]; 111953 + testHaskellDepends = [ 111954 + aeson aeson-schemas base http-client http-client-tls http-types mtl 111955 + tasty tasty-hunit template-haskell text transformers unliftio-core 111956 + ]; 111957 + description = "A client for Haskell programs to query a GraphQL API"; 111958 + license = lib.licenses.bsd3; 111959 + hydraPlatforms = lib.platforms.none; 111960 + broken = true; 111961 + }) {}; 111962 + 111963 "graphql-utils" = callPackage 111964 ({ mkDerivation, aeson, aeson-helper, base, graphql, text 111965 , unordered-containers, vector ··· 112743 ]; 112744 description = "MySQL backend for the groundhog library"; 112745 license = lib.licenses.bsd3; 112746 + hydraPlatforms = lib.platforms.none; 112747 + broken = true; 112748 }) {}; 112749 112750 "groundhog-postgresql" = callPackage ··· 115501 testToolDepends = [ hspec-discover ]; 115502 description = "Hackage and Portage integration tool"; 115503 license = "GPL"; 115504 + hydraPlatforms = lib.platforms.none; 115505 + broken = true; 115506 }) {}; 115507 115508 "hactor" = callPackage ··· 115766 }) {}; 115767 115768 "hadolint" = callPackage 115769 + ({ mkDerivation, aeson, base, bytestring, Cabal, colourista 115770 + , containers, cryptonite, deepseq, directory, email-validate 115771 + , filepath, foldl, gitrev, hspec, HsYAML, HUnit, ilist 115772 + , language-docker, megaparsec, mtl, network-uri 115773 + , optparse-applicative, parallel, parsec, semver, ShellCheck, spdx 115774 + , split, text, time, timerep, void 115775 }: 115776 mkDerivation { 115777 pname = "hadolint"; 115778 + version = "2.1.0"; 115779 + sha256 = "0hvn6kq6pasyh9mvnxn4crhg4fxmw7xrcfxa77wkxni8q1a94xxs"; 115780 isLibrary = true; 115781 isExecutable = true; 115782 libraryHaskellDepends = [ 115783 + aeson base bytestring Cabal colourista containers cryptonite 115784 + deepseq directory email-validate filepath foldl HsYAML ilist 115785 + language-docker megaparsec mtl network-uri parallel parsec semver 115786 + ShellCheck spdx split text time timerep void 115787 ]; 115788 executableHaskellDepends = [ 115789 base containers gitrev language-docker megaparsec 115790 optparse-applicative text 115791 ]; 115792 testHaskellDepends = [ 115793 + aeson base bytestring containers foldl hspec HsYAML HUnit 115794 + language-docker megaparsec ShellCheck split text 115795 ]; 115796 description = "Dockerfile Linter JavaScript API"; 115797 license = lib.licenses.gpl3Only; ··· 116597 }: 116598 mkDerivation { 116599 pname = "hakyll-filestore"; 116600 + version = "0.1.9"; 116601 + sha256 = "1lxm78w2n81wsbi6axyrqjv2ikdprf7vvx1r2ricqd6h7dwjsalr"; 116602 libraryHaskellDepends = [ 116603 base filestore hakyll time time-locale-compat 116604 ]; ··· 116883 }: 116884 mkDerivation { 116885 pname = "halive"; 116886 + version = "0.1.8"; 116887 + sha256 = "1zh0jykh1a9lxfsz1vjyr6n56y2y0g1gc16vxnjakyqz131xp7kn"; 116888 isLibrary = true; 116889 isExecutable = true; 116890 libraryHaskellDepends = [ ··· 117548 testToolDepends = [ hspec-discover ]; 117549 description = "A deployment library for Haskell applications"; 117550 license = lib.licenses.mit; 117551 + }) {}; 117552 + 117553 + "hapistrano_0_4_1_3" = callPackage 117554 + ({ mkDerivation, aeson, ansi-terminal, async, base, directory 117555 + , filepath, formatting, gitrev, hspec, hspec-discover, mtl 117556 + , optparse-applicative, path, path-io, process, QuickCheck 117557 + , silently, stm, temporary, time, transformers, typed-process, yaml 117558 + }: 117559 + mkDerivation { 117560 + pname = "hapistrano"; 117561 + version = "0.4.1.3"; 117562 + sha256 = "1sk5z0kf9ybhk17y36zf90ljn51j82pyf8rja0cv64ah9bg5zbgq"; 117563 + isLibrary = true; 117564 + isExecutable = true; 117565 + enableSeparateDataOutput = true; 117566 + libraryHaskellDepends = [ 117567 + aeson ansi-terminal base filepath gitrev mtl path process stm time 117568 + transformers typed-process yaml 117569 + ]; 117570 + executableHaskellDepends = [ 117571 + aeson async base formatting gitrev optparse-applicative path 117572 + path-io stm yaml 117573 + ]; 117574 + testHaskellDepends = [ 117575 + base directory filepath hspec mtl path path-io process QuickCheck 117576 + silently temporary yaml 117577 + ]; 117578 + testToolDepends = [ hspec-discover ]; 117579 + description = "A deployment library for Haskell applications"; 117580 + license = lib.licenses.mit; 117581 + hydraPlatforms = lib.platforms.none; 117582 }) {}; 117583 117584 "happindicator" = callPackage ··· 120178 license = lib.licenses.lgpl21Only; 120179 }) {inherit (pkgs) glib; inherit (pkgs) gobject-introspection;}; 120180 120181 + "haskell-gi_0_25_0" = callPackage 120182 + ({ mkDerivation, ansi-terminal, attoparsec, base, bytestring, Cabal 120183 + , cabal-doctest, containers, directory, doctest, filepath, glib 120184 + , gobject-introspection, haskell-gi-base, mtl, pretty-show, process 120185 + , regex-tdfa, safe, text, transformers, xdg-basedir, xml-conduit 120186 + }: 120187 + mkDerivation { 120188 + pname = "haskell-gi"; 120189 + version = "0.25.0"; 120190 + sha256 = "1bxybi1bj9jwfmyj57cb3471s0wczlp6m1qz893kbz17k96mpin8"; 120191 + setupHaskellDepends = [ base Cabal cabal-doctest ]; 120192 + libraryHaskellDepends = [ 120193 + ansi-terminal attoparsec base bytestring Cabal containers directory 120194 + filepath haskell-gi-base mtl pretty-show process regex-tdfa safe 120195 + text transformers xdg-basedir xml-conduit 120196 + ]; 120197 + libraryPkgconfigDepends = [ glib gobject-introspection ]; 120198 + testHaskellDepends = [ base doctest process ]; 120199 + description = "Generate Haskell bindings for GObject Introspection capable libraries"; 120200 + license = lib.licenses.lgpl21Only; 120201 + hydraPlatforms = lib.platforms.none; 120202 + }) {inherit (pkgs) glib; inherit (pkgs) gobject-introspection;}; 120203 + 120204 "haskell-gi-base" = callPackage 120205 ({ mkDerivation, base, bytestring, containers, glib, text }: 120206 mkDerivation { ··· 120211 libraryPkgconfigDepends = [ glib ]; 120212 description = "Foundation for libraries generated by haskell-gi"; 120213 license = lib.licenses.lgpl21Only; 120214 + }) {inherit (pkgs) glib;}; 120215 + 120216 + "haskell-gi-base_0_25_0" = callPackage 120217 + ({ mkDerivation, base, bytestring, containers, glib, text }: 120218 + mkDerivation { 120219 + pname = "haskell-gi-base"; 120220 + version = "0.25.0"; 120221 + sha256 = "140f6amq69r39vj54i1p4c9q0ysxkvb3yjcrlbrrayf66bhw8mqy"; 120222 + libraryHaskellDepends = [ base bytestring containers text ]; 120223 + libraryPkgconfigDepends = [ glib ]; 120224 + description = "Foundation for libraries generated by haskell-gi"; 120225 + license = lib.licenses.lgpl21Only; 120226 + hydraPlatforms = lib.platforms.none; 120227 }) {inherit (pkgs) glib;}; 120228 120229 "haskell-gi-overloading" = callPackage ··· 120457 license = lib.licenses.mit; 120458 }) {}; 120459 120460 "haskell-lsp_0_24_0_0" = callPackage 120461 ({ mkDerivation, aeson, async, attoparsec, base, bytestring 120462 , containers, data-default, directory, filepath, hashable ··· 120524 ]; 120525 description = "Haskell library for the Microsoft Language Server Protocol, data types"; 120526 license = lib.licenses.mit; 120527 }) {}; 120528 120529 "haskell-lsp-types_0_24_0_0" = callPackage ··· 120643 ]; 120644 description = "Name resolution library for Haskell"; 120645 license = lib.licenses.bsd3; 120646 + hydraPlatforms = lib.platforms.none; 120647 + broken = true; 120648 }) {}; 120649 120650 "haskell-neo4j-client" = callPackage ··· 122670 }: 122671 mkDerivation { 122672 pname = "haskoin-store"; 122673 + version = "0.52.3"; 122674 + sha256 = "12yk4545m9fh6961kd4k7mi8dz3zdqv58nbravr7ziz53m6ydlwq"; 122675 isLibrary = true; 122676 isExecutable = true; 122677 libraryHaskellDepends = [ ··· 122717 }: 122718 mkDerivation { 122719 pname = "haskoin-store-data"; 122720 + version = "0.52.0"; 122721 + sha256 = "0fgjmyps858dvx8i2mzn8kqmms869wamldrdlmy2y27wcmrzzj51"; 122722 libraryHaskellDepends = [ 122723 aeson base binary bytes bytestring cereal containers data-default 122724 deepseq hashable haskoin-core http-client http-types lens mtl ··· 123550 benchmarkHaskellDepends = [ base criterion directory text ]; 123551 description = "CSS Minifier"; 123552 license = lib.licenses.bsd3; 123553 + hydraPlatforms = lib.platforms.none; 123554 + broken = true; 123555 }) {}; 123556 123557 "hasparql-client" = callPackage ··· 123607 license = lib.licenses.mit; 123608 }) {}; 123609 123610 + "hasql_1_4_5_1" = callPackage 123611 + ({ mkDerivation, attoparsec, base, bytestring 123612 + , bytestring-strict-builder, contravariant, contravariant-extras 123613 + , dlist, gauge, hashable, hashtables, mtl, postgresql-binary 123614 + , postgresql-libpq, profunctors, QuickCheck, quickcheck-instances 123615 + , rerebase, tasty, tasty-hunit, tasty-quickcheck, text 123616 + , text-builder, transformers, vector 123617 + }: 123618 + mkDerivation { 123619 + pname = "hasql"; 123620 + version = "1.4.5.1"; 123621 + sha256 = "0y23qk29bq419rjdzpvlr6hkml8fzk3sgl7dzvkvjpdycrzphlzl"; 123622 + libraryHaskellDepends = [ 123623 + attoparsec base bytestring bytestring-strict-builder contravariant 123624 + dlist hashable hashtables mtl postgresql-binary postgresql-libpq 123625 + profunctors text text-builder transformers vector 123626 + ]; 123627 + testHaskellDepends = [ 123628 + contravariant-extras QuickCheck quickcheck-instances rerebase tasty 123629 + tasty-hunit tasty-quickcheck 123630 + ]; 123631 + benchmarkHaskellDepends = [ gauge rerebase ]; 123632 + description = "An efficient PostgreSQL driver with a flexible mapping API"; 123633 + license = lib.licenses.mit; 123634 + hydraPlatforms = lib.platforms.none; 123635 + }) {}; 123636 + 123637 "hasql-backend" = callPackage 123638 ({ mkDerivation, base, base-prelude, bytestring, either, free 123639 , list-t, text, transformers, vector ··· 123819 license = lib.licenses.bsd3; 123820 }) {}; 123821 123822 + "hasql-notifications_0_2_0_0" = callPackage 123823 + ({ mkDerivation, base, bytestring, contravariant, hasql, hasql-pool 123824 + , hspec, postgresql-libpq, QuickCheck, text 123825 + }: 123826 + mkDerivation { 123827 + pname = "hasql-notifications"; 123828 + version = "0.2.0.0"; 123829 + sha256 = "1zizvdvhb0nd126k24j4k62lzkx3qh1vp4976f2n7ri7ga5y6cxi"; 123830 + isLibrary = true; 123831 + isExecutable = true; 123832 + libraryHaskellDepends = [ 123833 + base bytestring contravariant hasql hasql-pool postgresql-libpq 123834 + text 123835 + ]; 123836 + executableHaskellDepends = [ base hasql ]; 123837 + testHaskellDepends = [ base bytestring hasql hspec QuickCheck ]; 123838 + description = "LISTEN/NOTIFY support for Hasql"; 123839 + license = lib.licenses.bsd3; 123840 + hydraPlatforms = lib.platforms.none; 123841 + }) {}; 123842 + 123843 "hasql-optparse-applicative" = callPackage 123844 ({ mkDerivation, base-prelude, hasql, hasql-pool 123845 , optparse-applicative ··· 124025 testHaskellDepends = [ async hasql rebase ]; 124026 description = "Composable abstraction over retryable transactions for Hasql"; 124027 license = lib.licenses.mit; 124028 + }) {}; 124029 + 124030 + "hasql-transaction_1_0_0_2" = callPackage 124031 + ({ mkDerivation, async, base, bytestring, bytestring-tree-builder 124032 + , contravariant, contravariant-extras, hasql, mtl, rerebase 124033 + , transformers 124034 + }: 124035 + mkDerivation { 124036 + pname = "hasql-transaction"; 124037 + version = "1.0.0.2"; 124038 + sha256 = "1ig6fny9c90cmfsh6kcdhj9ps2arn1y80ic2w7ps6mn8wgl0cr82"; 124039 + libraryHaskellDepends = [ 124040 + base bytestring bytestring-tree-builder contravariant 124041 + contravariant-extras hasql mtl transformers 124042 + ]; 124043 + testHaskellDepends = [ async contravariant-extras hasql rerebase ]; 124044 + description = "Composable abstraction over retryable transactions for Hasql"; 124045 + license = lib.licenses.mit; 124046 + hydraPlatforms = lib.platforms.none; 124047 }) {}; 124048 124049 "hasql-url" = callPackage ··· 125928 }) {}; 125929 125930 "heaps" = callPackage 125931 ({ mkDerivation, base }: 125932 mkDerivation { 125933 pname = "heaps"; ··· 125936 libraryHaskellDepends = [ base ]; 125937 description = "Asymptotically optimal Brodal/Okasaki heaps"; 125938 license = lib.licenses.bsd3; 125939 }) {}; 125940 125941 "heapsize" = callPackage ··· 126308 ]; 126309 description = "Hedgehog will eat your typeclass bugs"; 126310 license = lib.licenses.bsd3; 126311 }) {}; 126312 126313 "hedgehog-corpus" = callPackage ··· 127866 testSystemDepends = [ secp256k1 ]; 127867 description = "Ethereum virtual machine evaluator"; 127868 license = lib.licenses.agpl3Only; 127869 + hydraPlatforms = lib.platforms.none; 127870 + broken = true; 127871 }) {inherit (pkgs) libff; inherit (pkgs) secp256k1;}; 127872 127873 "hevolisa" = callPackage ··· 128112 }) {}; 128113 128114 "hexpat-streamparser" = callPackage 128115 + ({ mkDerivation, base, bytestring, cps-except, hexpat, hspec, List 128116 + , mtl, parser-combinators, text, transformers 128117 }: 128118 mkDerivation { 128119 pname = "hexpat-streamparser"; 128120 + version = "0.1.2"; 128121 + sha256 = "03gxahl0lxi30k1ihni7j5xsbzmhlwxdgckw37lm5m2p6xfyagii"; 128122 libraryHaskellDepends = [ 128123 + base bytestring cps-except hexpat List mtl parser-combinators text 128124 transformers 128125 ]; 128126 testHaskellDepends = [ base hexpat hspec ]; ··· 128205 testHaskellDepends = [ base binary bytestring hspec text ]; 128206 description = "Fast and safe representation of a hex string"; 128207 license = lib.licenses.mit; 128208 + hydraPlatforms = lib.platforms.none; 128209 + broken = true; 128210 }) {}; 128211 128212 "hext" = callPackage ··· 128303 }: 128304 mkDerivation { 128305 pname = "heyting-algebras"; 128306 + version = "0.2.0.1"; 128307 + sha256 = "0k1sf6wj9r8c4rlaxj31x7yafl4wacx2kang9qs4253v0z7n1303"; 128308 libraryHaskellDepends = [ 128309 base containers free-algebras hashable lattices semiring-simple 128310 tagged universe-base unordered-containers ··· 128665 ]; 128666 description = "Geometric Algorithms, Data structures, and Data types"; 128667 license = lib.licenses.bsd3; 128668 }) {}; 128669 128670 "hgeometry-combinatorial" = callPackage ··· 128699 testToolDepends = [ hspec-discover ]; 128700 description = "Data structures, and Data types"; 128701 license = lib.licenses.bsd3; 128702 }) {}; 128703 128704 "hgeometry-ipe" = callPackage ··· 129052 ]; 129053 description = "Generate scaffold for cabal project"; 129054 license = lib.licenses.bsd3; 129055 + hydraPlatforms = lib.platforms.none; 129056 + broken = true; 129057 }) {}; 129058 129059 "hi-file-parser" = callPackage ··· 129070 license = lib.licenses.bsd3; 129071 }) {}; 129072 129073 + "hi-file-parser_0_1_1_0" = callPackage 129074 + ({ mkDerivation, base, binary, bytestring, hspec, rio, vector }: 129075 + mkDerivation { 129076 + pname = "hi-file-parser"; 129077 + version = "0.1.1.0"; 129078 + sha256 = "1wb79m6vx7dz4hrvyk2h1iv6q36g9hhywls5ygam7pmw9c4rs3sq"; 129079 + revision = "2"; 129080 + editedCabalFile = "1495j6ky44r660yr5szy2ln96rdhakh0fhnw749g2yyx5l0gwcrs"; 129081 + libraryHaskellDepends = [ base binary bytestring rio vector ]; 129082 + testHaskellDepends = [ base binary bytestring hspec rio vector ]; 129083 + description = "Parser for GHC's hi files"; 129084 + license = lib.licenses.bsd3; 129085 + hydraPlatforms = lib.platforms.none; 129086 + }) {}; 129087 + 129088 "hi3status" = callPackage 129089 ({ mkDerivation, aeson, base, binary, bytestring, dbus, dyre 129090 , network, prefix-units, process, regex-pcre-builtin, text, time ··· 129208 license = lib.licenses.mit; 129209 }) {inherit (pkgs) systemd;}; 129210 129211 + "hidapi_0_1_6" = callPackage 129212 + ({ mkDerivation, base, bytestring, deepseq, deepseq-generics 129213 + , systemd 129214 + }: 129215 + mkDerivation { 129216 + pname = "hidapi"; 129217 + version = "0.1.6"; 129218 + sha256 = "1dy5sbfh8rkzrjpn5ls5xbr32ja0h6bgigzya512advc4c21af2b"; 129219 + libraryHaskellDepends = [ 129220 + base bytestring deepseq deepseq-generics 129221 + ]; 129222 + librarySystemDepends = [ systemd ]; 129223 + description = "Haskell bindings to HIDAPI"; 129224 + license = lib.licenses.mit; 129225 + hydraPlatforms = lib.platforms.none; 129226 + }) {inherit (pkgs) systemd;}; 129227 + 129228 "hidden-char" = callPackage 129229 ({ mkDerivation, base, hspec }: 129230 mkDerivation { ··· 129512 }: 129513 mkDerivation { 129514 pname = "higgledy"; 129515 + version = "0.4.1.1"; 129516 + sha256 = "1aqln8y055ysnzw3sqfdi6rm63a4a8c3n3f4fgv1rqmx76vsvsaz"; 129517 setupHaskellDepends = [ base Cabal cabal-doctest ]; 129518 libraryHaskellDepends = [ 129519 barbies base generic-lens generic-lens-core named QuickCheck ··· 129758 pname = "hills"; 129759 version = "0.1.2.7"; 129760 sha256 = "0zq402ycyxaw9rpxlgj0307xz80qw1159albzw1q0sr4lxfxykcv"; 129761 + revision = "1"; 129762 + editedCabalFile = "1wjln7r8q8dhvq4i5svlhk4zfypibi1cjx75jffc1aq54xy0qq3s"; 129763 isLibrary = false; 129764 isExecutable = true; 129765 executableHaskellDepends = [ ··· 131482 license = lib.licenses.mit; 131483 description = "GLUT events via a Kafka message broker"; 131484 131485 + "hlint_3_2_7" = callPackage 131486 description = "GLUT events via a Kafka message broker"; 131487 description = "GLUT events via a Kafka message broker"; 131488 description = "GLUT events via a Kafka message broker"; ··· 131505 executableHaskellDepends = [ base ]; 131506 description = "GLUT events via a Kafka message broker"; 131507 license = lib.licenses.bsd3; 131508 + hydraPlatforms = lib.platforms.none; 131509 }) {}; 131510 131511 description = "GLUT events via a Kafka message broker"; 131512 description = "GLUT events via a Kafka message broker"; 131513 description = "GLUT events via a Kafka message broker"; 131514 description = "GLUT events via a Kafka message broker"; ··· 131530 executableHaskellDepends = [ base ]; 131531 description = "GLUT events via a Kafka message broker"; 131532 license = lib.licenses.bsd3; 131533 }) {}; 131534 131535 description = "GLUT events via a Kafka message broker"; ··· 131719 ]; 131720 description = "GLUT events via a Kafka message broker"; 131721 license = lib.licenses.asl20; 131722 + hydraPlatforms = lib.platforms.none; 131723 + broken = true; 131724 }) {}; 131725 131726 description = "GLUT events via a Kafka message broker"; ··· 132498 132499 description = "GLUT events via a Kafka message broker"; 132500 ({ mkDerivation, array, base, binary, bytestring, clock, containers 132501 + , directory, filepath, hscurses, mtl, ncurses, pcre-light, process 132502 + , random, unix, utf8-string, zlib 132503 }: 132504 mkDerivation { 132505 description = "GLUT events via a Kafka message broker"; 132506 + version = "2.12.1"; 132507 + sha256 = "15fm6kgdlhzz8y9mhfvmhh0dqzicifv6apsiwm964qbxhgv0ww4y"; 132508 isLibrary = false; 132509 isExecutable = true; 132510 executableHaskellDepends = [ 132511 description = "GLUT events via a Kafka message broker"; 132512 + hscurses mtl pcre-light process random unix utf8-string zlib 132513 ]; 132514 executableSystemDepends = [ ncurses ]; 132515 description = "GLUT events via a Kafka message broker"; ··· 133293 testToolDepends = [ markdown-unlit tasty-discover ]; 133294 description = "GLUT events via a Kafka message broker"; 133295 license = lib.licenses.mit; 133296 + hydraPlatforms = lib.platforms.none; 133297 + broken = true; 133298 }) {}; 133299 133300 description = "GLUT events via a Kafka message broker"; ··· 133397 description = "GLUT events via a Kafka message broker"; 133398 version = "0.2.0.0"; 133399 description = "GLUT events via a Kafka message broker"; 133400 + revision = "1"; 133401 + editedCabalFile = "02l2bna56psk6zlpa1wxcvizh7y1rrwsm8mgnzv77kvym80d92cy"; 133402 setupHaskellDepends = [ base Cabal directory ]; 133403 description = "GLUT events via a Kafka message broker"; 133404 description = "GLUT events via a Kafka message broker"; ··· 134894 license = lib.licenses.bsd3; 134895 }) {}; 134896 134897 + "hpc-codecov_0_3_0_0" = callPackage 134898 + description = "GLUT events via a Kafka message broker"; 134899 + , process, tasty, tasty-hunit 134900 + }: 134901 + mkDerivation { 134902 + description = "GLUT events via a Kafka message broker"; 134903 + version = "0.3.0.0"; 134904 + sha256 = "0999qfm9866gwqk4sx6av21rwbbirvdj5lr4ffl25zimwvirsbd2"; 134905 + isLibrary = true; 134906 + isExecutable = true; 134907 + libraryHaskellDepends = [ 134908 + description = "GLUT events via a Kafka message broker"; 134909 + ]; 134910 + executableHaskellDepends = [ base ]; 134911 + testHaskellDepends = [ 134912 + base directory filepath process tasty tasty-hunit 134913 + ]; 134914 + description = "GLUT events via a Kafka message broker"; 134915 + license = lib.licenses.bsd3; 134916 + hydraPlatforms = lib.platforms.none; 134917 + }) {}; 134918 + 134919 description = "GLUT events via a Kafka message broker"; 134920 description = "GLUT events via a Kafka message broker"; 134921 description = "GLUT events via a Kafka message broker"; ··· 135146 }: 135147 mkDerivation { 135148 description = "GLUT events via a Kafka message broker"; 135149 + version = "0.6.4"; 135150 + sha256 = "0hkdpd4rlc0z3sfj4ymvk751csfdvqf56y9np9qyzh4ndaw9sj78"; 135151 isLibrary = true; 135152 isExecutable = true; 135153 libraryHaskellDepends = [ ··· 135200 }: 135201 mkDerivation { 135202 description = "GLUT events via a Kafka message broker"; 135203 + version = "1.11.0.0"; 135204 + sha256 = "0574ma8b149rhpdk9mdg5sawhl3db4d0qxs5az31g83i93hf4mwq"; 135205 libraryHaskellDepends = [ 135206 description = "GLUT events via a Kafka message broker"; 135207 description = "GLUT events via a Kafka message broker"; ··· 135708 license = lib.licenses.bsd3; 135709 description = "GLUT events via a Kafka message broker"; 135710 135711 + "hruby_0_3_8_1" = callPackage 135712 + description = "GLUT events via a Kafka message broker"; 135713 + description = "GLUT events via a Kafka message broker"; 135714 + , unordered-containers, vector 135715 + }: 135716 + mkDerivation { 135717 + description = "GLUT events via a Kafka message broker"; 135718 + version = "0.3.8.1"; 135719 + sha256 = "00lp02wy7yxhh17dyq1acc6gfrwh145900ib42vz52lzsj5ivlcj"; 135720 + setupHaskellDepends = [ base Cabal process ]; 135721 + libraryHaskellDepends = [ 135722 + description = "GLUT events via a Kafka message broker"; 135723 + unordered-containers vector 135724 + ]; 135725 + description = "GLUT events via a Kafka message broker"; 135726 + testHaskellDepends = [ 135727 + description = "GLUT events via a Kafka message broker"; 135728 + ]; 135729 + description = "GLUT events via a Kafka message broker"; 135730 + license = lib.licenses.bsd3; 135731 + hydraPlatforms = lib.platforms.none; 135732 + description = "GLUT events via a Kafka message broker"; 135733 + 135734 description = "GLUT events via a Kafka message broker"; 135735 description = "GLUT events via a Kafka message broker"; 135736 mkDerivation { ··· 136507 ]; 136508 description = "Create tag files (ctags and etags) for Haskell code"; 136509 license = lib.licenses.mit; 136510 + hydraPlatforms = lib.platforms.none; 136511 + broken = true; 136512 }) {}; 136513 136514 "hs-twitter" = callPackage ··· 138130 doHaddock = false; 138131 description = "Extend the import list of a Haskell source file"; 138132 license = lib.licenses.bsd3; 138133 + hydraPlatforms = lib.platforms.none; 138134 + broken = true; 138135 }) {}; 138136 138137 "hsini" = callPackage ··· 138884 license = lib.licenses.mit; 138885 }) {}; 138886 138887 + "hspec_2_7_9" = callPackage 138888 + ({ mkDerivation, base, hspec-core, hspec-discover 138889 + , hspec-expectations, QuickCheck 138890 + }: 138891 + mkDerivation { 138892 + pname = "hspec"; 138893 + version = "2.7.9"; 138894 + sha256 = "03k8djbzkl47x1kgsplbjjrwx8qqdb31zg9aw0c6ii3d8r49gkyn"; 138895 + libraryHaskellDepends = [ 138896 + base hspec-core hspec-discover hspec-expectations QuickCheck 138897 + ]; 138898 + description = "A Testing Framework for Haskell"; 138899 + license = lib.licenses.mit; 138900 + hydraPlatforms = lib.platforms.none; 138901 + }) {}; 138902 + 138903 "hspec-attoparsec" = callPackage 138904 ({ mkDerivation, attoparsec, base, bytestring, hspec 138905 , hspec-expectations, text ··· 138984 license = lib.licenses.mit; 138985 }) {}; 138986 138987 + "hspec-core_2_7_9" = callPackage 138988 + ({ mkDerivation, ansi-terminal, array, base, call-stack, clock 138989 + , deepseq, directory, filepath, hspec-expectations, hspec-meta 138990 + , HUnit, process, QuickCheck, quickcheck-io, random, setenv 138991 + , silently, stm, temporary, tf-random, transformers 138992 + }: 138993 + mkDerivation { 138994 + pname = "hspec-core"; 138995 + version = "2.7.9"; 138996 + sha256 = "0lqqvrdya7jszdxkzjnwd5g02w1ggmlfkh67bpcmzch6h0v609yj"; 138997 + libraryHaskellDepends = [ 138998 + ansi-terminal array base call-stack clock deepseq directory 138999 + filepath hspec-expectations HUnit QuickCheck quickcheck-io random 139000 + setenv stm tf-random transformers 139001 + ]; 139002 + testHaskellDepends = [ 139003 + ansi-terminal array base call-stack clock deepseq directory 139004 + filepath hspec-expectations hspec-meta HUnit process QuickCheck 139005 + quickcheck-io random setenv silently stm temporary tf-random 139006 + transformers 139007 + ]; 139008 + testToolDepends = [ hspec-meta ]; 139009 + testTarget = "--test-option=--skip --test-option='Test.Hspec.Core.Runner.hspecResult runs specs in parallel'"; 139010 + description = "A Testing Framework for Haskell"; 139011 + license = lib.licenses.mit; 139012 + hydraPlatforms = lib.platforms.none; 139013 + }) {}; 139014 + 139015 "hspec-dirstream" = callPackage 139016 ({ mkDerivation, base, dirstream, filepath, hspec, hspec-core 139017 , pipes, pipes-safe, system-filepath, text ··· 139047 testToolDepends = [ hspec-meta ]; 139048 description = "Automatically discover and run Hspec tests"; 139049 license = lib.licenses.mit; 139050 + }) {}; 139051 + 139052 + "hspec-discover_2_7_9" = callPackage 139053 + ({ mkDerivation, base, directory, filepath, hspec-meta, QuickCheck 139054 + }: 139055 + mkDerivation { 139056 + pname = "hspec-discover"; 139057 + version = "2.7.9"; 139058 + sha256 = "1zr6h8r8ggi4482hnx0p2vsrkirfjimq8zy9yfiiyn5mkcqzxl4v"; 139059 + isLibrary = true; 139060 + isExecutable = true; 139061 + libraryHaskellDepends = [ base directory filepath ]; 139062 + executableHaskellDepends = [ base directory filepath ]; 139063 + testHaskellDepends = [ 139064 + base directory filepath hspec-meta QuickCheck 139065 + ]; 139066 + testToolDepends = [ hspec-meta ]; 139067 + description = "Automatically discover and run Hspec tests"; 139068 + license = lib.licenses.mit; 139069 + hydraPlatforms = lib.platforms.none; 139070 }) {}; 139071 139072 "hspec-expectations" = callPackage ··· 139301 broken = true; 139302 }) {}; 139303 139304 + "hspec-junit-formatter" = callPackage 139305 + ({ mkDerivation, base, conduit, directory, exceptions, hashable 139306 + , hspec, hspec-core, resourcet, temporary, text, xml-conduit 139307 + , xml-types 139308 + }: 139309 + mkDerivation { 139310 + pname = "hspec-junit-formatter"; 139311 + version = "1.0.0.0"; 139312 + sha256 = "1dr7khaib95r7db94gcjb9jd781wxc3d41dcvgk6fyw3a9zx2rms"; 139313 + libraryHaskellDepends = [ 139314 + base conduit directory exceptions hashable hspec hspec-core 139315 + resourcet temporary text xml-conduit xml-types 139316 + ]; 139317 + description = "A JUnit XML runner/formatter for hspec"; 139318 + license = lib.licenses.mit; 139319 + }) {}; 139320 + 139321 + "hspec-junit-formatter_1_0_0_1" = callPackage 139322 + ({ mkDerivation, base, conduit, directory, exceptions, hashable 139323 + , hspec, hspec-core, resourcet, temporary, text, xml-conduit 139324 + , xml-types 139325 + }: 139326 + mkDerivation { 139327 + pname = "hspec-junit-formatter"; 139328 + version = "1.0.0.1"; 139329 + sha256 = "146y4y3q047a5g8dif1vdjsn8jz6kafq0yzd7x5wpg7daccbxami"; 139330 + libraryHaskellDepends = [ 139331 + base conduit directory exceptions hashable hspec hspec-core 139332 + resourcet temporary text xml-conduit xml-types 139333 + ]; 139334 + description = "A JUnit XML runner/formatter for hspec"; 139335 + license = lib.licenses.mit; 139336 + hydraPlatforms = lib.platforms.none; 139337 + }) {}; 139338 + 139339 "hspec-laws" = callPackage 139340 ({ mkDerivation, base, hspec, markdown-unlit, QuickCheck }: 139341 mkDerivation { ··· 140952 license = lib.licenses.mit; 140953 }) {}; 140954 140955 + "html-entities_1_1_4_5" = callPackage 140956 + ({ mkDerivation, attoparsec, base, text, unordered-containers }: 140957 + mkDerivation { 140958 + pname = "html-entities"; 140959 + version = "1.1.4.5"; 140960 + sha256 = "190yh4ijg0pgy4y0jvkyjf8a0z7qxy1mly7c6589qx6lrx66r3rv"; 140961 + libraryHaskellDepends = [ 140962 + attoparsec base text unordered-containers 140963 + ]; 140964 + description = "A codec library for HTML-escaped text and HTML-entities"; 140965 + license = lib.licenses.mit; 140966 + hydraPlatforms = lib.platforms.none; 140967 + }) {}; 140968 + 140969 "html-entity" = callPackage 140970 ({ mkDerivation, attoparsec, base, Cabal, cabal-doctest, doctest 140971 , text, unordered-containers ··· 141389 pname = "http-api-data"; 141390 version = "0.4.3"; 141391 sha256 = "171bw2a44pg50d3y77gw2y9vmx72laky7hnn5hw6r93pnjmlf9yz"; 141392 + revision = "2"; 141393 + editedCabalFile = "1ihz467bn26cszgdk82l49mz2428r7y11693fj2x75fp2h2ml01i"; 141394 libraryHaskellDepends = [ 141395 attoparsec attoparsec-iso8601 base base-compat bytestring 141396 containers cookie hashable http-types tagged text time-compat ··· 141811 }: 141812 mkDerivation { 141813 pname = "http-conduit-downloader"; 141814 + version = "1.1.4"; 141815 + sha256 = "1p6g04ysmd7v5fwsg78q4cqdaix88pv8nhc05r49dsqk9nbnn4y2"; 141816 libraryHaskellDepends = [ 141817 base bytestring data-default HsOpenSSL http-client 141818 http-client-openssl http-types network network-uri text time zlib ··· 143039 ]; 143040 description = "CSS-like syntax for file system manipulation"; 143041 license = lib.licenses.mit; 143042 + hydraPlatforms = lib.platforms.none; 143043 + broken = true; 143044 }) {}; 143045 143046 "hunit-dejafu" = callPackage ··· 143541 pname = "hw-balancedparens"; 143542 version = "0.4.1.1"; 143543 sha256 = "16v36fj5aawnx6glarzljl3yb93zkn06ij5cg40zba5rp8jhpg7z"; 143544 + revision = "3"; 143545 + editedCabalFile = "1myzy3wjwjaqlm31pa90msr8rl26vczd5yqd29mx0gy7p4x2dmgi"; 143546 isLibrary = true; 143547 isExecutable = true; 143548 libraryHaskellDepends = [ ··· 143687 pname = "hw-dsv"; 143688 version = "0.4.1.0"; 143689 sha256 = "1wv0yg662c3bq4kpgfqfjks59v17i5h3v3mils1qpxn4c57jr3s8"; 143690 + revision = "5"; 143691 + editedCabalFile = "0dzysj8fzyfg4ggda5ramq1zad8jb810rg2nncnzv95xmnlwakgl"; 143692 isLibrary = true; 143693 isExecutable = true; 143694 libraryHaskellDepends = [ ··· 143728 pname = "hw-dump"; 143729 version = "0.1.1.0"; 143730 sha256 = "14ya18i3xvay5xn8j20b06msqyd49h34w526k1x1fxdp0i2l3rwr"; 143731 + revision = "5"; 143732 + editedCabalFile = "1rkz578hcn7s9i08n5jc557vph7k017m8vbk6ijf5psa189w1dkh"; 143733 isLibrary = true; 143734 isExecutable = true; 143735 libraryHaskellDepends = [ ··· 143763 pname = "hw-eliasfano"; 143764 version = "0.1.2.0"; 143765 sha256 = "1wqpzznmz6bl88wzhrfcbgi49dw7w7i0p92hyc0m58nanqm1zgnj"; 143766 + revision = "5"; 143767 + editedCabalFile = "0w8kikrrkv8v1drnrjfabzflbgs768qbrfv8n17y4id76aqazml5"; 143768 isLibrary = true; 143769 isExecutable = true; 143770 libraryHaskellDepends = [ ··· 143926 pname = "hw-ip"; 143927 version = "2.4.2.0"; 143928 sha256 = "1bvh4fkg1ffr3y8wink62rgkynlcgjhmra7a4w01h1dmw1vb2vfx"; 143929 + revision = "4"; 143930 + editedCabalFile = "0pjry2xjnhfl3jii8j9dqmqz88hw7g8wkwy4fqnajnchrxb8f06w"; 143931 isLibrary = true; 143932 isExecutable = true; 143933 libraryHaskellDepends = [ ··· 143961 pname = "hw-json"; 143962 version = "1.3.2.2"; 143963 sha256 = "03h5zv94ndsz4vh0jql8rg8pl95rbf8xkyzvr3r55i3kpmb85sbg"; 143964 + revision = "4"; 143965 + editedCabalFile = "0ys0xlmw2xdrrjjdjx1gwlh0qpig8b4ljqwrp2yhp3aihzsb5304"; 143966 isLibrary = true; 143967 isExecutable = true; 143968 libraryHaskellDepends = [ ··· 144006 pname = "hw-json-lens"; 144007 version = "0.2.1.0"; 144008 sha256 = "1v3ws69pyrw5ja00r326kqlq6hd7r5np119fk2la7f74aqhajjf6"; 144009 + revision = "3"; 144010 + editedCabalFile = "0svnn3wdm8adcyw1phk0k9ddzlk3ni1dar681vpq61xwd1xmgjgb"; 144011 libraryHaskellDepends = [ 144012 aeson base bytestring containers hw-json lens scientific text word8 144013 ]; ··· 144034 pname = "hw-json-simd"; 144035 version = "0.1.1.0"; 144036 sha256 = "0bpfyx2bd7pcr8y8bfahcdm30bznqixfawraq3xzy476vy9ppa9n"; 144037 + revision = "3"; 144038 + editedCabalFile = "0f7y8kaj2bv3l1fscwxdnqj7378mrls1mcnsm23cpb5dizy3p2nf"; 144039 isLibrary = true; 144040 isExecutable = true; 144041 libraryHaskellDepends = [ base bytestring hw-prim lens vector ]; ··· 144065 pname = "hw-json-simple-cursor"; 144066 version = "0.1.1.0"; 144067 sha256 = "1kwxnqsa2mkw5sa8rc9rixjm6f75lyjdaz7f67yyhwls5v4315bl"; 144068 + revision = "6"; 144069 + editedCabalFile = "1ws3mcyvba05s0wvwzbig54wxkw37pp55c5jwbsc96inic8cfq3y"; 144070 isLibrary = true; 144071 isExecutable = true; 144072 libraryHaskellDepends = [ ··· 144105 pname = "hw-json-standard-cursor"; 144106 version = "0.2.3.1"; 144107 sha256 = "1mpsspp6ba2zqv38a0rcv93mbwb1rb8snmxklf32g02djj8b4vir"; 144108 + revision = "4"; 144109 + editedCabalFile = "18x3vinc6j5nnq3j5x7zdcy3ys6b2clmb7lhz6qg1wklnfcyjxsb"; 144110 isLibrary = true; 144111 isExecutable = true; 144112 libraryHaskellDepends = [ ··· 144220 pname = "hw-mquery"; 144221 version = "0.2.1.0"; 144222 sha256 = "1qhd8jcwffr57mjraw0g3xj9kb0jd75ybqaj1sbxw31lc2hr9w9j"; 144223 + revision = "2"; 144224 + editedCabalFile = "1996bn28l3s2bgjgll17gpryvp61vxjz0d3zi5py6kk40hsb4y6z"; 144225 isLibrary = true; 144226 isExecutable = true; 144227 libraryHaskellDepends = [ ansi-wl-pprint base dlist lens ]; ··· 144245 pname = "hw-packed-vector"; 144246 version = "0.2.1.0"; 144247 sha256 = "13hly2yzx6kx4j56iksgj4i3wmvg7rmxq57d0g87lmybzhha9q38"; 144248 + revision = "5"; 144249 + editedCabalFile = "0pnrjx4sbbxpr1fvib5z95cxjgfif2iay1j6hk5ysavwn6i2qxqx"; 144250 isLibrary = true; 144251 isExecutable = true; 144252 libraryHaskellDepends = [ ··· 144277 pname = "hw-parser"; 144278 version = "0.1.1.0"; 144279 sha256 = "1zsbw725mw3fn4814qricqanbvx1kgbnqvgwijqgfv8jz7yf5gxa"; 144280 + revision = "2"; 144281 + editedCabalFile = "15r5ydza7dawa5b7y3xi80016pa3s5sb706hvsqvn82fhqp5dziw"; 144282 libraryHaskellDepends = [ 144283 attoparsec base bytestring hw-prim text 144284 ]; ··· 144368 pname = "hw-rankselect"; 144369 version = "0.13.4.0"; 144370 sha256 = "0chk3n4vb55px943w0l3q7pxhgbvqm64vn7lkhi7k0l2dpybycp7"; 144371 + revision = "5"; 144372 + editedCabalFile = "1jbfanh0028sxj0arx92w753dwgpazs8j2flqjq9svc91rpk82px"; 144373 isLibrary = true; 144374 isExecutable = true; 144375 libraryHaskellDepends = [ ··· 144434 pname = "hw-simd"; 144435 version = "0.1.2.0"; 144436 sha256 = "1r202xzqprb1v8ajd9n6ixckjfdy17mn8jibx4j2xgknx595v24f"; 144437 + revision = "2"; 144438 + editedCabalFile = "05rax91afykkmwnxnyi6bmmjh0n9ryw006k9k3klwnvy8h2yaf4m"; 144439 libraryHaskellDepends = [ 144440 base bits-extra bytestring deepseq hw-bits hw-prim hw-rankselect 144441 hw-rankselect-base transformers vector ··· 144581 pname = "hw-uri"; 144582 version = "0.2.1.0"; 144583 sha256 = "1bwdzvms0n86k7gbkhk0jj3m1pcc9vbjk13kgpchqxpxm971srbs"; 144584 + revision = "5"; 144585 + editedCabalFile = "07mir09f9h35f3cajsi68nnmk45fah1730wxi2kbmb8ya28ny0kj"; 144586 isLibrary = true; 144587 isExecutable = true; 144588 libraryHaskellDepends = [ ··· 144633 pname = "hw-xml"; 144634 version = "0.5.1.0"; 144635 sha256 = "0g81kknllbc6v5wx7kgzhh78409njfzr3h7lfdx7ip0nkhhnpmw4"; 144636 + revision = "7"; 144637 + editedCabalFile = "1rikq6wxjg4h5pfg9miw14np7b1h2vf036gawyazq5c4d6l2wfzv"; 144638 isLibrary = true; 144639 isExecutable = true; 144640 enableSeparateDataOutput = true; ··· 144970 license = lib.licenses.mit; 144971 }) {}; 144972 144973 + "hxt_9_3_1_22" = callPackage 144974 + ({ mkDerivation, base, binary, bytestring, containers, deepseq 144975 + , directory, filepath, hxt-charproperties, hxt-regex-xmlschema 144976 + , hxt-unicode, mtl, network-uri, parsec 144977 + }: 144978 + mkDerivation { 144979 + pname = "hxt"; 144980 + version = "9.3.1.22"; 144981 + sha256 = "1n9snbdl46x23ka7bbsls1vsn0plpmfmbpbl0msjfm92fkk2yq7g"; 144982 + libraryHaskellDepends = [ 144983 + base binary bytestring containers deepseq directory filepath 144984 + hxt-charproperties hxt-regex-xmlschema hxt-unicode mtl network-uri 144985 + parsec 144986 + ]; 144987 + description = "A collection of tools for processing XML with Haskell"; 144988 + license = lib.licenses.mit; 144989 + hydraPlatforms = lib.platforms.none; 144990 + }) {}; 144991 + 144992 "hxt-binary" = callPackage 144993 ({ mkDerivation, base, binary, bytestring, bzlib, deepseq 144994 , haskell98, hxt ··· 146082 ]; 146083 description = "iCalendar data types, parser, and printer"; 146084 license = lib.licenses.bsd3; 146085 + maintainers = with lib.maintainers; [ maralorn ]; 146086 }) {}; 146087 146088 "iException" = callPackage ··· 146188 }) {}; 146189 146190 "ice40-prim" = callPackage 146191 + ({ mkDerivation, base, clash-prelude, ghc-typelits-extra 146192 , ghc-typelits-knownnat, ghc-typelits-natnormalise, interpolate 146193 }: 146194 mkDerivation { 146195 pname = "ice40-prim"; 146196 + version = "0.3.1.0"; 146197 + sha256 = "11q09jyckl9q84qv6xxypf5kalxgbrpgq65bqysa26i6xll4p4d0"; 146198 libraryHaskellDepends = [ 146199 + base clash-prelude ghc-typelits-extra ghc-typelits-knownnat 146200 ghc-typelits-natnormalise interpolate 146201 ]; 146202 description = "Lattice iCE40 Primitive IP"; ··· 148380 testHaskellDepends = [ base mtl parsec tasty tasty-hunit ]; 148381 description = "indentation sensitive parser-combinators for parsec"; 148382 license = lib.licenses.bsd3; 148383 + hydraPlatforms = lib.platforms.none; 148384 + broken = true; 148385 }) {}; 148386 148387 "index-core" = callPackage ··· 148842 license = lib.licenses.bsd3; 148843 }) {}; 148844 148845 + "influxdb_1_9_1_2" = callPackage 148846 + description = "GLUT events via a Kafka message broker"; 148847 + , cabal-doctest, clock, containers, doctest, foldl, http-client 148848 + , http-types, lens, network, optional-args, raw-strings-qq 148849 + , scientific, tagged, tasty, tasty-hunit, template-haskell, text 148850 + , time, unordered-containers, vector 148851 + }: 148852 + mkDerivation { 148853 + pname = "influxdb"; 148854 + version = "1.9.1.2"; 148855 + sha256 = "0adrfaimjfrhfx2542wynjpd810yqxnjr3q4hhw8gz75v70f44nn"; 148856 + isLibrary = true; 148857 + isExecutable = true; 148858 + setupHaskellDepends = [ base Cabal cabal-doctest ]; 148859 + libraryHaskellDepends = [ 148860 + aeson attoparsec base bytestring clock containers foldl http-client 148861 + http-types lens network optional-args scientific tagged text time 148862 + unordered-containers vector 148863 + ]; 148864 + testHaskellDepends = [ 148865 + base containers doctest lens raw-strings-qq tasty tasty-hunit 148866 + template-haskell time vector 148867 + ]; 148868 + description = "InfluxDB client library for Haskell"; 148869 + license = lib.licenses.bsd3; 148870 + hydraPlatforms = lib.platforms.none; 148871 + }) {}; 148872 + 148873 "informative" = callPackage 148874 ({ mkDerivation, base, containers, csv, highlighting-kate 148875 , http-conduit, monad-logger, pandoc, persistent ··· 149206 license = lib.licenses.bsd3; 149207 }) {}; 149208 149209 + "input-parsers_0_2_2" = callPackage 149210 + ({ mkDerivation, attoparsec, base, binary, bytestring 149211 + , monoid-subclasses, parsec, parsers, text, transformers 149212 + }: 149213 + mkDerivation { 149214 + pname = "input-parsers"; 149215 + version = "0.2.2"; 149216 + sha256 = "1kb70nxg8bji7bd0y0w81bqyhx62xrbv3y2vib6sp3jkz7yriarz"; 149217 + libraryHaskellDepends = [ 149218 + attoparsec base binary bytestring monoid-subclasses parsec parsers 149219 + text transformers 149220 + ]; 149221 + description = "Extension of the parsers library with more capability and efficiency"; 149222 + license = lib.licenses.bsd3; 149223 + hydraPlatforms = lib.platforms.none; 149224 + }) {}; 149225 + 149226 "inquire" = callPackage 149227 ({ mkDerivation, aether, base, text }: 149228 mkDerivation { ··· 149525 broken = true; 149526 }) {}; 149527 149528 + "instrument" = callPackage 149529 + ({ mkDerivation, array, async, base, bytestring, cereal 149530 + , cereal-text, conduit, containers, csv-conduit, data-default 149531 + , errors, exceptions, hedis, hostname, HUnit, mtl, network, path 149532 + , path-io, QuickCheck, quickcheck-instances, retry, safe-exceptions 149533 + , safecopy, safecopy-hunit, statistics, stm, tasty, tasty-hunit 149534 + , tasty-quickcheck, text, time, transformers, unix, vector, zlib 149535 + }: 149536 + mkDerivation { 149537 + pname = "instrument"; 149538 + version = "0.6.0.0"; 149539 + sha256 = "12wjxd8yi4dg8ca3q96rc2pvdx83hwx5a9zx1i7picl4bm5gq7a4"; 149540 + libraryHaskellDepends = [ 149541 + array base bytestring cereal cereal-text conduit containers 149542 + csv-conduit data-default errors exceptions hedis hostname mtl 149543 + network retry safe-exceptions safecopy statistics text time 149544 + transformers unix vector zlib 149545 + ]; 149546 + testHaskellDepends = [ 149547 + async base bytestring cereal containers data-default hedis HUnit 149548 + path path-io QuickCheck quickcheck-instances safe-exceptions 149549 + safecopy safecopy-hunit stm tasty tasty-hunit tasty-quickcheck 149550 + transformers 149551 + ]; 149552 + description = "Easy stats/metrics instrumentation for Haskell programs"; 149553 + license = lib.licenses.bsd3; 149554 + hydraPlatforms = lib.platforms.none; 149555 + broken = true; 149556 + }) {safecopy-hunit = null;}; 149557 + 149558 "instrument-chord" = callPackage 149559 ({ mkDerivation, array, base, containers, music-diatonic }: 149560 mkDerivation { ··· 150262 executablePkgconfigDepends = [ ncurses ]; 150263 description = "A game of competitive puzzle-design"; 150264 license = lib.licenses.gpl3Only; 150265 + hydraPlatforms = lib.platforms.none; 150266 + broken = true; 150267 }) {inherit (pkgs) ncurses;}; 150268 150269 "intrinsic-superclasses" = callPackage ··· 150937 license = lib.licenses.bsd3; 150938 }) {}; 150939 150940 + "ip6addr_1_0_2" = callPackage 150941 + ({ mkDerivation, base, cmdargs, IPv6Addr, text }: 150942 + mkDerivation { 150943 + pname = "ip6addr"; 150944 + version = "1.0.2"; 150945 + sha256 = "0bj9hr085hg8a8x4dcwvf4cf1876acylrl7bnqpmdrpq1n1rb9sp"; 150946 + isLibrary = false; 150947 + isExecutable = true; 150948 + executableHaskellDepends = [ base cmdargs IPv6Addr text ]; 150949 + description = "Commandline tool to deal with IPv6 address text representations"; 150950 + license = lib.licenses.bsd3; 150951 + hydraPlatforms = lib.platforms.none; 150952 + }) {}; 150953 + 150954 + "ipa" = callPackage 150955 + ({ mkDerivation, attoparsec, base, hspec, text, unicode-transforms 150956 + }: 150957 + mkDerivation { 150958 + pname = "ipa"; 150959 + version = "0.3"; 150960 + sha256 = "0cm9ahqaf2kdqny6nmk9ff1h413v0iqbfsf6glrr5vkhmx60h9qm"; 150961 + revision = "2"; 150962 + editedCabalFile = "1jafvzz7vdbkcwywdhx49g2q1f0gah0bz921kia6lbi5jnyaail1"; 150963 + libraryHaskellDepends = [ 150964 + attoparsec base text unicode-transforms 150965 + ]; 150966 + testHaskellDepends = [ base hspec text ]; 150967 + description = "Internal Phonetic Alphabet (IPA)"; 150968 + license = lib.licenses.bsd3; 150969 + }) {}; 150970 + 150971 "ipatch" = callPackage 150972 ({ mkDerivation, base, bytestring, darcs, directory, filepath 150973 , hashed-storage, process, unix ··· 153709 license = lib.licenses.bsd3; 153710 }) {}; 153711 153712 + "jose-jwt_0_9_2" = callPackage 153713 + ({ mkDerivation, aeson, attoparsec, base, bytestring, cereal 153714 + , containers, criterion, cryptonite, hspec, HUnit, memory, mtl 153715 + , QuickCheck, text, time, transformers, transformers-compat 153716 + , unordered-containers, vector 153717 + }: 153718 + mkDerivation { 153719 + pname = "jose-jwt"; 153720 + version = "0.9.2"; 153721 + sha256 = "1iwzrpgd9lhp0c2hhyv3nfcv5pw344vp1llqf9vdw5mliz116jn4"; 153722 + libraryHaskellDepends = [ 153723 + aeson attoparsec base bytestring cereal containers cryptonite 153724 + memory mtl text time transformers transformers-compat 153725 + unordered-containers vector 153726 + ]; 153727 + testHaskellDepends = [ 153728 + aeson base bytestring cryptonite hspec HUnit memory mtl QuickCheck 153729 + text unordered-containers vector 153730 + ]; 153731 + benchmarkHaskellDepends = [ base bytestring criterion cryptonite ]; 153732 + description = "JSON Object Signing and Encryption Library"; 153733 + license = lib.licenses.bsd3; 153734 + hydraPlatforms = lib.platforms.none; 153735 + }) {}; 153736 + 153737 "jot" = callPackage 153738 ({ mkDerivation, base, data-default, dhall, docopt, extra, filepath 153739 , process, time, turtle, yaml ··· 154281 ]; 154282 description = "Load JSON from files in a directory structure"; 154283 license = lib.licenses.bsd3; 154284 }) {}; 154285 154286 "json-encoder" = callPackage ··· 154525 hydraPlatforms = lib.platforms.none; 154526 }) {}; 154527 154528 + "json-query" = callPackage 154529 + ({ mkDerivation, array-chunks, base, bytebuild, byteslice 154530 + , bytestring, json-syntax, neat-interpolation, primitive 154531 + , scientific-notation, tasty, tasty-hunit, text, text-short 154532 + , transformers 154533 + }: 154534 + mkDerivation { 154535 + pname = "json-query"; 154536 + version = "0.1.0.0"; 154537 + sha256 = "0i1lw40j6qdfcj44mzp5g99plqwdwbh4ab3rfvv24v2c2fq20kqm"; 154538 + libraryHaskellDepends = [ 154539 + array-chunks base bytebuild bytestring json-syntax primitive 154540 + scientific-notation text-short transformers 154541 + ]; 154542 + testHaskellDepends = [ 154543 + array-chunks base bytebuild byteslice bytestring json-syntax 154544 + neat-interpolation primitive tasty tasty-hunit text text-short 154545 + ]; 154546 + description = "Kitchen sink for querying JSON"; 154547 + license = lib.licenses.bsd3; 154548 + hydraPlatforms = lib.platforms.none; 154549 + broken = true; 154550 + }) {}; 154551 + 154552 "json-rpc" = callPackage 154553 ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit 154554 , conduit-extra, deepseq, hashable, hspec, monad-logger, mtl ··· 154736 "json-syntax" = callPackage 154737 ({ mkDerivation, aeson, array-builder, array-chunks, base 154738 , bytebuild, byteslice, bytesmith, bytestring, gauge 154739 + , neat-interpolation, primitive, run-st, scientific 154740 + , scientific-notation, tasty, tasty-hunit, text, text-short 154741 + , unordered-containers, vector 154742 }: 154743 mkDerivation { 154744 pname = "json-syntax"; 154745 + version = "0.2.0.0"; 154746 + sha256 = "0gmi2g0bx9aiv9ll97cgdb0fhzcjyd2kxrfc025kscmjv44c1v5w"; 154747 libraryHaskellDepends = [ 154748 array-builder array-chunks base bytebuild byteslice bytesmith 154749 + bytestring primitive run-st scientific-notation text-short 154750 ]; 154751 testHaskellDepends = [ 154752 aeson array-chunks base bytebuild byteslice bytestring ··· 155019 broken = true; 155020 }) {}; 155021 155022 + "jsonnet" = callPackage 155023 + ({ mkDerivation, aeson, ansi-wl-pprint, base, bytestring 155024 + , containers, data-fix, deriving-compat, directory, exceptions 155025 + , filepath, hashable, megaparsec, mtl, optparse-applicative 155026 + , parser-combinators, scientific, semigroupoids, tasty 155027 + , tasty-golden, tasty-hunit, template-haskell, text 155028 + , transformers-compat, unbound-generics, unordered-containers 155029 + , vector 155030 + }: 155031 + mkDerivation { 155032 + pname = "jsonnet"; 155033 + version = "0.2.0.0"; 155034 + sha256 = "0ns2yij8yl555n5rb0pahxpqrwxgzfvdr4ajp0dy5amqsv13hhmh"; 155035 + isLibrary = true; 155036 + isExecutable = true; 155037 + libraryHaskellDepends = [ 155038 + aeson ansi-wl-pprint base bytestring containers data-fix 155039 + deriving-compat directory exceptions filepath hashable megaparsec 155040 + mtl optparse-applicative parser-combinators scientific 155041 + semigroupoids template-haskell text transformers-compat 155042 + unbound-generics unordered-containers vector 155043 + ]; 155044 + executableHaskellDepends = [ 155045 + aeson ansi-wl-pprint base bytestring mtl optparse-applicative text 155046 + ]; 155047 + testHaskellDepends = [ 155048 + ansi-wl-pprint base bytestring filepath mtl tasty tasty-golden 155049 + tasty-hunit text 155050 + ]; 155051 + description = "Jsonnet implementaton in pure Haskell"; 155052 + license = lib.licenses.bsd3; 155053 + hydraPlatforms = lib.platforms.none; 155054 + broken = true; 155055 + }) {}; 155056 + 155057 "jsonpath" = callPackage 155058 ({ mkDerivation, aeson, aeson-casing, attoparsec, base, bytestring 155059 , file-embed, hspec, hspec-attoparsec, hspec-discover, text ··· 157036 }: 157037 mkDerivation { 157038 pname = "kempe"; 157039 + version = "0.2.0.1"; 157040 + sha256 = "1xs2jism3r2pgvir1rr318dfrjagkagvzzdrs7n9070xzv3p3c5q"; 157041 isLibrary = false; 157042 isExecutable = true; 157043 enableSeparateDataOutput = true; ··· 157055 process tasty tasty-golden tasty-hunit temporary text 157056 ]; 157057 benchmarkHaskellDepends = [ 157058 + base bytestring criterion prettyprinter temporary text 157059 ]; 157060 doHaddock = false; 157061 description = "Kempe compiler"; ··· 157557 }: 157558 mkDerivation { 157559 pname = "kind-generics-th"; 157560 version = "0.2.2.2"; 157561 sha256 = "1lgz7wvz5jvq65r7zmymcfx3hwskw2b45a3vfwj0pgnddpjmh9n4"; 157562 libraryHaskellDepends = [ ··· 157565 testHaskellDepends = [ base kind-generics template-haskell ]; 157566 description = "Template Haskell support for generating `GenericK` instances"; 157567 license = lib.licenses.bsd3; 157568 }) {}; 157569 157570 "kinds" = callPackage ··· 159902 ]; 159903 description = "JavaScript parser and pretty-printer library"; 159904 license = lib.licenses.bsd3; 159905 }) {}; 159906 159907 "language-ecmascript-analysis" = callPackage ··· 159917 ]; 159918 description = "JavaScript static analysis library"; 159919 license = lib.licenses.bsd3; 159920 }) {}; 159921 159922 "language-eiffel" = callPackage ··· 160149 ({ mkDerivation, base, hspec, parsec }: 160150 mkDerivation { 160151 pname = "language-js"; 160152 + version = "0.3.0"; 160153 + sha256 = "0f5ql9cqfn443r63g8waar3g5jmfx0xr3kanwrcj54ra1psqm8p1"; 160154 libraryHaskellDepends = [ base parsec ]; 160155 testHaskellDepends = [ base hspec parsec ]; 160156 description = "javascript parser for es6 and es7"; 160157 + license = lib.licenses.mit; 160158 }) {}; 160159 160160 "language-kort" = callPackage ··· 161197 ]; 161198 description = "Fine-grained library for constructing and manipulating lattices"; 161199 license = lib.licenses.bsd3; 161200 }) {}; 161201 161202 "launchdarkly-server-sdk" = callPackage ··· 162386 pname = "lens-aeson"; 162387 version = "1.1.1"; 162388 sha256 = "1g37c8p25by3hvy5lmq4rqyl9wxmxmci2h16rj4i5jcp7slf3mvg"; 162389 + revision = "1"; 162390 + editedCabalFile = "16n6id5l84v2n3yd8n5i2my4s4p8m0z85hgbzfrpm3rhr1haja00"; 162391 libraryHaskellDepends = [ 162392 aeson attoparsec base bytestring lens scientific text 162393 unordered-containers vector ··· 163506 broken = true; 163507 }) {}; 163508 163509 + "libiserv_9_0_1" = callPackage 163510 + ({ mkDerivation, base, binary, bytestring, containers, deepseq 163511 + , ghci, unix 163512 + }: 163513 + mkDerivation { 163514 + pname = "libiserv"; 163515 + version = "9.0.1"; 163516 + sha256 = "1f7q09xyxv0q9rjmr0a9f96am44rjsy0r5iy9b8lkrch67xfjd3v"; 163517 + libraryHaskellDepends = [ 163518 + base binary bytestring containers deepseq ghci unix 163519 + ]; 163520 + description = "Provides shared functionality between iserv and iserv-proxy"; 163521 + license = lib.licenses.bsd3; 163522 + hydraPlatforms = lib.platforms.none; 163523 + }) {}; 163524 + 163525 "libjenkins" = callPackage 163526 ({ mkDerivation, async, attoparsec, base, bytestring, conduit 163527 , containers, directory, doctest, filepath, free, hspec ··· 164370 ]; 164371 description = "Synchronize personal configs across multiple machines"; 164372 license = lib.licenses.mpl20; 164373 + hydraPlatforms = lib.platforms.none; 164374 + broken = true; 164375 }) {}; 164376 164377 "lifetimes" = callPackage ··· 164449 license = lib.licenses.bsd3; 164450 }) {}; 164451 164452 + "lifted-async_0_10_2" = callPackage 164453 + ({ mkDerivation, async, base, constraints, deepseq, HUnit 164454 + , lifted-base, monad-control, mtl, tasty, tasty-bench 164455 + , tasty-expected-failure, tasty-hunit, tasty-th, transformers-base 164456 + }: 164457 + mkDerivation { 164458 + pname = "lifted-async"; 164459 + version = "0.10.2"; 164460 + sha256 = "0alhvrvxp4f4srllyq5br3waiba4c93cc4nxm7jd23440swr6a31"; 164461 + libraryHaskellDepends = [ 164462 + async base constraints lifted-base monad-control transformers-base 164463 + ]; 164464 + testHaskellDepends = [ 164465 + async base HUnit lifted-base monad-control mtl tasty 164466 + tasty-expected-failure tasty-hunit tasty-th 164467 + ]; 164468 + benchmarkHaskellDepends = [ async base deepseq tasty-bench ]; 164469 + description = "Run lifted IO operations asynchronously and wait for their results"; 164470 + license = lib.licenses.bsd3; 164471 + hydraPlatforms = lib.platforms.none; 164472 + }) {}; 164473 + 164474 "lifted-base" = callPackage 164475 ({ mkDerivation, base, criterion, HUnit, monad-control, monad-peel 164476 , test-framework, test-framework-hunit, transformers ··· 165831 }: 165832 mkDerivation { 165833 pname = "lion"; 165834 + version = "0.2.0.0"; 165835 + sha256 = "0i0sr8jiaigpfhy4wnvblnrx5bl7l1vbh0pzjpdzks6r3g07h58f"; 165836 libraryHaskellDepends = [ 165837 base Cabal clash-prelude generic-monoid ghc-typelits-extra 165838 ghc-typelits-knownnat ghc-typelits-natnormalise ice40-prim lens mtl ··· 166088 testSystemDepends = [ z3 ]; 166089 description = "Liquid Types for Haskell"; 166090 license = lib.licenses.bsd3; 166091 + hydraPlatforms = lib.platforms.none; 166092 + broken = true; 166093 }) {inherit (pkgs) z3;}; 166094 166095 "liquidhaskell-cabal" = callPackage ··· 166434 pname = "list-tuple"; 166435 version = "0.1.3.0"; 166436 sha256 = "1qd5pr7i9xsym09ly6am3a0id3cwbb8w4xphbsjkv3wrlfv9z9v0"; 166437 + revision = "1"; 166438 + editedCabalFile = "1xmim80y3mcj81ak2xh3mpy1g2kqwqy4q7rh8n69ipbwsldqcfwg"; 166439 setupHaskellDepends = [ base Cabal directory ]; 166440 description = "GLUT events via a Kafka message broker"; 166441 testHaskellDepends = [ ··· 168803 }: 168804 mkDerivation { 168805 pname = "lorentz"; 168806 + version = "0.11.0"; 168807 + sha256 = "0mnxch3bz5hpbykfpgjvq521a596g59lkzydijwqccj9cganmr55"; 168808 libraryHaskellDepends = [ 168809 aeson-pretty base-noprelude bimap bytestring constraints containers 168810 data-default first-class-families fmt interpolate lens morley ··· 169102 license = lib.licenses.mit; 169103 }) {}; 169104 169105 + "lsp_1_2_0_0" = callPackage 169106 + ({ mkDerivation, aeson, async, attoparsec, base, bytestring 169107 + , containers, data-default, dependent-map, directory, filepath 169108 + , hashable, hslogger, hspec, hspec-discover, lens, lsp-types, mtl 169109 + , network-uri, QuickCheck, quickcheck-instances, random 169110 + , rope-utf16-splay, scientific, sorted-list, stm, text, time 169111 + , transformers, unliftio-core, unordered-containers, uuid 169112 + }: 169113 + mkDerivation { 169114 + pname = "lsp"; 169115 + version = "1.2.0.0"; 169116 + sha256 = "0ca8s84xlh9kmi1lx47d6z3c8c827q30spmbxi1nl37dn35ib4b6"; 169117 + isLibrary = true; 169118 + isExecutable = true; 169119 + libraryHaskellDepends = [ 169120 + aeson async attoparsec base bytestring containers data-default 169121 + dependent-map directory filepath hashable hslogger lens lsp-types 169122 + mtl network-uri random scientific sorted-list stm text time 169123 + transformers unliftio-core unordered-containers uuid 169124 + ]; 169125 + testHaskellDepends = [ 169126 + aeson base bytestring containers data-default directory filepath 169127 + hashable hspec lens network-uri QuickCheck quickcheck-instances 169128 + rope-utf16-splay sorted-list stm text unordered-containers 169129 + ]; 169130 + testToolDepends = [ hspec-discover ]; 169131 + description = "Haskell library for the Microsoft Language Server Protocol"; 169132 + license = lib.licenses.mit; 169133 + hydraPlatforms = lib.platforms.none; 169134 + }) {}; 169135 + 169136 "lsp-test" = callPackage 169137 ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, async, base 169138 , bytestring, conduit, conduit-parse, containers, data-default ··· 169160 license = lib.licenses.bsd3; 169161 }) {}; 169162 169163 + "lsp-test_0_13_0_0" = callPackage 169164 ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, async, base 169165 , bytestring, conduit, conduit-parse, containers, data-default 169166 + , Diff, directory, filepath, Glob, hspec, lens, lsp-types, mtl 169167 + , parser-combinators, process, some, text, time, transformers, unix 169168 , unordered-containers 169169 }: 169170 mkDerivation { 169171 pname = "lsp-test"; 169172 + version = "0.13.0.0"; 169173 + sha256 = "1xyxmzcd6r56jj1k11lz1g6yld5q3k6cgb0bsf45px120dsf1dpy"; 169174 isLibrary = true; 169175 isExecutable = true; 169176 libraryHaskellDepends = [ 169177 aeson aeson-pretty ansi-terminal async base bytestring conduit 169178 conduit-parse containers data-default Diff directory filepath Glob 169179 + lens lsp-types mtl parser-combinators process some text time 169180 + transformers unix unordered-containers 169181 ]; 169182 testHaskellDepends = [ 169183 + aeson base data-default directory filepath hspec lens lsp-types 169184 text unordered-containers 169185 ]; 169186 description = "Functional test framework for LSP servers"; ··· 169188 hydraPlatforms = lib.platforms.none; 169189 }) {}; 169190 169191 + "lsp-test_0_14_0_0" = callPackage 169192 ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, async, base 169193 , bytestring, conduit, conduit-parse, containers, data-default 169194 + , Diff, directory, extra, filepath, Glob, hspec, lens, lsp 169195 + , lsp-types, mtl, parser-combinators, process, some, text, time 169196 + , transformers, unix, unliftio, unordered-containers 169197 }: 169198 mkDerivation { 169199 pname = "lsp-test"; 169200 + version = "0.14.0.0"; 169201 + sha256 = "1pa6cial43d6dgkabk3ak4jyfznia5bliww7r9126qahj9dxgpcr"; 169202 libraryHaskellDepends = [ 169203 aeson aeson-pretty ansi-terminal async base bytestring conduit 169204 conduit-parse containers data-default Diff directory filepath Glob ··· 169206 transformers unix unordered-containers 169207 ]; 169208 testHaskellDepends = [ 169209 + aeson async base data-default directory filepath hspec lens lsp mtl 169210 + parser-combinators process text unliftio unordered-containers 169211 ]; 169212 + testToolDepends = [ lsp ]; 169213 + benchmarkHaskellDepends = [ base extra lsp process ]; 169214 description = "Functional test framework for LSP servers"; 169215 license = lib.licenses.bsd3; 169216 hydraPlatforms = lib.platforms.none; ··· 169237 ]; 169238 description = "Haskell library for the Microsoft Language Server Protocol, data types"; 169239 license = lib.licenses.mit; 169240 + }) {}; 169241 + 169242 + "lsp-types_1_2_0_0" = callPackage 169243 + ({ mkDerivation, aeson, base, binary, bytestring, containers 169244 + , data-default, deepseq, dependent-sum, dependent-sum-template 169245 + , directory, filepath, hashable, hslogger, lens, network-uri 169246 + , rope-utf16-splay, scientific, some, template-haskell, temporary 169247 + , text, unordered-containers 169248 + }: 169249 + mkDerivation { 169250 + pname = "lsp-types"; 169251 + version = "1.2.0.0"; 169252 + sha256 = "1axl62yafkxh414dxr5i7pwqw0s3kkqphs7b259qk33vin3qayk3"; 169253 + libraryHaskellDepends = [ 169254 + aeson base binary bytestring containers data-default deepseq 169255 + dependent-sum dependent-sum-template directory filepath hashable 169256 + hslogger lens network-uri rope-utf16-splay scientific some 169257 + template-haskell temporary text unordered-containers 169258 + ]; 169259 + description = "Haskell library for the Microsoft Language Server Protocol, data types"; 169260 + license = lib.licenses.mit; 169261 + hydraPlatforms = lib.platforms.none; 169262 }) {}; 169263 169264 "lss" = callPackage ··· 170404 ({ mkDerivation, base, binary, bytestring, machines }: 170405 mkDerivation { 170406 pname = "machines-binary"; 170407 + version = "7.0.0.0"; 170408 + sha256 = "15zds0g91cn5kckkbfjl17dgi6jikv13c9gwr99fawmq056y29b8"; 170409 libraryHaskellDepends = [ base binary bytestring machines ]; 170410 description = "Binary utilities for the machines library"; 170411 license = lib.licenses.asl20; ··· 170432 }: 170433 mkDerivation { 170434 pname = "machines-directory"; 170435 + version = "7.0.0.0"; 170436 + sha256 = "0wkbnw79b4gsxwyk0hymny0q0z3xqy0kbl1mcnv1rlk1xssxyy1q"; 170437 libraryHaskellDepends = [ 170438 base directory filepath machines machines-io transformers 170439 ]; ··· 170462 }: 170463 mkDerivation { 170464 pname = "machines-io"; 170465 + version = "7.0.0.0"; 170466 + sha256 = "1d7dxx4g1027v41i1rmaa5s7r5dxcjx271rzh6v671gcxpqm6ysn"; 170467 libraryHaskellDepends = [ 170468 base bytestring chunked-data machines transformers 170469 ]; ··· 170478 }: 170479 mkDerivation { 170480 pname = "machines-process"; 170481 + version = "7.0.0.1"; 170482 + sha256 = "0pf1prahz3kcqkcqi7zj1rpbfyvahslknm2m6kwxmmzw0b9d3br9"; 170483 libraryHaskellDepends = [ 170484 base chunked-data machines machines-io process 170485 ]; ··· 172640 license = lib.licenses.bsd2; 172641 }) {}; 172642 172643 + "math-functions_0_3_4_2" = callPackage 172644 + ({ mkDerivation, base, data-default-class, deepseq, erf, gauge 172645 + , primitive, QuickCheck, random, tasty, tasty-hunit 172646 + , tasty-quickcheck, vector, vector-th-unbox 172647 + }: 172648 + mkDerivation { 172649 + pname = "math-functions"; 172650 + version = "0.3.4.2"; 172651 + sha256 = "18y1hlc8p6yyxa14zdbm84aaq58kksbrlfp3rj2bd4ilsb00mrf1"; 172652 + libraryHaskellDepends = [ 172653 + base data-default-class deepseq primitive vector 172654 + ]; 172655 + testHaskellDepends = [ 172656 + base data-default-class deepseq erf primitive QuickCheck tasty 172657 + tasty-hunit tasty-quickcheck vector vector-th-unbox 172658 + ]; 172659 + benchmarkHaskellDepends = [ 172660 + base data-default-class gauge random vector 172661 + ]; 172662 + description = "Collection of tools for numeric computations"; 172663 + license = lib.licenses.bsd2; 172664 + hydraPlatforms = lib.platforms.none; 172665 + }) {}; 172666 + 172667 "math-grads" = callPackage 172668 ({ mkDerivation, aeson, array, base, bimap, containers, hspec 172669 , ilist, lens, linear, matrix, mtl, random, vector ··· 172725 testToolDepends = [ tasty-discover ]; 172726 description = "A library for formulating and solving math programs"; 172727 license = lib.licenses.bsd3; 172728 + hydraPlatforms = lib.platforms.none; 172729 + broken = true; 172730 }) {}; 172731 172732 "math-programming-glpk" = callPackage ··· 174696 ]; 174697 description = "Support for using mergeful from persistent-based databases"; 174698 license = lib.licenses.mit; 174699 + hydraPlatforms = lib.platforms.none; 174700 + broken = true; 174701 }) {}; 174702 174703 "mergeless" = callPackage ··· 174736 ]; 174737 description = "Support for using mergeless from persistent-based databases"; 174738 license = lib.licenses.mit; 174739 + hydraPlatforms = lib.platforms.none; 174740 + broken = true; 174741 }) {}; 174742 174743 "merkle-log" = callPackage ··· 175345 ]; 175346 description = "A Micro service gateway"; 175347 license = lib.licenses.bsd3; 175348 + hydraPlatforms = lib.platforms.none; 175349 + broken = true; 175350 }) {}; 175351 175352 "micro-recursion-schemes" = callPackage ··· 177074 }) {}; 177075 177076 "mit-3qvpPyAi6mH" = callPackage 177077 + ({ mkDerivation, base, base64, clock, directory, free, process 177078 + , record-dot-preprocessor, record-hasfield, temporary, text 177079 + , text-ansi, unix 177080 }: 177081 mkDerivation { 177082 pname = "mit-3qvpPyAi6mH"; 177083 + version = "3"; 177084 + sha256 = "0yy7j1ddnny5wq8ywkkmdas9qlfsi26pk0adklmh2c0kqfss4s3f"; 177085 + isLibrary = true; 177086 isExecutable = true; 177087 + libraryHaskellDepends = [ 177088 + base base64 clock directory process record-dot-preprocessor 177089 + record-hasfield text text-ansi unix 177090 + ]; 177091 executableHaskellDepends = [ 177092 base base64 clock directory process record-dot-preprocessor 177093 record-hasfield text text-ansi unix 177094 ]; 177095 + testHaskellDepends = [ 177096 + base base64 clock directory free process record-dot-preprocessor 177097 + record-hasfield temporary text text-ansi unix 177098 + ]; 177099 description = "A git wrapper with a streamlined UX"; 177100 license = lib.licenses.mit; 177101 + hydraPlatforms = lib.platforms.none; 177102 + broken = true; 177103 }) {}; 177104 177105 "miv" = callPackage ··· 177457 ({ mkDerivation, base, vector }: 177458 mkDerivation { 177459 pname = "mmsyn2"; 177460 + version = "0.3.2.0"; 177461 + sha256 = "0xp6mh3rwvxvy9x194x4ya6vd127b5b5z095gdhp5gagsbj7zx0l"; 177462 libraryHaskellDepends = [ base vector ]; 177463 description = "The library that can be used for multiple (Ord a) => a -> b transformations"; 177464 license = lib.licenses.mit; ··· 177468 ({ mkDerivation, base }: 177469 mkDerivation { 177470 pname = "mmsyn2-array"; 177471 + version = "0.1.3.0"; 177472 + sha256 = "12sr98mwmqvljv5npcp3qjafrd7hwjwpswpqw6lyqmnjii3hwqmn"; 177473 libraryHaskellDepends = [ base ]; 177474 description = "A library with less dependencies that can be used for multiple Ord a => a -> b transformations"; 177475 license = lib.licenses.mit; ··· 177815 pname = "mod"; 177816 version = "0.1.2.1"; 177817 sha256 = "0fjcjk9jxwc2d1fm3kzamh9gi3lwnl2g6kz3z2hd43dszkay1mn1"; 177818 + revision = "2"; 177819 + editedCabalFile = "0h4dff2r9q5619pfahdm4bb6xmsqvv5b6d0na1i2sg7zq58ac2bq"; 177820 libraryHaskellDepends = [ 177821 base deepseq integer-gmp primitive semirings vector 177822 ]; ··· 180342 pname = "months"; 180343 version = "0.2"; 180344 sha256 = "054dag7806850hdii7s5rxg8gx2spdp33pnx4s4ckni9ayvspija"; 180345 + revision = "1"; 180346 + editedCabalFile = "0hg0qa1bja05ls9l0aascqxx65nxvm1rwyvgis93ajwrbqpbi9j5"; 180347 libraryHaskellDepends = [ 180348 aeson attoparsec base base-compat deepseq hashable intervals 180349 QuickCheck text time-compat ··· 180515 }: 180516 mkDerivation { 180517 pname = "morley"; 180518 + version = "1.14.0"; 180519 + sha256 = "1rajgkgmckiy54mdilbq21df5h3ij9a1n1v6jahgrgy9hyyg8qcv"; 180520 isLibrary = true; 180521 isExecutable = true; 180522 libraryHaskellDepends = [ ··· 180550 ({ mkDerivation, base-noprelude, universum }: 180551 mkDerivation { 180552 pname = "morley-prelude"; 180553 + version = "0.4.0"; 180554 + sha256 = "1g2ng8d5s32xwflbcfl1fsr2c2lzyh3vvyqslk76w9jn3nln164l"; 180555 libraryHaskellDepends = [ base-noprelude universum ]; 180556 description = "A custom prelude used in Morley"; 180557 + license = lib.licenses.mit; 180558 }) {}; 180559 180560 + "morley-upgradeable" = callPackage 180561 + ({ mkDerivation, base-noprelude, cleveland, colourista, constraints 180562 + , containers, first-class-families, fmt, hedgehog, hex-text, hspec 180563 + , HUnit, lens, lorentz, morley, morley-client, morley-prelude, mtl 180564 + , optparse-applicative, singletons, tasty, tasty-discover 180565 + , tasty-hspec, tasty-hunit-compat, text, vinyl, with-utf8 180566 + }: 180567 + mkDerivation { 180568 + pname = "morley-upgradeable"; 180569 + version = "0.3"; 180570 + sha256 = "1rl36a686n8dv3bnvnfcr1xiqb8c3diadk5m6wr6axj4h7w0a8cc"; 180571 + isLibrary = true; 180572 + isExecutable = true; 180573 + libraryHaskellDepends = [ 180574 + base-noprelude cleveland colourista constraints containers 180575 + first-class-families fmt hedgehog hex-text HUnit lens lorentz 180576 + morley morley-client morley-prelude mtl singletons text vinyl 180577 + ]; 180578 + executableHaskellDepends = [ 180579 + base-noprelude constraints fmt lorentz morley morley-client 180580 + morley-prelude optparse-applicative with-utf8 180581 + ]; 180582 + testHaskellDepends = [ 180583 + base-noprelude cleveland containers hedgehog hspec HUnit lorentz 180584 + morley morley-prelude tasty tasty-hspec tasty-hunit-compat 180585 + ]; 180586 + testToolDepends = [ tasty-discover ]; 180587 + description = "Upgradeability infrastructure based on Morley"; 180588 + license = lib.licenses.mit; 180589 + hydraPlatforms = lib.platforms.none; 180590 + broken = true; 180591 + }) {cleveland = null; morley-client = null;}; 180592 + 180593 "morloc" = callPackage 180594 ({ mkDerivation, aeson, base, bytestring, containers, directory 180595 , docopt, extra, filepath, haskell-src-meta, megaparsec, mtl ··· 183323 ]; 183324 description = "Pure Haskell implementation of the MurmurHash3 x86_32 algorithm"; 183325 license = lib.licenses.mit; 183326 + hydraPlatforms = lib.platforms.none; 183327 + broken = true; 183328 }) {}; 183329 183330 "murmurhash3" = callPackage ··· 184012 pname = "mwc-random"; 184013 version = "0.15.0.1"; 184014 sha256 = "1p8c5g4hb72k90ai39rgpn6cr942i6636l1y0zfp9xgjb3v0a2q3"; 184015 + revision = "2"; 184016 + editedCabalFile = "0si7d23ycyg1072w10v06zh1xx4yy5jxwmrrs65inrs7fhdb1r28"; 184017 libraryHaskellDepends = [ 184018 base math-functions primitive random time vector 184019 ]; ··· 184813 pname = "named"; 184814 version = "0.3.0.1"; 184815 sha256 = "0dnp4qbhn6ci2dlp230gpq8c5z26wb2liani1myc598g2b3c2qij"; 184816 + revision = "2"; 184817 + editedCabalFile = "03g6y6viakybmxpv9jnlbhq5yvchwdp2f1cvcdvlm10c5wkl71a1"; 184818 libraryHaskellDepends = [ base ]; 184819 testHaskellDepends = [ base ]; 184820 description = "Named parameters (keyword arguments) for Haskell"; ··· 185390 ]; 185391 description = "Natural number"; 185392 license = lib.licenses.bsd3; 185393 + hydraPlatforms = lib.platforms.none; 185394 + broken = true; 185395 }) {}; 185396 185397 "natural-arithmetic" = callPackage ··· 187310 }) {}; 187311 187312 "network-packet-linux" = callPackage 187313 + ({ mkDerivation, base, bytestring, directory, hspec, hspec-discover 187314 + , HUnit, network, QuickCheck 187315 }: 187316 mkDerivation { 187317 pname = "network-packet-linux"; 187318 + version = "0.1.1.0"; 187319 + sha256 = "0d86g04qpbqf97lwcmp3grqq7i62xmn1ki9px2dbpl4abgclljdb"; 187320 + description = "GLUT events via a Kafka message broker"; 187321 testHaskellDepends = [ 187322 + base bytestring directory hspec HUnit network QuickCheck 187323 ]; 187324 testToolDepends = [ hspec-discover ]; 187325 description = "Types for working with Linux packet sockets"; 187326 license = lib.licenses.bsd3; 187327 hydraPlatforms = lib.platforms.none; 187328 broken = true; 187329 + }) {}; 187330 187331 "network-pgi" = callPackage 187332 ({ mkDerivation, attoparsec, attoparsec-enumerator, base ··· 188362 }: 188363 mkDerivation { 188364 pname = "ngx-export-tools-extra"; 188365 + version = "0.7.0.0"; 188366 + sha256 = "0d7p227s33sg5g1ck5s9pmcwnwvvpanbzyq2qc54bzpawpvn5kwi"; 188367 libraryHaskellDepends = [ 188368 aeson array base base64 binary bytestring case-insensitive 188369 containers ede enclosed-exceptions http-client http-types network ··· 188674 pname = "nix-derivation"; 188675 version = "1.1.1"; 188676 sha256 = "1jcgq7c0x6q33ddq3ns4w69z23r31cvb2qxj04v2pyd5v8rwls9d"; 188677 + revision = "2"; 188678 + editedCabalFile = "1s5xjz62bhmf8y6m7mggag8r9jvg0m2wq20h7k04a7yz3k778mnr"; 188679 isLibrary = true; 188680 isExecutable = true; 188681 libraryHaskellDepends = [ ··· 188691 maintainers = with lib.maintainers; [ sorki ]; 188692 }) {}; 188693 188694 + "nix-derivation_1_1_2" = callPackage 188695 + ({ mkDerivation, attoparsec, base, containers, criterion, deepseq 188696 + , filepath, pretty-show, QuickCheck, text, vector 188697 + }: 188698 + mkDerivation { 188699 + pname = "nix-derivation"; 188700 + version = "1.1.2"; 188701 + sha256 = "0248xbxq4889hc3qp9z0yr21f97j3lxrjjx2isxdf8ah4hpidzy7"; 188702 + isLibrary = true; 188703 + isExecutable = true; 188704 + libraryHaskellDepends = [ 188705 + attoparsec base containers deepseq filepath text vector 188706 + ]; 188707 + executableHaskellDepends = [ attoparsec base pretty-show text ]; 188708 + testHaskellDepends = [ 188709 + attoparsec base filepath QuickCheck text vector 188710 + ]; 188711 + benchmarkHaskellDepends = [ attoparsec base criterion text ]; 188712 + description = "Parse and render *.drv files"; 188713 + license = lib.licenses.bsd3; 188714 + hydraPlatforms = lib.platforms.none; 188715 + maintainers = with lib.maintainers; [ sorki ]; 188716 + }) {}; 188717 + 188718 "nix-diff" = callPackage 188719 ({ mkDerivation, attoparsec, base, containers, directory, mtl 188720 , nix-derivation, optparse-applicative, patience, text, unix ··· 188722 }: 188723 mkDerivation { 188724 pname = "nix-diff"; 188725 + version = "1.0.13"; 188726 + sha256 = "1zdssxzzwdaf12j2817clbv3r6pbwbsvzprxlnm0ipfnf66z63lz"; 188727 isLibrary = false; 188728 isExecutable = true; 188729 executableHaskellDepends = [ ··· 188879 188880 "nix-tree" = callPackage 188881 ({ mkDerivation, aeson, base, brick, bytestring, clock, containers 188882 + , deepseq, directory, filepath, hashable, hedgehog, hrfsize, relude 188883 + , text, transformers, typed-process, unordered-containers, vty 188884 }: 188885 mkDerivation { 188886 pname = "nix-tree"; 188887 + version = "0.1.7"; 188888 + sha256 = "17w0lcfr2rxyfzrdhbw9lci9k5xs1566jypip910r78373c72nbj"; 188889 isLibrary = false; 188890 isExecutable = true; 188891 executableHaskellDepends = [ 188892 aeson base brick bytestring clock containers deepseq directory 188893 + filepath hashable hrfsize relude text transformers typed-process 188894 unordered-containers vty 188895 ]; 188896 testHaskellDepends = [ 188897 aeson base brick bytestring clock containers deepseq directory 188898 + filepath hashable hedgehog hrfsize relude text transformers 188899 typed-process unordered-containers vty 188900 ]; 188901 description = "Interactively browse a Nix store paths dependencies"; ··· 190134 license = lib.licenses.bsd3; 190135 }) {}; 190136 190137 + "nri-env-parser_0_1_0_6" = callPackage 190138 + ({ mkDerivation, base, modern-uri, network-uri, nri-prelude, text 190139 + }: 190140 + mkDerivation { 190141 + pname = "nri-env-parser"; 190142 + version = "0.1.0.6"; 190143 + sha256 = "1hmq6676w3f5mpdpd4jbd1aa6g379q6yyidcvdyhazqxcb0dhirh"; 190144 + libraryHaskellDepends = [ 190145 + base modern-uri network-uri nri-prelude text 190146 + ]; 190147 + description = "Read environment variables as settings to build 12-factor apps"; 190148 + license = lib.licenses.bsd3; 190149 + hydraPlatforms = lib.platforms.none; 190150 + }) {}; 190151 + 190152 "nri-observability" = callPackage 190153 ({ mkDerivation, aeson, aeson-pretty, async, base, bugsnag-hs 190154 , bytestring, directory, hostname, http-client, http-client-tls ··· 190173 license = lib.licenses.bsd3; 190174 }) {}; 190175 190176 + "nri-observability_0_1_0_1" = callPackage 190177 + ({ mkDerivation, aeson, aeson-pretty, async, base, bugsnag-hs 190178 + , bytestring, directory, hostname, http-client, http-client-tls 190179 + , nri-env-parser, nri-prelude, random, safe-exceptions, stm, text 190180 + , time, unordered-containers 190181 + }: 190182 + mkDerivation { 190183 + pname = "nri-observability"; 190184 + version = "0.1.0.1"; 190185 + sha256 = "02baq11z5qq9lq9yh8zc29s44i44qz1m593ypn3qd8rgc1arrfjj"; 190186 + libraryHaskellDepends = [ 190187 + aeson aeson-pretty async base bugsnag-hs bytestring directory 190188 + hostname http-client http-client-tls nri-env-parser nri-prelude 190189 + random safe-exceptions stm text time unordered-containers 190190 + ]; 190191 + testHaskellDepends = [ 190192 + aeson aeson-pretty async base bugsnag-hs bytestring directory 190193 + hostname http-client http-client-tls nri-env-parser nri-prelude 190194 + random safe-exceptions stm text time unordered-containers 190195 + ]; 190196 + description = "Report log spans collected by nri-prelude"; 190197 + license = lib.licenses.bsd3; 190198 + hydraPlatforms = lib.platforms.none; 190199 + }) {}; 190200 + 190201 "nri-prelude" = callPackage 190202 ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, async 190203 , auto-update, base, bytestring, containers, directory, exceptions ··· 190224 license = lib.licenses.bsd3; 190225 }) {}; 190226 190227 + "nri-prelude_0_5_0_2" = callPackage 190228 + ({ mkDerivation, aeson, aeson-pretty, async, auto-update, base 190229 + , bytestring, containers, directory, exceptions, filepath, ghc 190230 + , hedgehog, junit-xml, pretty-diff, pretty-show, safe-coloured-text 190231 + , safe-exceptions, terminal-size, text, time, vector 190232 + }: 190233 + mkDerivation { 190234 + pname = "nri-prelude"; 190235 + version = "0.5.0.2"; 190236 + sha256 = "1g96nf1nslynqywkqzb4x0k17v0fcw37jidrp7yzkmz16yhqxh1n"; 190237 + libraryHaskellDepends = [ 190238 + aeson aeson-pretty async auto-update base bytestring containers 190239 + directory exceptions filepath ghc hedgehog junit-xml pretty-diff 190240 + pretty-show safe-coloured-text safe-exceptions terminal-size text 190241 + time vector 190242 + ]; 190243 + testHaskellDepends = [ 190244 + aeson aeson-pretty async auto-update base bytestring containers 190245 + directory exceptions filepath ghc hedgehog junit-xml pretty-diff 190246 + pretty-show safe-coloured-text safe-exceptions terminal-size text 190247 + time vector 190248 + ]; 190249 + description = "A Prelude inspired by the Elm programming language"; 190250 + license = lib.licenses.bsd3; 190251 + hydraPlatforms = lib.platforms.none; 190252 + }) {}; 190253 + 190254 "nsis" = callPackage 190255 ({ mkDerivation, base, directory, process, transformers, uniplate 190256 }: ··· 191194 ]; 191195 description = "A bullet-hell game made with SDL2"; 191196 license = lib.licenses.asl20; 191197 + hydraPlatforms = lib.platforms.none; 191198 + broken = true; 191199 }) {}; 191200 191201 "o-clock" = callPackage ··· 192770 "openai-hs" = callPackage 192771 ({ mkDerivation, aeson, base, bytestring, casing, containers, cpphs 192772 , hspec, http-client, http-client-tls, http-types, openai-servant 192773 + , servant, servant-client, servant-client-core, servant-multipart 192774 + , text, vector 192775 }: 192776 mkDerivation { 192777 pname = "openai-hs"; 192778 + version = "0.2.0.0"; 192779 + sha256 = "0pgwq1mfsmaqr7vxlii9rj8mhp2z5iwbf6pi4pj495khpnb877lc"; 192780 libraryHaskellDepends = [ 192781 + aeson base bytestring casing cpphs http-client http-types 192782 + openai-servant servant servant-client servant-multipart text 192783 ]; 192784 testHaskellDepends = [ 192785 aeson base bytestring casing containers cpphs hspec http-client 192786 http-client-tls http-types openai-servant servant servant-client 192787 + servant-client-core servant-multipart text vector 192788 ]; 192789 description = "Unofficial OpenAI client"; 192790 license = lib.licenses.bsd3; ··· 192793 }) {}; 192794 192795 "openai-servant" = callPackage 192796 + ({ mkDerivation, aeson, base, bytestring, casing, servant 192797 + , servant-multipart, text, time, vector 192798 }: 192799 mkDerivation { 192800 pname = "openai-servant"; 192801 + version = "0.2.0.0"; 192802 + sha256 = "08r3jpbxqm36lsdz6zva6ps0j1xdlvqnrwhmk7141njsb4k3xxad"; 192803 libraryHaskellDepends = [ 192804 + aeson base bytestring casing servant servant-multipart text time 192805 + vector 192806 ]; 192807 description = "Unofficial OpenAI servant types"; 192808 license = lib.licenses.bsd3; 192809 + hydraPlatforms = lib.platforms.none; 192810 + broken = true; 192811 }) {}; 192812 192813 "openapi-petstore" = callPackage ··· 194993 }: 194994 mkDerivation { 194995 pname = "ory-kratos"; 194996 + version = "0.0.5.10"; 194997 + sha256 = "0cn52z8d4l7z08xnz8dxiazbd109zsnl7qpy38biwvfsmzh9s46w"; 194998 libraryHaskellDepends = [ 194999 aeson base containers exceptions http-api-data http-client 195000 http-client-tls http-types mtl network-uri servant servant-client ··· 196014 maintainers = with lib.maintainers; [ peti ]; 196015 }) {}; 196016 196017 + "pandoc_2_13" = callPackage 196018 + ({ mkDerivation, aeson, aeson-pretty, attoparsec, base 196019 + , base64-bytestring, binary, blaze-html, blaze-markup, bytestring 196020 + , case-insensitive, citeproc, commonmark, commonmark-extensions 196021 + , commonmark-pandoc, connection, containers, data-default, deepseq 196022 + , Diff, directory, doclayout, doctemplates, emojis, exceptions 196023 + , file-embed, filepath, Glob, haddock-library, hslua 196024 + , hslua-module-path, hslua-module-system, hslua-module-text, HsYAML 196025 + , HTTP, http-client, http-client-tls, http-types, ipynb 196026 + , jira-wiki-markup, JuicyPixels, mtl, network, network-uri 196027 + , pandoc-types, parsec, process, QuickCheck, random, safe 196028 + , scientific, SHA, skylighting, skylighting-core, split, syb 196029 + , tagsoup, tasty, tasty-bench, tasty-golden, tasty-hunit, tasty-lua 196030 + , tasty-quickcheck, temporary, texmath, text, text-conversions 196031 + , time, unicode-transforms, unix, unordered-containers, xml 196032 + , xml-conduit, zip-archive, zlib 196033 + }: 196034 + mkDerivation { 196035 + pname = "pandoc"; 196036 + version = "2.13"; 196037 + sha256 = "1f725bbazqw81gfw3wn8ii8pb4qj5z49jibl1l4l972gsgfbmgrh"; 196038 + configureFlags = [ "-fhttps" "-f-trypandoc" ]; 196039 + isLibrary = true; 196040 + isExecutable = true; 196041 + enableSeparateDataOutput = true; 196042 + libraryHaskellDepends = [ 196043 + description = "GLUT events via a Kafka message broker"; 196044 + blaze-html blaze-markup bytestring case-insensitive citeproc 196045 + commonmark commonmark-extensions commonmark-pandoc connection 196046 + containers data-default deepseq directory doclayout doctemplates 196047 + emojis exceptions file-embed filepath Glob haddock-library hslua 196048 + hslua-module-path hslua-module-system hslua-module-text HsYAML HTTP 196049 + http-client http-client-tls http-types ipynb jira-wiki-markup 196050 + JuicyPixels mtl network network-uri pandoc-types parsec process 196051 + random safe scientific SHA skylighting skylighting-core split syb 196052 + tagsoup temporary texmath text text-conversions time 196053 + unicode-transforms unix unordered-containers xml xml-conduit 196054 + zip-archive zlib 196055 + ]; 196056 + executableHaskellDepends = [ base ]; 196057 + testHaskellDepends = [ 196058 + base bytestring containers Diff directory doctemplates exceptions 196059 + filepath Glob hslua mtl pandoc-types process QuickCheck tasty 196060 + tasty-golden tasty-hunit tasty-lua tasty-quickcheck text time xml 196061 + zip-archive 196062 + ]; 196063 + benchmarkHaskellDepends = [ 196064 + base bytestring containers deepseq mtl tasty-bench text time 196065 + ]; 196066 + postInstall = '' 196067 + mkdir -p $out/share/man/man1 196068 + mv "man/"*.1 $out/share/man/man1/ 196069 + ''; 196070 + description = "Conversion between markup formats"; 196071 + license = lib.licenses.gpl2Plus; 196072 + hydraPlatforms = lib.platforms.none; 196073 + maintainers = with lib.maintainers; [ peti ]; 196074 + }) {}; 196075 + 196076 "pandoc-citeproc" = callPackage 196077 ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring 196078 , Cabal, containers, data-default, directory, filepath, hs-bibutils ··· 196106 doCheck = false; 196107 description = "Supports using pandoc with citeproc"; 196108 license = lib.licenses.bsd3; 196109 + hydraPlatforms = lib.platforms.none; 196110 + broken = true; 196111 }) {}; 196112 196113 "pandoc-citeproc-preamble" = callPackage ··· 196138 pname = "pandoc-crossref"; 196139 version = "0.3.10.0"; 196140 sha256 = "1yymm8y9hzkbjff7cn63qsvpfks1f1n741vfdiiga66kml8v0zdm"; 196141 + revision = "1"; 196142 + editedCabalFile = "0grjcp8r5fh41qnn3miw6bms3ml9v6n1rjb2yvimf1v69w61nlgq"; 196143 isLibrary = true; 196144 isExecutable = true; 196145 enableSeparateDataOutput = true; ··· 196837 license = lib.licenses.bsd3; 196838 }) {}; 196839 196840 + "pantry_0_5_1_5" = callPackage 196841 + ({ mkDerivation, aeson, ansi-terminal, base, bytestring, Cabal 196842 + , casa-client, casa-types, conduit, conduit-extra, containers 196843 + , cryptonite, cryptonite-conduit, digest, exceptions, filelock 196844 + , generic-deriving, hackage-security, hedgehog, hpack, hspec 196845 + , http-client, http-client-tls, http-conduit, http-download 196846 + , http-types, memory, mtl, network-uri, path, path-io, persistent 196847 + , persistent-sqlite, persistent-template, primitive, QuickCheck 196848 + , raw-strings-qq, resourcet, rio, rio-orphans, rio-prettyprint 196849 + , tar-conduit, text, text-metrics, time, transformers, unix-compat 196850 + , unliftio, unordered-containers, vector, yaml, zip-archive 196851 + }: 196852 + mkDerivation { 196853 + pname = "pantry"; 196854 + version = "0.5.1.5"; 196855 + sha256 = "18pnihbybgnaa1hs9pcz8vvvzlfn3wv8p2rnnf1p2w6m63n8vf9a"; 196856 + libraryHaskellDepends = [ 196857 + aeson ansi-terminal base bytestring Cabal casa-client casa-types 196858 + conduit conduit-extra containers cryptonite cryptonite-conduit 196859 + digest filelock generic-deriving hackage-security hpack http-client 196860 + http-client-tls http-conduit http-download http-types memory mtl 196861 + network-uri path path-io persistent persistent-sqlite 196862 + persistent-template primitive resourcet rio rio-orphans 196863 + rio-prettyprint tar-conduit text text-metrics time transformers 196864 + unix-compat unliftio unordered-containers vector yaml zip-archive 196865 + ]; 196866 + testHaskellDepends = [ 196867 + aeson ansi-terminal base bytestring Cabal casa-client casa-types 196868 + conduit conduit-extra containers cryptonite cryptonite-conduit 196869 + digest exceptions filelock generic-deriving hackage-security 196870 + hedgehog hpack hspec http-client http-client-tls http-conduit 196871 + http-download http-types memory mtl network-uri path path-io 196872 + persistent persistent-sqlite persistent-template primitive 196873 + QuickCheck raw-strings-qq resourcet rio rio-orphans rio-prettyprint 196874 + tar-conduit text text-metrics time transformers unix-compat 196875 + unliftio unordered-containers vector yaml zip-archive 196876 + ]; 196877 + description = "Content addressable Haskell package management"; 196878 + license = lib.licenses.bsd3; 196879 + hydraPlatforms = lib.platforms.none; 196880 + }) {}; 196881 + 196882 "pantry-tmp" = callPackage 196883 ({ mkDerivation, aeson, ansi-terminal, array, base, base-orphans 196884 , base64-bytestring, bytestring, Cabal, conduit, conduit-extra ··· 197538 }: 197539 mkDerivation { 197540 pname = "parameterized-utils"; 197541 + version = "2.1.3.0"; 197542 + sha256 = "1222lsdf4jbxwinv88g0sdnmbfyyxjmhfiinmasi5qbgkay4907l"; 197543 libraryHaskellDepends = [ 197544 base base-orphans constraints containers deepseq ghc-prim hashable 197545 hashtables lens mtl template-haskell text th-abstraction vector ··· 197666 }: 197667 mkDerivation { 197668 pname = "parconc-examples"; 197669 + version = "0.4.8"; 197670 + sha256 = "0v247qwlmfa27xpmn25rllgxxbdy28hfylsyp90irbd8vmaxy8sk"; 197671 isLibrary = false; 197672 isExecutable = true; 197673 executableHaskellDepends = [ ··· 198245 pname = "parsers"; 198246 version = "0.12.10"; 198247 sha256 = "0v0smxbzk1qpdfkfqqmrzd2dngv3vxba10mkjn9nfm6a309izf8p"; 198248 + revision = "1"; 198249 + editedCabalFile = "15pcq6iz3mbcwlknzxxfgd1myhyl41fs4j3m80pkif6dm5g18rv3"; 198250 libraryHaskellDepends = [ 198251 attoparsec base base-orphans binary charset containers mtl parsec 198252 scientific semigroups text transformers unordered-containers ··· 198335 license = lib.licenses.bsd3; 198336 }) {}; 198337 198338 + "parsnip" = callPackage 198339 + ({ mkDerivation, attoparsec, base, bytestring, containers 198340 + , data-default, ghc-prim, primitive 198341 + }: 198342 + mkDerivation { 198343 + pname = "parsnip"; 198344 + version = "0"; 198345 + sha256 = "0xkgrpjnc4g2yhjxaa1n7rpzdwav95mkv0jp0gwx7xmp3pzwahgi"; 198346 + libraryHaskellDepends = [ 198347 + attoparsec base bytestring containers data-default ghc-prim 198348 + primitive 198349 + ]; 198350 + description = "A fast, minimal parser"; 198351 + license = "(BSD-2-Clause OR Apache-2.0)"; 198352 + hydraPlatforms = lib.platforms.none; 198353 + broken = true; 198354 + }) {}; 198355 + 198356 "partage" = callPackage 198357 ({ mkDerivation, base, containers, data-lens-light, data-partition 198358 , dawg-ord, HUnit, mmorph, mtl, pipes, PSQueue, random, tasty ··· 199235 license = lib.licenses.gpl3Plus; 199236 }) {}; 199237 199238 + "pava_0_1_1_1" = callPackage 199239 + ({ mkDerivation, base, criterion, hspec, mwc-random, vector }: 199240 + mkDerivation { 199241 + pname = "pava"; 199242 + version = "0.1.1.1"; 199243 + sha256 = "11jlhc1cqsn0r82rbwnf323s0w1ir3vf4ija0r39j58y19blc8zv"; 199244 + libraryHaskellDepends = [ base vector ]; 199245 + testHaskellDepends = [ base hspec vector ]; 199246 + benchmarkHaskellDepends = [ base criterion mwc-random vector ]; 199247 + description = "Greatest convex majorants and least concave minorants"; 199248 + license = lib.licenses.gpl3Plus; 199249 + hydraPlatforms = lib.platforms.none; 199250 + }) {}; 199251 + 199252 "paymill" = callPackage 199253 ({ mkDerivation, base, hspec }: 199254 mkDerivation { ··· 199645 license = lib.licenses.bsd3; 199646 }) {}; 199647 199648 + "pcre-utils_0_1_8_2" = callPackage 199649 + ({ mkDerivation, array, attoparsec, base, bytestring, HUnit, mtl 199650 + , regex-pcre-builtin, vector 199651 + }: 199652 + mkDerivation { 199653 + pname = "pcre-utils"; 199654 + version = "0.1.8.2"; 199655 + sha256 = "1plawzvgxww9m0vjawmkf59bfxzxf0l93g7hfwyqjq4hcc8pwq2l"; 199656 + libraryHaskellDepends = [ 199657 + array attoparsec base bytestring mtl regex-pcre-builtin vector 199658 + ]; 199659 + testHaskellDepends = [ base bytestring HUnit regex-pcre-builtin ]; 199660 + description = "Perl-like substitute and split for PCRE regexps"; 199661 + license = lib.licenses.bsd3; 199662 + hydraPlatforms = lib.platforms.none; 199663 + }) {}; 199664 + 199665 "pcre2" = callPackage 199666 ({ mkDerivation, base, containers, criterion, hspec 199667 , microlens-platform, mtl, pcre-light, regex-pcre-builtin ··· 200903 }: 200904 mkDerivation { 200905 pname = "persistent"; 200906 + version = "2.11.0.4"; 200907 + sha256 = "1n5wkhfvyqq6p57nkf9yx73kap6spyzam5w12ni8pmd1m6pk77xn"; 200908 libraryHaskellDepends = [ 200909 aeson attoparsec base base64-bytestring blaze-html bytestring 200910 conduit containers fast-logger http-api-data monad-logger mtl ··· 200921 maintainers = with lib.maintainers; [ psibi ]; 200922 }) {}; 200923 200924 + "persistent_2_12_0_2" = callPackage 200925 ({ mkDerivation, aeson, attoparsec, base, base64-bytestring 200926 + , blaze-html, bytestring, conduit, containers, criterion, deepseq 200927 + , deepseq-generics, fast-logger, file-embed, hspec, http-api-data 200928 + , monad-logger, mtl, path-pieces, QuickCheck, resource-pool 200929 + , resourcet, scientific, shakespeare, silently, template-haskell 200930 + , text, th-lift-instances, time, transformers, unliftio 200931 + , unliftio-core, unordered-containers, vector 200932 }: 200933 mkDerivation { 200934 pname = "persistent"; 200935 + version = "2.12.0.2"; 200936 + sha256 = "0wnrpwcdfrwm6kmvq7z9b65q3qid6f1gqdk46j8m1vh3x2qchlcv"; 200937 libraryHaskellDepends = [ 200938 aeson attoparsec base base64-bytestring blaze-html bytestring 200939 conduit containers fast-logger http-api-data monad-logger mtl 200940 + path-pieces resource-pool resourcet scientific silently 200941 + template-haskell text th-lift-instances time transformers unliftio 200942 + unliftio-core unordered-containers vector 200943 ]; 200944 testHaskellDepends = [ 200945 aeson attoparsec base base64-bytestring blaze-html bytestring 200946 + conduit containers fast-logger hspec http-api-data monad-logger mtl 200947 + path-pieces QuickCheck resource-pool resourcet scientific 200948 + shakespeare silently template-haskell text th-lift-instances time 200949 + transformers unliftio unliftio-core unordered-containers vector 200950 + ]; 200951 + benchmarkHaskellDepends = [ 200952 + base criterion deepseq deepseq-generics file-embed template-haskell 200953 + text 200954 ]; 200955 description = "Type-safe, multi-backend data serialization"; 200956 license = lib.licenses.mit; ··· 201159 "persistent-mongoDB" = callPackage 201160 ({ mkDerivation, aeson, base, blaze-html, bson, bytestring, cereal 201161 , conduit, containers, hspec, http-api-data, HUnit, mongoDB 201162 + , network, path-pieces, persistent, persistent-qq, persistent-test 201163 + , process, QuickCheck, resource-pool, resourcet, template-haskell 201164 + , text, time, transformers, unliftio-core 201165 }: 201166 mkDerivation { 201167 pname = "persistent-mongoDB"; 201168 + version = "2.12.0.0"; 201169 + sha256 = "1s49d4c4kiqcblkap96wcrp3nc0179vpzbqp4fdibljq9ylzxmzg"; 201170 libraryHaskellDepends = [ 201171 aeson base bson bytestring cereal conduit http-api-data mongoDB 201172 network path-pieces persistent resource-pool resourcet text time ··· 201174 ]; 201175 testHaskellDepends = [ 201176 base blaze-html bytestring containers hspec HUnit mongoDB 201177 + persistent persistent-qq persistent-test process QuickCheck 201178 + template-haskell text time transformers unliftio-core 201179 ]; 201180 description = "Backend for the persistent library using mongoDB"; 201181 license = lib.licenses.mit; ··· 201187 ({ mkDerivation, base, bytestring, conduit, containers 201188 , monad-logger, mtl, persistent, persistent-postgresql 201189 , persistent-sqlite, persistent-template, resource-pool, resourcet 201190 , tasty, tasty-golden, tasty-hunit, text, transformers, unliftio 201191 , unliftio-core, unliftio-pool 201192 }: ··· 201206 ]; 201207 description = "Monad transformer for the persistent API"; 201208 license = lib.licenses.bsd3; 201209 }) {}; 201210 201211 "persistent-mysql" = callPackage ··· 201236 license = lib.licenses.mit; 201237 }) {}; 201238 201239 + "persistent-mysql_2_12_0_0" = callPackage 201240 + ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit 201241 + , containers, fast-logger, hspec, HUnit, monad-logger, mysql 201242 + , mysql-simple, persistent, persistent-qq, persistent-test 201243 + , QuickCheck, quickcheck-instances, resource-pool, resourcet, text 201244 + , time, transformers, unliftio-core 201245 + }: 201246 + mkDerivation { 201247 + pname = "persistent-mysql"; 201248 + version = "2.12.0.0"; 201249 + sha256 = "0bvwlkch8pr94dv1fib85vdsdrjpdla1rm4lslrmpg0dysgni9p3"; 201250 + libraryHaskellDepends = [ 201251 + aeson base blaze-builder bytestring conduit containers monad-logger 201252 + mysql mysql-simple persistent resource-pool resourcet text 201253 + transformers unliftio-core 201254 + ]; 201255 + testHaskellDepends = [ 201256 + base bytestring containers fast-logger hspec HUnit monad-logger 201257 + mysql persistent persistent-qq persistent-test QuickCheck 201258 + quickcheck-instances resourcet text time transformers unliftio-core 201259 + ]; 201260 + description = "Backend for the persistent library using MySQL database server"; 201261 + license = lib.licenses.mit; 201262 + hydraPlatforms = lib.platforms.none; 201263 + }) {}; 201264 + 201265 "persistent-mysql-haskell" = callPackage 201266 ({ mkDerivation, aeson, base, bytestring, conduit, containers 201267 , fast-logger, hspec, HUnit, io-streams, monad-logger ··· 201381 license = lib.licenses.mit; 201382 }) {}; 201383 201384 + "persistent-postgresql_2_12_0_0" = callPackage 201385 + ({ mkDerivation, aeson, attoparsec, base, blaze-builder, bytestring 201386 + , conduit, containers, fast-logger, hspec, hspec-expectations 201387 + , HUnit, monad-logger, mtl, persistent, persistent-qq 201388 + , persistent-test, postgresql-libpq, postgresql-simple, QuickCheck 201389 + , quickcheck-instances, resource-pool, resourcet 201390 + , string-conversions, text, time, transformers, unliftio 201391 + , unliftio-core, unordered-containers, vector 201392 + }: 201393 + mkDerivation { 201394 + pname = "persistent-postgresql"; 201395 + version = "2.12.0.0"; 201396 + sha256 = "1mc9d4qdx0w49g6sgaq3ld30xkfwz76w6xpq79hhrds7hxalxqrc"; 201397 + isLibrary = true; 201398 + isExecutable = true; 201399 + libraryHaskellDepends = [ 201400 + aeson attoparsec base blaze-builder bytestring conduit containers 201401 + monad-logger mtl persistent postgresql-libpq postgresql-simple 201402 + resource-pool resourcet string-conversions text time transformers 201403 + unliftio-core 201404 + ]; 201405 + testHaskellDepends = [ 201406 + aeson base bytestring containers fast-logger hspec 201407 + hspec-expectations HUnit monad-logger persistent persistent-qq 201408 + persistent-test QuickCheck quickcheck-instances resourcet text time 201409 + transformers unliftio unliftio-core unordered-containers vector 201410 + ]; 201411 + description = "Backend for the persistent library using postgresql"; 201412 + license = lib.licenses.mit; 201413 + hydraPlatforms = lib.platforms.none; 201414 + }) {}; 201415 + 201416 "persistent-protobuf" = callPackage 201417 ({ mkDerivation, base, bytestring, persistent, protocol-buffers 201418 , protocol-buffers-descriptor, template-haskell, text ··· 201453 license = lib.licenses.mit; 201454 }) {}; 201455 201456 + "persistent-qq_2_12_0_0" = callPackage 201457 + ({ mkDerivation, aeson, base, bytestring, fast-logger 201458 + , haskell-src-meta, hspec, HUnit, monad-logger, mtl, persistent 201459 + , persistent-sqlite, resourcet, template-haskell, text, unliftio 201460 + }: 201461 + mkDerivation { 201462 + pname = "persistent-qq"; 201463 + version = "2.12.0.0"; 201464 + sha256 = "1mw565rwnzdsw0vc0gs31z4l4pw8qxb70l898invj7dfnq5vj62f"; 201465 + libraryHaskellDepends = [ 201466 + base haskell-src-meta mtl persistent template-haskell text 201467 + ]; 201468 + testHaskellDepends = [ 201469 + aeson base bytestring fast-logger haskell-src-meta hspec HUnit 201470 + monad-logger mtl persistent persistent-sqlite resourcet 201471 + template-haskell text unliftio 201472 + ]; 201473 + description = "Provides a quasi-quoter for raw SQL for persistent"; 201474 + license = lib.licenses.mit; 201475 + hydraPlatforms = lib.platforms.none; 201476 + }) {}; 201477 + 201478 "persistent-ratelimit" = callPackage 201479 ({ mkDerivation, base, time, yesod }: 201480 mkDerivation { ··· 201490 201491 "persistent-redis" = callPackage 201492 ({ mkDerivation, aeson, base, binary, bytestring, hedis 201493 + , http-api-data, mtl, path-pieces, persistent, scientific 201494 + , template-haskell, text, time, transformers, utf8-string 201495 }: 201496 mkDerivation { 201497 pname = "persistent-redis"; 201498 + version = "2.12.0.0"; 201499 + sha256 = "0zibmgvlpkx4knh23jnz2vam1la6w57x2cibrdn17h0zd3s872p5"; 201500 libraryHaskellDepends = [ 201501 aeson base binary bytestring hedis http-api-data mtl path-pieces 201502 persistent scientific text time transformers utf8-string 201503 ]; 201504 testHaskellDepends = [ 201505 aeson base binary bytestring hedis http-api-data mtl path-pieces 201506 + persistent scientific template-haskell text time transformers 201507 + utf8-string 201508 ]; 201509 description = "Backend for persistent library using Redis"; 201510 license = lib.licenses.bsd3; 201511 + hydraPlatforms = lib.platforms.none; 201512 + broken = true; 201513 }) {}; 201514 201515 "persistent-refs" = callPackage ··· 201602 maintainers = with lib.maintainers; [ psibi ]; 201603 }) {inherit (pkgs) sqlite;}; 201604 201605 + "persistent-sqlite_2_12_0_0" = callPackage 201606 + ({ mkDerivation, aeson, base, bytestring, conduit, containers 201607 + , exceptions, fast-logger, hspec, HUnit, microlens, microlens-th 201608 + , monad-logger, mtl, persistent, persistent-test, QuickCheck 201609 + , resource-pool, resourcet, sqlite, system-fileio, system-filepath 201610 + , temporary, text, time, transformers, unliftio-core 201611 + , unordered-containers 201612 + }: 201613 + mkDerivation { 201614 + pname = "persistent-sqlite"; 201615 + version = "2.12.0.0"; 201616 + sha256 = "0qwh2zrg1dqrv7i752jkqgqfxwjbdvkxmdgnzhcfzhgn6bq1018m"; 201617 + configureFlags = [ "-fsystemlib" ]; 201618 + isLibrary = true; 201619 + isExecutable = true; 201620 + libraryHaskellDepends = [ 201621 + aeson base bytestring conduit containers microlens-th monad-logger 201622 + mtl persistent resource-pool resourcet text time transformers 201623 + unliftio-core unordered-containers 201624 + ]; 201625 + librarySystemDepends = [ sqlite ]; 201626 + testHaskellDepends = [ 201627 + base bytestring conduit containers exceptions fast-logger hspec 201628 + HUnit microlens monad-logger mtl persistent persistent-test 201629 + QuickCheck resourcet system-fileio system-filepath temporary text 201630 + time transformers unliftio-core 201631 + ]; 201632 + description = "Backend for the persistent library using sqlite3"; 201633 + license = lib.licenses.mit; 201634 + hydraPlatforms = lib.platforms.none; 201635 + maintainers = with lib.maintainers; [ psibi ]; 201636 + }) {inherit (pkgs) sqlite;}; 201637 + 201638 "persistent-template" = callPackage 201639 ({ mkDerivation, aeson, base, bytestring, containers, criterion 201640 , deepseq, deepseq-generics, file-embed, hspec, http-api-data ··· 201646 pname = "persistent-template"; 201647 version = "2.9.1.0"; 201648 sha256 = "19ilgz8r6p5wy111rb4v0d6cnrj8jfiv2pnzdynpxd9ay66vgbca"; 201649 + revision = "2"; 201650 + editedCabalFile = "1lyrnh2lskkbvpjhbjiyh2ibndldsr8zgaiws7n37pa3vnmfx0qw"; 201651 libraryHaskellDepends = [ 201652 aeson base bytestring containers http-api-data monad-control 201653 monad-logger path-pieces persistent template-haskell text ··· 201665 maintainers = with lib.maintainers; [ psibi ]; 201666 }) {}; 201667 201668 + "persistent-template_2_12_0_0" = callPackage 201669 + ({ mkDerivation, base }: 201670 + mkDerivation { 201671 + pname = "persistent-template"; 201672 + version = "2.12.0.0"; 201673 + sha256 = "0c9cs27j43azimj74s2m2cdks87682ibpy1xbyzvygipgmb8nj6w"; 201674 + libraryHaskellDepends = [ base ]; 201675 + doHaddock = false; 201676 + description = "Type-safe, non-relational, multi-backend persistence"; 201677 + license = lib.licenses.mit; 201678 + hydraPlatforms = lib.platforms.none; 201679 + maintainers = with lib.maintainers; [ psibi ]; 201680 + }) {}; 201681 + 201682 "persistent-template-classy" = callPackage 201683 ({ mkDerivation, base, lens, persistent, persistent-sqlite 201684 , persistent-template, template-haskell, text ··· 201726 broken = true; 201727 }) {}; 201728 201729 + "persistent-test_2_12_0_0" = callPackage 201730 + ({ mkDerivation, aeson, base, blaze-html, bytestring, conduit 201731 + , containers, exceptions, hspec, hspec-expectations, HUnit 201732 + , monad-control, monad-logger, mtl, path-pieces, persistent 201733 + , QuickCheck, quickcheck-instances, random, resourcet, text, time 201734 + , transformers, transformers-base, unliftio, unliftio-core 201735 + , unordered-containers 201736 + }: 201737 + mkDerivation { 201738 + pname = "persistent-test"; 201739 + version = "2.12.0.0"; 201740 + sha256 = "0vn6f8wmax68qg27ifw2sfr3d0zk12p6gaax5xshwmb5ypamrc50"; 201741 + libraryHaskellDepends = [ 201742 + aeson base blaze-html bytestring conduit containers exceptions 201743 + hspec hspec-expectations HUnit monad-control monad-logger mtl 201744 + path-pieces persistent QuickCheck quickcheck-instances random 201745 + resourcet text time transformers transformers-base unliftio 201746 + unliftio-core unordered-containers 201747 + ]; 201748 + description = "Tests for Persistent"; 201749 + license = lib.licenses.mit; 201750 + hydraPlatforms = lib.platforms.none; 201751 + broken = true; 201752 + }) {}; 201753 + 201754 "persistent-typed-db" = callPackage 201755 ({ mkDerivation, aeson, base, bytestring, conduit, esqueleto, hspec 201756 , http-api-data, monad-logger, path-pieces, persistent ··· 201775 license = lib.licenses.bsd3; 201776 }) {}; 201777 201778 + "persistent-typed-db_0_1_0_3" = callPackage 201779 + ({ mkDerivation, aeson, base, bytestring, conduit, esqueleto, hspec 201780 + , http-api-data, monad-logger, path-pieces, persistent 201781 + , persistent-template, resource-pool, resourcet, template-haskell 201782 + , text, transformers 201783 + }: 201784 + mkDerivation { 201785 + pname = "persistent-typed-db"; 201786 + version = "0.1.0.3"; 201787 + sha256 = "15x4qfk4bwafqa495y8dsywa5mrcfnmqm7pyn419p20yngnyhzn8"; 201788 + libraryHaskellDepends = [ 201789 + aeson base bytestring conduit http-api-data monad-logger 201790 + path-pieces persistent resource-pool resourcet template-haskell 201791 + text transformers 201792 + ]; 201793 + testHaskellDepends = [ 201794 + aeson base bytestring conduit esqueleto hspec http-api-data 201795 + monad-logger path-pieces persistent persistent-template 201796 + resource-pool resourcet template-haskell text transformers 201797 + ]; 201798 + description = "Type safe access to multiple database schemata"; 201799 + license = lib.licenses.bsd3; 201800 + hydraPlatforms = lib.platforms.none; 201801 + }) {}; 201802 + 201803 "persistent-vector" = callPackage 201804 ({ mkDerivation, base, containers, criterion, deepseq, QuickCheck 201805 , test-framework, test-framework-quickcheck2, transformers ··· 203319 }: 203320 mkDerivation { 203321 pname = "pinboard-notes-backup"; 203322 + version = "1.0.5.3"; 203323 + sha256 = "03a05xl9jllqihbicnas5awhm6sz1ly3wp8vqdq06jvvr5n111j4"; 203324 isLibrary = false; 203325 isExecutable = true; 203326 executableHaskellDepends = [ ··· 204141 pname = "pipes-group"; 204142 version = "1.0.12"; 204143 sha256 = "1issfj3syi6lfbcdn3bhlbnlh86s92ldsb04c4ac69xipsgyhwqk"; 204144 + revision = "4"; 204145 + editedCabalFile = "16y13pmwwfj0cgwdjf9nglxgfxv3fkznjp1bf344jfvjm14vwg43"; 204146 libraryHaskellDepends = [ 204147 base free pipes pipes-parse transformers 204148 ]; ··· 204196 libraryHaskellDepends = [ base containers heaps pipes ]; 204197 description = "Interleave and merge streams of elements"; 204198 license = lib.licenses.bsd3; 204199 + hydraPlatforms = lib.platforms.none; 204200 + broken = true; 204201 }) {}; 204202 204203 "pipes-io" = callPackage ··· 204476 broken = true; 204477 }) {}; 204478 204479 + "pipes-pulse-simple" = callPackage 204480 + ({ mkDerivation, base, bytestring, pipes, pipes-safe, pulse-simple 204481 + }: 204482 + mkDerivation { 204483 + pname = "pipes-pulse-simple"; 204484 + version = "0.1.0.0"; 204485 + sha256 = "003arf5cdbk2iwhqjbd8zaw12i7fd01h218r953cdxfrc902gy0q"; 204486 + libraryHaskellDepends = [ 204487 + base bytestring pipes pipes-safe pulse-simple 204488 + ]; 204489 + description = "Pipes for pulse-simple audio"; 204490 + license = lib.licenses.asl20; 204491 + }) {}; 204492 + 204493 "pipes-random" = callPackage 204494 ({ mkDerivation, base, mwc-random, pipes, vector }: 204495 mkDerivation { ··· 204821 ({ mkDerivation, base, JuicyPixels, lens, optparse-applicative }: 204822 mkDerivation { 204823 pname = "pixel-printer"; 204824 + version = "0.1.2"; 204825 + sha256 = "1pnwpql4myy2ax607wxxbrfl5jg8yz2dx8nivaxa23k79wshwbfh"; 204826 isLibrary = true; 204827 isExecutable = true; 204828 libraryHaskellDepends = [ base JuicyPixels lens ]; ··· 204905 ]; 204906 description = "Pixiv API binding based on servant-client"; 204907 license = lib.licenses.bsd3; 204908 + hydraPlatforms = lib.platforms.none; 204909 + broken = true; 204910 }) {}; 204911 204912 "piyo" = callPackage ··· 205028 license = "unknown"; 205029 hydraPlatforms = lib.platforms.none; 205030 }) {}; 205031 + 205032 + "place-cursor-at" = callPackage 205033 + ({ mkDerivation, base, base-unicode-symbols, libXinerama, X11 }: 205034 + mkDerivation { 205035 + pname = "place-cursor-at"; 205036 + version = "1.0.1"; 205037 + sha256 = "0mgxyyi8zdhiarp75jshfsq5rrk6b2a7630bwvwyw06richykk9z"; 205038 + isLibrary = false; 205039 + isExecutable = true; 205040 + executableHaskellDepends = [ base base-unicode-symbols X11 ]; 205041 + executableSystemDepends = [ libXinerama ]; 205042 + description = "A utility for X11 that moves the mouse cursor using the keyboard"; 205043 + license = lib.licenses.gpl3Only; 205044 + }) {inherit (pkgs.xorg) libXinerama;}; 205045 205046 "placeholders" = callPackage 205047 ({ mkDerivation, base, template-haskell }: ··· 206287 license = lib.licenses.bsd3; 206288 }) {}; 206289 206290 + "poll_0_0_0_2" = callPackage 206291 + ({ mkDerivation, base, enumset, utility-ht }: 206292 + mkDerivation { 206293 + pname = "poll"; 206294 + version = "0.0.0.2"; 206295 + sha256 = "1bllh4yr96p7k44bc10zyhdx2zdh3brl0im3gnn5a1m6irsx6j42"; 206296 + libraryHaskellDepends = [ base enumset utility-ht ]; 206297 + description = "Bindings to poll.h"; 206298 + license = lib.licenses.bsd3; 206299 + hydraPlatforms = lib.platforms.none; 206300 + }) {}; 206301 + 206302 "poly" = callPackage 206303 ({ mkDerivation, base, deepseq, doctest, finite-typelits, gauge 206304 , mod, primitive, QuickCheck, quickcheck-classes, semirings, tasty ··· 206507 }: 206508 mkDerivation { 206509 pname = "polysemy"; 206510 + version = "1.5.0.0"; 206511 + sha256 = "1d8qllllnwwjrjdaadgk4h07d7n2whw6hl8q3ikd474kfdagbiwz"; 206512 setupHaskellDepends = [ base Cabal cabal-doctest ]; 206513 libraryHaskellDepends = [ 206514 async base containers first-class-families mtl QuickCheck stm syb ··· 206561 }: 206562 mkDerivation { 206563 pname = "polysemy-chronos"; 206564 + version = "0.1.2.0"; 206565 + sha256 = "1xv5nlr89jb0yzqzfb3dj2phi3ywvrazjilzd491892z3qbwvz5d"; 206566 libraryHaskellDepends = [ 206567 aeson base chronos containers polysemy polysemy-plugin 206568 polysemy-time text ··· 206572 polysemy-test polysemy-time tasty tasty-hedgehog text 206573 ]; 206574 description = "Polysemy effect for chronos"; 206575 + license = "BSD-2-Clause-Patent"; 206576 + hydraPlatforms = lib.platforms.none; 206577 + broken = true; 206578 + }) {}; 206579 + 206580 + "polysemy-conc" = callPackage 206581 + ({ mkDerivation, async, base, containers, hedgehog, polysemy 206582 + , polysemy-test, polysemy-time, relude, stm, stm-chans 206583 + , string-interpolate, tasty, tasty-hedgehog, template-haskell, text 206584 + , time, unix 206585 + }: 206586 + mkDerivation { 206587 + pname = "polysemy-conc"; 206588 + version = "0.1.0.1"; 206589 + sha256 = "1p8zhnf28zdmmfrmxixqvih5waididvm8h0vh5wvmjglhf5k35x5"; 206590 + libraryHaskellDepends = [ 206591 + async base containers polysemy polysemy-time relude stm stm-chans 206592 + string-interpolate template-haskell text time unix 206593 + ]; 206594 + testHaskellDepends = [ 206595 + async base containers hedgehog polysemy polysemy-test polysemy-time 206596 + relude stm stm-chans string-interpolate tasty tasty-hedgehog 206597 + template-haskell text time unix 206598 + ]; 206599 + description = "Polysemy Effects for Concurrency"; 206600 license = "BSD-2-Clause-Patent"; 206601 hydraPlatforms = lib.platforms.none; 206602 broken = true; ··· 206652 , case-insensitive, co-log-core, co-log-polysemy, composition 206653 , containers, data-default, either, hedgehog, http-client 206654 , http-client-tls, http-types, lens, network, polysemy 206655 + , polysemy-log, polysemy-plugin, relude, servant, servant-client 206656 + , servant-server, string-interpolate, tasty, tasty-hedgehog 206657 + , template-haskell, text, time, warp 206658 }: 206659 mkDerivation { 206660 pname = "polysemy-http"; 206661 + version = "0.4.0.1"; 206662 + sha256 = "0yhv295kjnrk9d2i59y9x8fgaxnsiwgmbk6x7calysqkw195sa44"; 206663 libraryHaskellDepends = [ 206664 aeson ansi-terminal base bytestring case-insensitive co-log-core 206665 co-log-polysemy composition containers data-default either 206666 + http-client http-client-tls http-types lens polysemy polysemy-log 206667 polysemy-plugin relude string-interpolate template-haskell text 206668 time 206669 ]; ··· 206671 aeson ansi-terminal base bytestring case-insensitive co-log-core 206672 co-log-polysemy composition containers data-default either hedgehog 206673 http-client http-client-tls http-types lens network polysemy 206674 + polysemy-log polysemy-plugin relude servant servant-client 206675 + servant-server string-interpolate tasty tasty-hedgehog 206676 + template-haskell text time warp 206677 ]; 206678 description = "Polysemy effect for http-client"; 206679 license = "BSD-2-Clause-Patent"; ··· 206697 license = lib.licenses.mit; 206698 }) {}; 206699 206700 + "polysemy-log" = callPackage 206701 + ({ mkDerivation, ansi-terminal, async, base, hedgehog, polysemy 206702 + , polysemy-conc, polysemy-test, polysemy-time, relude, stm 206703 + , stm-chans, string-interpolate, tasty, tasty-hedgehog 206704 + , template-haskell, text, time 206705 + }: 206706 + mkDerivation { 206707 + pname = "polysemy-log"; 206708 + version = "0.2.0.1"; 206709 + sha256 = "1zidk2i6mvd7i4dr83rdjhnw9v4603gig8qr3d5b7r6q4bvvm0va"; 206710 + libraryHaskellDepends = [ 206711 + ansi-terminal async base polysemy polysemy-conc polysemy-time 206712 + relude stm stm-chans string-interpolate template-haskell text time 206713 + ]; 206714 + testHaskellDepends = [ 206715 + ansi-terminal async base hedgehog polysemy polysemy-conc 206716 + polysemy-test polysemy-time relude stm stm-chans string-interpolate 206717 + tasty tasty-hedgehog template-haskell text time 206718 + ]; 206719 + description = "Polysemy effects for logging"; 206720 + license = "BSD-2-Clause-Patent"; 206721 + hydraPlatforms = lib.platforms.none; 206722 + broken = true; 206723 + }) {}; 206724 + 206725 + "polysemy-log-co" = callPackage 206726 + ({ mkDerivation, base, co-log, co-log-core, co-log-polysemy 206727 + , hedgehog, polysemy, polysemy-conc, polysemy-log, polysemy-test 206728 + , polysemy-time, relude, string-interpolate, tasty, tasty-hedgehog 206729 + , text, time 206730 + }: 206731 + mkDerivation { 206732 + pname = "polysemy-log-co"; 206733 + version = "0.2.0.1"; 206734 + sha256 = "0jqyn96n7mdffyhbq7fxj8rl8prpcfmjl4wdhw4bax404bbm9v2n"; 206735 + libraryHaskellDepends = [ 206736 + base co-log co-log-core co-log-polysemy polysemy polysemy-conc 206737 + polysemy-log polysemy-time relude string-interpolate text time 206738 + ]; 206739 + testHaskellDepends = [ 206740 + base co-log co-log-core co-log-polysemy hedgehog polysemy 206741 + polysemy-conc polysemy-log polysemy-test polysemy-time relude 206742 + string-interpolate tasty tasty-hedgehog text time 206743 + ]; 206744 + description = "polysemy-log interpreter for co-log"; 206745 + license = "BSD-2-Clause-Patent"; 206746 + hydraPlatforms = lib.platforms.none; 206747 + broken = true; 206748 + }) {}; 206749 + 206750 + "polysemy-log-di" = callPackage 206751 + ({ mkDerivation, base, di-polysemy, hedgehog, polysemy 206752 + , polysemy-conc, polysemy-log, polysemy-test, polysemy-time, relude 206753 + , string-interpolate, tasty, tasty-hedgehog, text, time 206754 + }: 206755 + mkDerivation { 206756 + pname = "polysemy-log-di"; 206757 + version = "0.2.0.1"; 206758 + sha256 = "0n486xv9wayapk2bviik7mmqsrfzzdiq6rr7r1asjqygzksn48lv"; 206759 + libraryHaskellDepends = [ 206760 + base di-polysemy polysemy polysemy-conc polysemy-log polysemy-time 206761 + relude string-interpolate text time 206762 + ]; 206763 + testHaskellDepends = [ 206764 + base di-polysemy hedgehog polysemy polysemy-conc polysemy-log 206765 + polysemy-test polysemy-time relude string-interpolate tasty 206766 + tasty-hedgehog text time 206767 + ]; 206768 + description = "polysemy-log interpreter for di"; 206769 + license = "BSD-2-Clause-Patent"; 206770 + hydraPlatforms = lib.platforms.none; 206771 + broken = true; 206772 + }) {}; 206773 + 206774 "polysemy-methodology" = callPackage 206775 ({ mkDerivation, base, co-log-polysemy, polysemy, polysemy-plugin 206776 , polysemy-zoo ··· 206859 }: 206860 mkDerivation { 206861 pname = "polysemy-plugin"; 206862 + version = "0.3.0.0"; 206863 + sha256 = "0pcy476nndcvszkl57d5sd2m64zvjzvvxz4ldg2bdg6mdi4apl23"; 206864 setupHaskellDepends = [ base Cabal cabal-doctest ]; 206865 libraryHaskellDepends = [ 206866 base containers ghc ghc-tcplugins-extra polysemy syb transformers ··· 206902 }: 206903 mkDerivation { 206904 pname = "polysemy-test"; 206905 + version = "0.3.1.0"; 206906 + sha256 = "0a55kdfcjngdgl2is9qnhm7akrrjy03qsiihxgczabflcmqyazcb"; 206907 libraryHaskellDepends = [ 206908 base containers either hedgehog path path-io polysemy 206909 polysemy-plugin relude string-interpolate tasty tasty-hedgehog ··· 206928 }: 206929 mkDerivation { 206930 pname = "polysemy-time"; 206931 + version = "0.1.2.0"; 206932 + sha256 = "01z8y3jn63s8rkx27vj09hj6rl0ba4yjcc52yj7cvsvyi64s6ya3"; 206933 libraryHaskellDepends = [ 206934 aeson base composition containers data-default either polysemy 206935 relude string-interpolate template-haskell text time torsor ··· 207213 207214 "pontarius-xmpp" = callPackage 207215 ({ mkDerivation, async, attoparsec, base, base64-bytestring, binary 207216 + , bytestring, Cabal, conduit, containers, criterion, crypto-api 207217 + , crypto-random, cryptohash, cryptohash-cryptoapi, data-default 207218 + , dns, exceptions, generic-arbitrary, hslogger, hspec 207219 + , hspec-expectations, iproute, lens, lens-family, lifted-base, mtl 207220 + , network, profunctors, pureMD5, QuickCheck, quickcheck-instances 207221 + , random, ranges, resourcet, smallcheck, split, stm, stringprep 207222 + , tasty, tasty-hspec, tasty-hunit, tasty-quickcheck, tasty-th 207223 + , template-haskell, text, tls, transformers, unbounded-delays, void 207224 + , x509-system, xml-conduit, xml-picklers, xml-types 207225 }: 207226 mkDerivation { 207227 pname = "pontarius-xmpp"; 207228 + version = "0.5.6.4"; 207229 + sha256 = "1izcyk30r527p4zx8yyi42r1xsl01gc5jpdrpkz1lksnjc6vzxq3"; 207230 libraryHaskellDepends = [ 207231 attoparsec base base64-bytestring binary bytestring conduit 207232 containers crypto-api crypto-random cryptohash cryptohash-cryptoapi 207233 + data-default dns exceptions hslogger iproute lens lens-family 207234 lifted-base mtl network profunctors pureMD5 random resourcet split 207235 stm stringprep template-haskell text tls transformers 207236 unbounded-delays void x509-system xml-conduit xml-picklers 207237 xml-types 207238 ]; 207239 testHaskellDepends = [ 207240 + async attoparsec base base64-bytestring binary bytestring Cabal 207241 + conduit containers crypto-api crypto-random cryptohash 207242 + cryptohash-cryptoapi data-default dns exceptions generic-arbitrary 207243 + hslogger hspec hspec-expectations iproute lens lens-family 207244 + lifted-base mtl network profunctors pureMD5 QuickCheck 207245 + quickcheck-instances random ranges resourcet smallcheck split stm 207246 + stringprep tasty tasty-hspec tasty-hunit tasty-quickcheck tasty-th 207247 + template-haskell text tls transformers unbounded-delays void 207248 + x509-system xml-conduit xml-picklers xml-types 207249 ]; 207250 + benchmarkHaskellDepends = [ 207251 + attoparsec base base64-bytestring binary bytestring conduit 207252 + containers criterion crypto-api crypto-random cryptohash 207253 + cryptohash-cryptoapi data-default dns exceptions hslogger iproute 207254 + lens lens-family lifted-base mtl network profunctors pureMD5 random 207255 + resourcet split stm stringprep template-haskell text tls 207256 + transformers unbounded-delays void x509-system xml-conduit 207257 + xml-picklers xml-types 207258 + ]; 207259 description = "An XMPP client library"; 207260 license = lib.licenses.bsd3; 207261 hydraPlatforms = lib.platforms.none; ··· 207268 }: 207269 mkDerivation { 207270 pname = "pontarius-xmpp-extras"; 207271 + version = "0.1.0.7"; 207272 + sha256 = "0kcb0fvbs340cpqzh9vxi7vkisgkv2afnvr5fjq647lwisncbxgz"; 207273 libraryHaskellDepends = [ 207274 base data-default pontarius-xmpp text time xml-types 207275 ]; ··· 208104 license = lib.licenses.mit; 208105 }) {}; 208106 208107 + "postgresql-binary_0_12_4" = callPackage 208108 + ({ mkDerivation, aeson, base, binary-parser, bytestring 208109 + , bytestring-strict-builder, containers, conversion 208110 + , conversion-bytestring, conversion-text, criterion, json-ast 208111 + , network-ip, postgresql-libpq, QuickCheck, quickcheck-instances 208112 + , rerebase, scientific, tasty, tasty-hunit, tasty-quickcheck, text 208113 + , time, transformers, unordered-containers, uuid, vector 208114 + }: 208115 + mkDerivation { 208116 + pname = "postgresql-binary"; 208117 + version = "0.12.4"; 208118 + sha256 = "1im0wfssg8f31rdis86qxhz0cqra1bdgiyxgsbqxf78qi3w05f4c"; 208119 + libraryHaskellDepends = [ 208120 + aeson base binary-parser bytestring bytestring-strict-builder 208121 + containers network-ip scientific text time transformers 208122 + unordered-containers uuid vector 208123 + ]; 208124 + testHaskellDepends = [ 208125 + aeson conversion conversion-bytestring conversion-text json-ast 208126 + network-ip postgresql-libpq QuickCheck quickcheck-instances 208127 + rerebase tasty tasty-hunit tasty-quickcheck 208128 + ]; 208129 + benchmarkHaskellDepends = [ criterion rerebase ]; 208130 + description = "Encoders and decoders for the PostgreSQL's binary format"; 208131 + license = lib.licenses.mit; 208132 + hydraPlatforms = lib.platforms.none; 208133 + }) {}; 208134 + 208135 "postgresql-common" = callPackage 208136 ({ mkDerivation, attoparsec, base, bytestring, postgresql-simple }: 208137 mkDerivation { ··· 208335 pname = "postgresql-placeholder-converter"; 208336 version = "0.2.0.0"; 208337 sha256 = "0jpsa6c2m0m8d9abki585krf9pvj5p4rsayg1qs963r4vg1m8p23"; 208338 + revision = "1"; 208339 + editedCabalFile = "008gnpj16xnbmrzqjm9mqyycdvmzlbnsrsz3kfa42sf3fnq1g1f6"; 208340 libraryHaskellDepends = [ 208341 attoparsec base bytestring either-result mtl utf8-string 208342 ]; ··· 208350 ({ mkDerivation, attoparsec, base, base16-bytestring, bytestring 208351 , Cabal, cassava, clock, containers, convertible, cryptohash-md5 208352 , data-default-class, deepseq, directory, doctest 208353 + , double-conversion, either-result, filepath, HDBC, HDBC-postgresql 208354 + , HDBC-session, homotuple, hourglass, hspec, hspec-discover, HUnit 208355 + , list-tuple, memory, mtl, network, old-time, OneTuple, Only 208356 + , optparse-applicative, postgresql-binary, postgresql-libpq 208357 + , postgresql-placeholder-converter, postgresql-simple 208358 + , postgresql-typed, pretty-hex, random-shuffle, relational-query 208359 + , relational-query-HDBC, safe-exceptions, scientific, single-tuple 208360 + , text, time, utf8-string 208361 }: 208362 mkDerivation { 208363 pname = "postgresql-pure"; 208364 + version = "0.2.3.0"; 208365 + sha256 = "0lcnsrz612i240l7xw48zq1f70y1hjjbjl7h7yrdjwk2drihqx3x"; 208366 setupHaskellDepends = [ base Cabal directory filepath ]; 208367 libraryHaskellDepends = [ 208368 attoparsec base base16-bytestring bytestring containers convertible 208369 + cryptohash-md5 data-default-class deepseq double-conversion HDBC 208370 + homotuple list-tuple memory mtl network OneTuple Only 208371 + postgresql-binary postgresql-placeholder-converter pretty-hex 208372 + safe-exceptions scientific single-tuple text time utf8-string 208373 ]; 208374 testHaskellDepends = [ 208375 + attoparsec base bytestring containers convertible 208376 + data-default-class doctest either-result HDBC HDBC-postgresql 208377 + HDBC-session homotuple hspec HUnit network old-time Only 208378 + postgresql-placeholder-converter relational-query 208379 + relational-query-HDBC safe-exceptions time utf8-string 208380 ]; 208381 + testToolDepends = [ hspec-discover ]; 208382 benchmarkHaskellDepends = [ 208383 + attoparsec base bytestring cassava clock data-default-class deepseq 208384 + homotuple hourglass Only optparse-applicative postgresql-libpq 208385 + postgresql-simple postgresql-typed random-shuffle scientific time 208386 + utf8-string 208387 ]; 208388 description = "pure Haskell PostgreSQL driver"; 208389 license = lib.licenses.bsd3; ··· 208455 pname = "postgresql-simple"; 208456 version = "0.6.4"; 208457 sha256 = "0rz2bklxp4pvbxb2w49h5p6pbwabn6d5d4j4mrya4fpa0d13k43d"; 208458 + revision = "2"; 208459 + editedCabalFile = "1kwjlj0bsc1yd4dgfc0ydawq9acfjlf0bymwc830dryp16wpj9zv"; 208460 libraryHaskellDepends = [ 208461 aeson attoparsec base bytestring bytestring-builder 208462 case-insensitive containers hashable Only postgresql-libpq ··· 208655 ]; 208656 description = "Parse postgres:// url into ConnectInfo"; 208657 license = lib.licenses.mit; 208658 + hydraPlatforms = lib.platforms.none; 208659 + broken = true; 208660 }) {}; 208661 208662 "postgresql-syntax" = callPackage ··· 208817 license = lib.licenses.bsd3; 208818 }) {}; 208819 208820 + "postgresql-typed_0_6_2_0" = callPackage 208821 + ({ mkDerivation, aeson, array, attoparsec, base, binary, bytestring 208822 + , containers, convertible, criterion, cryptonite, data-default 208823 + , haskell-src-meta, HDBC, HUnit, memory, network, old-locale 208824 + , postgresql-binary, QuickCheck, scientific, template-haskell, text 208825 + , time, tls, utf8-string, uuid, x509, x509-store, x509-validation 208826 + }: 208827 + mkDerivation { 208828 + pname = "postgresql-typed"; 208829 + version = "0.6.2.0"; 208830 + sha256 = "0v38c5ai3plc1vlgz536a41yflz2d7nm9laks28lnqvxaqim27aw"; 208831 + libraryHaskellDepends = [ 208832 + aeson array attoparsec base binary bytestring containers cryptonite 208833 + data-default haskell-src-meta HDBC memory network old-locale 208834 + postgresql-binary scientific template-haskell text time tls 208835 + utf8-string uuid x509 x509-store x509-validation 208836 + ]; 208837 + testHaskellDepends = [ 208838 + base bytestring containers convertible HDBC HUnit network 208839 + QuickCheck time tls 208840 + ]; 208841 + benchmarkHaskellDepends = [ 208842 + base bytestring criterion network time tls 208843 + ]; 208844 + description = "PostgreSQL interface with compile-time SQL type checking, optional HDBC backend"; 208845 + license = lib.licenses.bsd3; 208846 + hydraPlatforms = lib.platforms.none; 208847 + }) {}; 208848 + 208849 "postgresql-typed-lifted" = callPackage 208850 ({ mkDerivation, base, base-unicode-symbols, bytestring, exceptions 208851 , lens, monad-control, postgresql-typed, transformers-base ··· 210830 ]; 210831 description = "Extras for the \"primitive\" library"; 210832 license = lib.licenses.mit; 210833 }) {}; 210834 210835 "primitive-foreign" = callPackage ··· 212825 ]; 212826 description = "Adapting proto-lens to optparse-applicative ReadMs"; 212827 license = lib.licenses.bsd3; 212828 + hydraPlatforms = lib.platforms.none; 212829 + broken = true; 212830 }) {}; 212831 212832 "proto-lens-protobuf-types" = callPackage ··· 213543 }: 213544 mkDerivation { 213545 pname = "ptr"; 213546 + version = "0.16.8.1"; 213547 + sha256 = "1ij3jhvavy19jjy6zx1q3jm2zq3n4qjxng653m5rr0rlfmwmanhp"; 213548 libraryHaskellDepends = [ 213549 base bytestring contravariant profunctors text time vector 213550 ]; ··· 213571 license = lib.licenses.mit; 213572 hydraPlatforms = lib.platforms.none; 213573 broken = true; 213574 + }) {}; 213575 + 213576 + "ptrdiff" = callPackage 213577 + ({ mkDerivation, base }: 213578 + mkDerivation { 213579 + pname = "ptrdiff"; 213580 + version = "0"; 213581 + sha256 = "1qfa6n1xd2xgcr9qbqdf3y8gj8yfiiladg3l4sp72v7wvqbvgvyw"; 213582 + libraryHaskellDepends = [ base ]; 213583 + description = "Type-checked pointer diffs"; 213584 + license = "(BSD-2-Clause OR Apache-2.0)"; 213585 }) {}; 213586 213587 "pub" = callPackage ··· 215108 ]; 215109 description = "Decrypt files encrypted by QNAP's Hybrid Backup Sync"; 215110 license = lib.licenses.bsd3; 215111 + hydraPlatforms = lib.platforms.none; 215112 + broken = true; 215113 }) {}; 215114 215115 "qq-literals" = callPackage ··· 215351 license = lib.licenses.mit; 215352 }) {}; 215353 215354 + "qualified-imports-plugin" = callPackage 215355 + ({ mkDerivation, base, containers, ghc, syb, text }: 215356 + mkDerivation { 215357 + pname = "qualified-imports-plugin"; 215358 + version = "0.0.1"; 215359 + sha256 = "075m9p02yz5zss64sli2c44id65z9m6f0vzwmpp21ra366s7l8rx"; 215360 + libraryHaskellDepends = [ base containers ghc syb ]; 215361 + testHaskellDepends = [ base text ]; 215362 + description = "GHC plugin to automatically insert qualified imports"; 215363 + license = lib.licenses.bsd3; 215364 + }) {}; 215365 + 215366 "quandl-api" = callPackage 215367 ({ mkDerivation, aeson, base, blaze-builder, bytestring 215368 , http-conduit, http-types, syb, text, time, time-locale-compat ··· 216257 ]; 216258 description = "Wrapper for the QuickJS Javascript Engine"; 216259 license = lib.licenses.mit; 216260 + hydraPlatforms = lib.platforms.none; 216261 + broken = true; 216262 }) {}; 216263 216264 "quicklz" = callPackage ··· 217963 ]; 217964 description = "Memory efficient sets with ranges of elements"; 217965 license = lib.licenses.mit; 217966 + hydraPlatforms = lib.platforms.none; 217967 + broken = true; 217968 }) {}; 217969 217970 "range-space" = callPackage ··· 218551 "rattletrap" = callPackage 218552 ({ mkDerivation, aeson, aeson-pretty, array, base, bytestring 218553 , containers, filepath, http-client, http-client-tls, HUnit, text 218554 }: 218555 mkDerivation { 218556 pname = "rattletrap"; 218557 + version = "11.0.1"; 218558 + sha256 = "1s9n89i6mh3lw9mni5lgs8qnq5c1981hrz5bv0n9cffnnp45av6a"; 218559 isLibrary = true; 218560 isExecutable = true; 218561 libraryHaskellDepends = [ 218562 aeson aeson-pretty array base bytestring containers filepath 218563 + http-client http-client-tls text 218564 ]; 218565 executableHaskellDepends = [ base ]; 218566 testHaskellDepends = [ base bytestring filepath HUnit ]; ··· 218869 license = lib.licenses.mit; 218870 }) {}; 218871 218872 + "rdf_0_1_0_5" = callPackage 218873 + ({ mkDerivation, attoparsec, base, bytestring, criterion, deepseq 218874 + , dlist, fgl, text, transformers 218875 + }: 218876 + mkDerivation { 218877 + pname = "rdf"; 218878 + version = "0.1.0.5"; 218879 + sha256 = "1jrnmy9fdj3d3pnhycxl5smn6pjdm44b862wfp6hlb82vyl4556s"; 218880 + libraryHaskellDepends = [ 218881 + attoparsec base bytestring deepseq dlist fgl text transformers 218882 + ]; 218883 + benchmarkHaskellDepends = [ 218884 + base bytestring criterion deepseq text 218885 + ]; 218886 + description = "Representation and Incremental Processing of RDF Data"; 218887 + license = lib.licenses.mit; 218888 + hydraPlatforms = lib.platforms.none; 218889 + }) {}; 218890 + 218891 "rdf4h" = callPackage 218892 ({ mkDerivation, algebraic-graphs, attoparsec, base, binary 218893 , bytestring, containers, criterion, deepseq, directory, exceptions ··· 219510 ]; 219511 description = "Extracts text of main article from HTML document"; 219512 license = lib.licenses.bsd3; 219513 + hydraPlatforms = lib.platforms.none; 219514 + broken = true; 219515 }) {}; 219516 219517 "readable" = callPackage ··· 219801 license = lib.licenses.mit; 219802 }) {}; 219803 219804 + "rebase_1_12_0_1" = callPackage 219805 ({ mkDerivation, base, bifunctors, bytestring, comonad, containers 219806 + , contravariant, deepseq, dlist, either, hashable, hashable-time 219807 + , mtl, profunctors, scientific, selective, semigroupoids, stm, text 219808 + , time, transformers, unordered-containers, uuid, vector 219809 + , vector-instances, void 219810 }: 219811 mkDerivation { 219812 pname = "rebase"; 219813 + version = "1.12.0.1"; 219814 + sha256 = "1yl09702psialskvm39i9rl3sag853qr1237jhs79yk7nhvdlaqx"; 219815 libraryHaskellDepends = [ 219816 + base bifunctors bytestring comonad containers contravariant deepseq 219817 + dlist either hashable hashable-time mtl profunctors scientific 219818 + selective semigroupoids stm text time transformers 219819 + unordered-containers uuid vector vector-instances void 219820 ]; 219821 description = "A more progressive alternative to the \"base\" package"; 219822 license = lib.licenses.mit; ··· 220115 }: 220116 mkDerivation { 220117 pname = "recursion-schemes"; 220118 + version = "5.2.2.1"; 220119 + sha256 = "1nq23ybrbkcgd9rsva4bsvzxl78987qfy0qmxxlvlq2mvs2jkqxy"; 220120 libraryHaskellDepends = [ 220121 base base-orphans comonad containers data-fix free template-haskell 220122 th-abstraction transformers ··· 222479 testToolDepends = [ tasty-discover ]; 222480 description = "data structure for assembling components"; 222481 license = lib.licenses.mit; 222482 + hydraPlatforms = lib.platforms.none; 222483 + broken = true; 222484 + }) {}; 222485 + 222486 + "registry_0_2_0_2" = callPackage 222487 + ({ mkDerivation, async, base, bytestring, containers, directory 222488 + , exceptions, generic-lens, hashable, hedgehog, io-memoize, mmorph 222489 + , MonadRandom, mtl, multimap, protolude, random, resourcet 222490 + , semigroupoids, semigroups, tasty, tasty-discover, tasty-hedgehog 222491 + , tasty-th, template-haskell, text, transformers-base, universum 222492 + }: 222493 + mkDerivation { 222494 + pname = "registry"; 222495 + version = "0.2.0.2"; 222496 + sha256 = "1lq8r382xm1m5b7i0jfjaj3f1jr98rdvjpn0h77i4i0i1wy529c1"; 222497 + libraryHaskellDepends = [ 222498 + base containers exceptions hashable mmorph mtl protolude resourcet 222499 + semigroupoids semigroups template-haskell text transformers-base 222500 + ]; 222501 + testHaskellDepends = [ 222502 + async base bytestring containers directory exceptions generic-lens 222503 + hashable hedgehog io-memoize mmorph MonadRandom mtl multimap 222504 + protolude random resourcet semigroupoids semigroups tasty 222505 + tasty-discover tasty-hedgehog tasty-th template-haskell text 222506 + transformers-base universum 222507 + ]; 222508 + testToolDepends = [ tasty-discover ]; 222509 + description = "data structure for assembling components"; 222510 + license = lib.licenses.mit; 222511 + hydraPlatforms = lib.platforms.none; 222512 + broken = true; 222513 }) {}; 222514 222515 "registry-hedgehog" = callPackage ··· 222520 }: 222521 mkDerivation { 222522 pname = "registry-hedgehog"; 222523 + version = "0.4.0.0"; 222524 + sha256 = "0mq5x9a8z70ibq78wx1p1za2f4r1mgrpdy78p5yvxvlzcazwqnp6"; 222525 libraryHaskellDepends = [ 222526 base containers hedgehog mmorph multimap protolude registry tasty 222527 tasty-discover tasty-hedgehog tasty-th template-haskell text ··· 222751 ]; 222752 description = "Sensible RLP encoding"; 222753 license = lib.licenses.mit; 222754 + hydraPlatforms = lib.platforms.none; 222755 + broken = true; 222756 }) {}; 222757 222758 "relation" = callPackage ··· 224141 license = lib.licenses.mit; 224142 }) {}; 224143 224144 + "rerebase_1_12_0_1" = callPackage 224145 ({ mkDerivation, rebase }: 224146 mkDerivation { 224147 pname = "rerebase"; 224148 + version = "1.12.0.1"; 224149 + sha256 = "0kh0022hfviywa4rkwnrqygc7s3vg8qvr9znh66v5c1i3gaibzq5"; 224150 libraryHaskellDepends = [ rebase ]; 224151 description = "Reexports from \"base\" with a bunch of other standard libraries"; 224152 license = lib.licenses.mit; ··· 224303 pname = "resolv"; 224304 version = "0.1.2.0"; 224305 sha256 = "0wa6wsh6i52q4ah2z0hgzlks325kigch4yniz0y15nw4skxbm8l1"; 224306 + revision = "2"; 224307 + editedCabalFile = "0nn5dalsl9sradkpv4awsb90v8cvcqvw4hd58yvpp4vpfybnk90h"; 224308 libraryHaskellDepends = [ 224309 base base16-bytestring binary bytestring containers 224310 ]; ··· 229737 }: 229738 mkDerivation { 229739 pname = "sbv"; 229740 + version = "8.14"; 229741 + sha256 = "1yf350daksxwz084j81ngamr53jpz7y2fi4cnpni6vy16mb0sxz1"; 229742 enableSeparateDataOutput = true; 229743 libraryHaskellDepends = [ 229744 array async base containers deepseq directory filepath libBF mtl ··· 229766 }: 229767 mkDerivation { 229768 pname = "sbvPlugin"; 229769 + version = "9.0.1"; 229770 + sha256 = "1hg1sxnspyxjpj98c2h7hzf93m9acw8cjiva4wsnxl1gspln4gwb"; 229771 libraryHaskellDepends = [ 229772 base containers ghc ghc-prim mtl sbv template-haskell 229773 ]; ··· 231267 license = lib.licenses.gpl2Only; 231268 }) {}; 231269 231270 + "scroll-list" = callPackage 231271 + ({ mkDerivation, base, hspec }: 231272 + mkDerivation { 231273 + pname = "scroll-list"; 231274 + version = "1.0.0.1"; 231275 + sha256 = "1qz4b04jkfkz9w6bz4g4zad5hj2nkl63y0klq0z5lgllf2f6ryw3"; 231276 + libraryHaskellDepends = [ base ]; 231277 + testHaskellDepends = [ base hspec ]; 231278 + description = "This package provides functions for relocate an item within a list"; 231279 + license = lib.licenses.bsd3; 231280 + }) {}; 231281 + 231282 "scrypt" = callPackage 231283 ({ mkDerivation, base, base64-bytestring, bytestring, entropy 231284 , HUnit, QuickCheck, test-framework, test-framework-hunit ··· 232065 testToolDepends = [ hspec-discover ]; 232066 description = "Bindings for secp256k1"; 232067 license = lib.licenses.mit; 232068 + hydraPlatforms = lib.platforms.none; 232069 + broken = true; 232070 }) {inherit (pkgs) secp256k1;}; 232071 232072 "secp256k1-legacy" = callPackage ··· 233381 pname = "serialise"; 233382 version = "0.2.3.0"; 233383 sha256 = "0vp4wyxpximpx10pssfgdsir1pc23zb62fg3kj3iblpzqfrryy69"; 233384 + revision = "2"; 233385 + editedCabalFile = "1qcsp15v0swxy2qlvc40fil09zq32y3wl00y3passc2a4b4yhmr4"; 233386 libraryHaskellDepends = [ 233387 array base bytestring cborg containers ghc-prim half hashable 233388 primitive text time unordered-containers vector ··· 233443 ({ mkDerivation, base, bytestring, HUnit, unix }: 233444 mkDerivation { 233445 pname = "serialport"; 233446 + version = "0.5.2"; 233447 + sha256 = "1wxi4arxbcvaacrm6phfnd3dvmy5h2bfcwlqis7x1bgyqpzxcq4b"; 233448 libraryHaskellDepends = [ base bytestring unix ]; 233449 testHaskellDepends = [ base bytestring HUnit ]; 233450 description = "Cross platform serial port library"; 233451 license = lib.licenses.bsd3; 233452 + hydraPlatforms = lib.platforms.none; 233453 + broken = true; 233454 }) {}; 233455 233456 "serokell-util" = callPackage ··· 236712 pname = "setlocale"; 236713 version = "1.0.0.9"; 236714 sha256 = "18b6xafspzxrmz5m9r9nzy3z053crqi59xc8n8aqd4gw0pvqdcrv"; 236715 + revision = "3"; 236716 + editedCabalFile = "10ikb40vv1n3rk7cczhgpi2h4wmv2s0wzq5xkgjqvsqwl1pxkidw"; 236717 libraryHaskellDepends = [ base ]; 236718 description = "Haskell bindings to setlocale"; 236719 license = lib.licenses.bsd3; 236720 + }) {}; 236721 + 236722 + "setlocale_1_0_0_10" = callPackage 236723 + ({ mkDerivation, base }: 236724 + mkDerivation { 236725 + pname = "setlocale"; 236726 + version = "1.0.0.10"; 236727 + sha256 = "19rv89jkhq5ic7j5rzpygnmsbzim2mn8ip0m292za613q88gywir"; 236728 + libraryHaskellDepends = [ base ]; 236729 + description = "Haskell bindings to setlocale"; 236730 + license = lib.licenses.bsd3; 236731 + hydraPlatforms = lib.platforms.none; 236732 }) {}; 236733 236734 "setoid" = callPackage ··· 237540 ]; 237541 description = "Shake rules for CSS"; 237542 license = lib.licenses.bsd3; 237543 + hydraPlatforms = lib.platforms.none; 237544 + broken = true; 237545 }) {}; 237546 237547 "shake-pack" = callPackage ··· 238217 license = lib.licenses.mpl20; 238218 }) {}; 238219 238220 + "shellmet_0_0_4_0" = callPackage 238221 + ({ mkDerivation, base, doctest, Glob, markdown-unlit, process, text 238222 + }: 238223 + mkDerivation { 238224 + pname = "shellmet"; 238225 + version = "0.0.4.0"; 238226 + sha256 = "1nrva50knx3ca0m6f84f1yim4apj949fqqmmrxqmxhlixjzafl8v"; 238227 + isLibrary = true; 238228 + isExecutable = true; 238229 + libraryHaskellDepends = [ base process text ]; 238230 + executableHaskellDepends = [ base text ]; 238231 + executableToolDepends = [ markdown-unlit ]; 238232 + testHaskellDepends = [ base doctest Glob ]; 238233 + description = "Out of the shell solution for scripting in Haskell"; 238234 + license = lib.licenses.mpl20; 238235 + hydraPlatforms = lib.platforms.none; 238236 + }) {}; 238237 + 238238 "shellout" = callPackage 238239 ({ mkDerivation, async, base, stm, text, typed-process }: 238240 mkDerivation { ··· 239096 ]; 239097 description = "Hmac sha256 signature json and http payload"; 239098 license = lib.licenses.bsd3; 239099 + hydraPlatforms = lib.platforms.none; 239100 + broken = true; 239101 }) {}; 239102 239103 "signed-multiset" = callPackage ··· 239108 sha256 = "0pxi6g095axf9x6hsiqf0ilsjlws4zvl0pjfjamjyyl1wj82h747"; 239109 libraryHaskellDepends = [ base containers ]; 239110 description = "Multisets with negative membership"; 239111 + license = lib.licenses.bsd3; 239112 + hydraPlatforms = lib.platforms.none; 239113 + broken = true; 239114 + }) {}; 239115 + 239116 + "signify-hs" = callPackage 239117 + ({ mkDerivation, base, base64-bytestring, bytestring 239118 + , cryptohash-sha512, cryptonite, eccrypto, filepath 239119 + , optparse-applicative, parsec 239120 + }: 239121 + mkDerivation { 239122 + pname = "signify-hs"; 239123 + version = "0.1.0.1"; 239124 + sha256 = "1a8ipdyc4c79waf1mgpwbmj1wrghmc5x49ksbxiwnkz6ini61kny"; 239125 + isLibrary = true; 239126 + isExecutable = true; 239127 + libraryHaskellDepends = [ 239128 + base base64-bytestring bytestring cryptohash-sha512 cryptonite 239129 + eccrypto parsec 239130 + ]; 239131 + executableHaskellDepends = [ 239132 + base base64-bytestring bytestring cryptohash-sha512 cryptonite 239133 + eccrypto filepath optparse-applicative parsec 239134 + ]; 239135 + description = "A Haskell clone of OpenBSD signify"; 239136 license = lib.licenses.bsd3; 239137 hydraPlatforms = lib.platforms.none; 239138 broken = true; ··· 239747 license = lib.licenses.bsd3; 239748 }) {}; 239749 239750 + "simple-parser" = callPackage 239751 + ({ mkDerivation, base, containers, list-t, mmorph, mtl 239752 + , nonempty-containers, scientific, tasty, tasty-hunit, tasty-th 239753 + , text, text-builder 239754 + }: 239755 + mkDerivation { 239756 + pname = "simple-parser"; 239757 + version = "0.3.0"; 239758 + sha256 = "05a4aakq93nqmm632mijd64vjq07dlpcb1m2a57z6k1mhqinwxc5"; 239759 + libraryHaskellDepends = [ 239760 + base containers list-t mmorph mtl nonempty-containers scientific 239761 + text text-builder 239762 + ]; 239763 + testHaskellDepends = [ 239764 + base containers list-t mmorph mtl nonempty-containers scientific 239765 + tasty tasty-hunit tasty-th text text-builder 239766 + ]; 239767 + description = "Simple parser combinators"; 239768 + license = lib.licenses.bsd3; 239769 + }) {}; 239770 + 239771 "simple-pascal" = callPackage 239772 ({ mkDerivation, base, containers, filepath, mtl, parsec 239773 , simple-stacked-vm ··· 239915 ({ mkDerivation, base, process }: 239916 mkDerivation { 239917 pname = "simple-smt"; 239918 + version = "0.9.6"; 239919 + sha256 = "1smr9lbr46nghbyk39j5v2s53zw1k2v1sbwwzj5js5h61xj33zs9"; 239920 libraryHaskellDepends = [ base process ]; 239921 description = "A simple way to interact with an SMT solver process"; 239922 license = lib.licenses.bsd3; ··· 239934 testHaskellDepends = [ base mtl parsec pretty tasty tasty-hunit ]; 239935 description = "A parser for SQL"; 239936 license = lib.licenses.bsd3; 239937 + hydraPlatforms = lib.platforms.none; 239938 + broken = true; 239939 }) {}; 239940 239941 "simple-src-utils" = callPackage ··· 240397 pname = "single-tuple"; 240398 version = "0.1.1.0"; 240399 sha256 = "1cviix5did4pm4bimg12v2qa9ms5icf19k3iz13g07d5q9jyiwji"; 240400 + revision = "1"; 240401 + editedCabalFile = "0gmki1bz7sn1lw5f1f1zp3rfphwba03fv6825djlidybln8snld0"; 240402 libraryHaskellDepends = [ base OneTuple Only ]; 240403 testHaskellDepends = [ base hspec OneTuple Only ]; 240404 testToolDepends = [ hspec-discover ]; ··· 240538 ]; 240539 description = "A promoted and singled version of the base library"; 240540 license = lib.licenses.bsd3; 240541 + hydraPlatforms = lib.platforms.none; 240542 + broken = true; 240543 }) {}; 240544 240545 "singletons-presburger" = callPackage ··· 240573 ]; 240574 description = "A framework for generating singleton types"; 240575 license = lib.licenses.bsd3; 240576 + hydraPlatforms = lib.platforms.none; 240577 + broken = true; 240578 }) {}; 240579 240580 "singnal" = callPackage ··· 241169 }: 241170 mkDerivation { 241171 pname = "skylighting"; 241172 + version = "0.10.5"; 241173 + sha256 = "09f21wkw8n5bjdn5bbrqphq4f44gipd1cb9b0ikjn9zrggglfnx9"; 241174 configureFlags = [ "-fexecutable" ]; 241175 isLibrary = true; 241176 isExecutable = true; ··· 241184 license = lib.licenses.gpl2Only; 241185 }) {}; 241186 241187 + "skylighting_0_10_5_1" = callPackage 241188 ({ mkDerivation, base, binary, blaze-html, bytestring, containers 241189 , pretty-show, skylighting-core, text 241190 }: 241191 mkDerivation { 241192 pname = "skylighting"; 241193 + version = "0.10.5.1"; 241194 + sha256 = "11y2j9c4gw0x5h974jrp0yppy5dys9i0nxdbzm374nwx8mjwdl4w"; 241195 configureFlags = [ "-fexecutable" ]; 241196 isLibrary = true; 241197 isExecutable = true; ··· 241216 }: 241217 mkDerivation { 241218 pname = "skylighting-core"; 241219 + version = "0.10.5"; 241220 + sha256 = "1iaisswfg8ab6rd11002390jfxr309qyvlm85h57mi8svwxk09x2"; 241221 isLibrary = true; 241222 isExecutable = true; 241223 libraryHaskellDepends = [ ··· 241237 license = lib.licenses.bsd3; 241238 }) {}; 241239 241240 + "skylighting-core_0_10_5_1" = callPackage 241241 ({ mkDerivation, aeson, ansi-terminal, attoparsec, base 241242 , base64-bytestring, binary, blaze-html, bytestring 241243 , case-insensitive, colour, containers, criterion, Diff, directory ··· 241247 }: 241248 mkDerivation { 241249 pname = "skylighting-core"; 241250 + version = "0.10.5.1"; 241251 + sha256 = "14mz7krfkidgplhp49w84ryz74jrsdqll44wqd0my0m28v2vg9ka"; 241252 isLibrary = true; 241253 isExecutable = true; 241254 libraryHaskellDepends = [ ··· 241453 ]; 241454 description = "Slack API Request Verification HMAC"; 241455 license = lib.licenses.mit; 241456 + hydraPlatforms = lib.platforms.none; 241457 + broken = true; 241458 }) {}; 241459 241460 "slack-web" = callPackage ··· 241598 }: 241599 mkDerivation { 241600 pname = "slick"; 241601 + version = "1.1.1.0"; 241602 + sha256 = "19zqg85j3685hsbax5sv96zfqxih7rmcjd65z88vynmiv718147d"; 241603 libraryHaskellDepends = [ 241604 aeson base bytestring directory extra mustache pandoc shake text 241605 unordered-containers ··· 241668 }) {}; 241669 241670 "slist" = callPackage 241671 ({ mkDerivation, base, containers, doctest, Glob, hedgehog, hspec 241672 , hspec-hedgehog 241673 }: ··· 241681 ]; 241682 description = "Sized list"; 241683 license = lib.licenses.mpl20; 241684 }) {}; 241685 241686 "sloane" = callPackage ··· 242148 license = lib.licenses.bsd3; 242149 }) {}; 242150 242151 + "smash_0_1_2" = callPackage 242152 + ({ mkDerivation, base, bifunctors, binary, deepseq, hashable, mtl 242153 + , template-haskell 242154 + }: 242155 + mkDerivation { 242156 + pname = "smash"; 242157 + version = "0.1.2"; 242158 + sha256 = "178ja9c88py31059i0fqv81b1dbgfyv2v64z9ak2k5p79946aa0w"; 242159 + revision = "1"; 242160 + editedCabalFile = "0i5ba4zn11b075fy32pawfhjy81731pjiy5f88f6z8zzbbgwfyny"; 242161 + libraryHaskellDepends = [ 242162 + base bifunctors binary deepseq hashable mtl template-haskell 242163 + ]; 242164 + description = "Smash products, wedge products, and pointed products"; 242165 + license = lib.licenses.bsd3; 242166 + hydraPlatforms = lib.platforms.none; 242167 + }) {}; 242168 + 242169 "smash-aeson" = callPackage 242170 ({ mkDerivation, aeson, base, smash, unordered-containers }: 242171 mkDerivation { ··· 242214 libraryHaskellDepends = [ base optics-core smash ]; 242215 description = "Optics for the `smash` library using `optics-core`"; 242216 license = lib.licenses.bsd3; 242217 + }) {}; 242218 + 242219 + "smawk" = callPackage 242220 + ({ mkDerivation, base, primitive, semigroupoids, transformers }: 242221 + mkDerivation { 242222 + pname = "smawk"; 242223 + version = "0"; 242224 + sha256 = "0w0hzn4zmziwxm88y6ra2p6ld29jfga9wnbcgrhw0snf10cnnqyc"; 242225 + libraryHaskellDepends = [ 242226 + base primitive semigroupoids transformers 242227 + ]; 242228 + description = "Linear time row minima for totally monotone matrices"; 242229 + license = "(BSD-2-Clause OR Apache-2.0)"; 242230 }) {}; 242231 242232 "smcdel" = callPackage ··· 246146 libraryHaskellDepends = [ base containers ghc hlint stm ]; 246147 description = "HLint as a GHC source plugin"; 246148 license = lib.licenses.isc; 246149 + hydraPlatforms = lib.platforms.none; 246150 + broken = true; 246151 + }) {}; 246152 + 246153 + "splint_1_0_1_4" = callPackage 246154 + ({ mkDerivation, base, containers, ghc, hlint, stm }: 246155 + mkDerivation { 246156 + pname = "splint"; 246157 + version = "1.0.1.4"; 246158 + sha256 = "1s7m43y4m074wk73scakb7ynf8na0fx1bnggj8v4l59bxa5mqsmm"; 246159 + libraryHaskellDepends = [ base containers ghc hlint stm ]; 246160 + description = "HLint as a GHC source plugin"; 246161 + license = lib.licenses.isc; 246162 + hydraPlatforms = lib.platforms.none; 246163 + broken = true; 246164 }) {}; 246165 246166 "split" = callPackage ··· 249491 ]; 249492 description = "Containers for STM"; 249493 license = lib.licenses.mit; 249494 + maintainers = with lib.maintainers; [ maralorn ]; 249495 }) {}; 249496 249497 "stm-delay" = callPackage ··· 249561 ]; 249562 description = "STM-specialised Hash Array Mapped Trie"; 249563 license = lib.licenses.mit; 249564 }) {}; 249565 249566 "stm-incremental" = callPackage ··· 250672 broken = true; 250673 }) {}; 250674 250675 + "streaming-nonempty" = callPackage 250676 + ({ mkDerivation, base, hspec, streaming }: 250677 + mkDerivation { 250678 + pname = "streaming-nonempty"; 250679 + version = "0.1.0.0"; 250680 + sha256 = "0ykw92p2v8v0dlq68733wyh211dh7cd8s3iirnkbnabm0vyc20y6"; 250681 + libraryHaskellDepends = [ base streaming ]; 250682 + testHaskellDepends = [ base hspec streaming ]; 250683 + description = "Add support for non empty streams to Streaming lib"; 250684 + license = lib.licenses.bsd3; 250685 + }) {}; 250686 + 250687 "streaming-osm" = callPackage 250688 ({ mkDerivation, attoparsec, base, bytestring, containers 250689 , resourcet, streaming, streaming-attoparsec, streaming-bytestring ··· 251931 testHaskellDepends = [ base bytestring text ]; 251932 description = "Verification of Stripe webhook signatures"; 251933 license = lib.licenses.mit; 251934 + hydraPlatforms = lib.platforms.none; 251935 + broken = true; 251936 }) {}; 251937 251938 "stripe-tests" = callPackage ··· 253375 ]; 253376 description = "Integration to use sv with cassava's parser"; 253377 license = lib.licenses.bsd3; 253378 + hydraPlatforms = lib.platforms.none; 253379 + broken = true; 253380 }) {}; 253381 253382 "sv-core" = callPackage ··· 253404 ]; 253405 description = "Encode and decode separated values (CSV, PSV, ...)"; 253406 license = lib.licenses.bsd3; 253407 + hydraPlatforms = lib.platforms.none; 253408 + broken = true; 253409 }) {}; 253410 253411 "sv-svfactor" = callPackage ··· 253918 license = lib.licenses.bsd3; 253919 }) {}; 253920 253921 + "switch" = callPackage 253922 + ({ mkDerivation, attoparsec, base, bytestring, GPipe, GPipe-GLFW 253923 + , hidapi, linear 253924 + }: 253925 + mkDerivation { 253926 + pname = "switch"; 253927 + version = "0.1.0.0"; 253928 + sha256 = "169dvy7vqbjza24456azdmjb8yyrkr18z04azwhkl08b9wx9wvz5"; 253929 + libraryHaskellDepends = [ attoparsec base bytestring hidapi ]; 253930 + testHaskellDepends = [ 253931 + attoparsec base bytestring GPipe GPipe-GLFW hidapi linear 253932 + ]; 253933 + description = "Nintendo Switch Controller Library"; 253934 + license = lib.licenses.bsd3; 253935 + hydraPlatforms = lib.platforms.none; 253936 + broken = true; 253937 + }) {}; 253938 + 253939 "sws" = callPackage 253940 ({ mkDerivation, asn1-encoding, asn1-types, base, bytestring 253941 , containers, cryptonite, directory, filepath, hourglass ··· 255396 license = lib.licenses.mit; 255397 }) {}; 255398 255399 + "system-info_0_5_2" = callPackage 255400 + ({ mkDerivation, base }: 255401 + mkDerivation { 255402 + pname = "system-info"; 255403 + version = "0.5.2"; 255404 + sha256 = "0k1mc0axh3iwy3d7svxl31b629c9s482bq7mshhs6glh9pv6cg74"; 255405 + libraryHaskellDepends = [ base ]; 255406 + description = "Get the name of the operating system"; 255407 + license = lib.licenses.mit; 255408 + hydraPlatforms = lib.platforms.none; 255409 + }) {}; 255410 + 255411 "system-inotify" = callPackage 255412 ({ mkDerivation, base, bytestring }: 255413 mkDerivation { ··· 256945 testToolDepends = [ tasty-discover ]; 256946 description = "A command-line kanban board/task manager"; 256947 license = lib.licenses.bsd3; 256948 }) {}; 256949 256950 "taskpool" = callPackage ··· 256974 pname = "taskwarrior"; 256975 version = "0.3.0.0"; 256976 sha256 = "1h24d799q1s6b36hd40bxa4c9m1izkgh6j7p2jv1p6cxngz28ni0"; 256977 + revision = "4"; 256978 + editedCabalFile = "1rwlyw01i07xryhja4h7jadlj5rdznmb1jwl74qllkrhrvqjfmrg"; 256979 libraryHaskellDepends = [ 256980 aeson base bytestring containers process random text time 256981 unordered-containers uuid ··· 257077 ({ mkDerivation, base, containers, deepseq, tasty }: 257078 mkDerivation { 257079 pname = "tasty-bench"; 257080 + version = "0.2.3"; 257081 + sha256 = "16273rxlvjh960mdlhkpggx8rbza1n18fxl9m9yi8dhkli4g0w6a"; 257082 libraryHaskellDepends = [ base containers deepseq tasty ]; 257083 description = "Featherlight benchmark framework"; 257084 license = lib.licenses.mit; 257085 }) {}; 257086 257087 + "tasty-bench_0_2_5" = callPackage 257088 ({ mkDerivation, base, containers, deepseq, tasty }: 257089 mkDerivation { 257090 pname = "tasty-bench"; 257091 + version = "0.2.5"; 257092 + sha256 = "146i1vkp9008hik7qyi8m9qq3ij5kji84qscsf598rzjmjga7igd"; 257093 libraryHaskellDepends = [ base containers deepseq tasty ]; 257094 description = "Featherlight benchmark framework"; 257095 license = lib.licenses.mit; ··· 257223 testHaskellDepends = [ aeson base tasty tasty-hunit ]; 257224 description = "Grade your tasty-testsuite"; 257225 license = lib.licenses.bsd3; 257226 + hydraPlatforms = lib.platforms.none; 257227 + broken = true; 257228 }) {}; 257229 257230 "tasty-groundhog-converters" = callPackage ··· 257727 libraryHaskellDepends = [ base tasty ]; 257728 description = "Test vector support for tasty"; 257729 license = lib.licenses.bsd3; 257730 + hydraPlatforms = lib.platforms.none; 257731 + broken = true; 257732 }) {}; 257733 257734 "tasty-th" = callPackage ··· 258598 broken = true; 258599 }) {}; 258600 258601 + "template-haskell_2_17_0_0" = callPackage 258602 ({ mkDerivation, base, ghc-boot-th, ghc-prim, pretty }: 258603 mkDerivation { 258604 pname = "template-haskell"; 258605 + version = "2.17.0.0"; 258606 + sha256 = "0m9siwzxh11ny75sgcnfha8h1vcsc1mbn0jvqsal9sbskwss7bab"; 258607 libraryHaskellDepends = [ base ghc-boot-th ghc-prim pretty ]; 258608 description = "Support library for Template Haskell"; 258609 license = lib.licenses.bsd3; ··· 260151 }: 260152 mkDerivation { 260153 pname = "testcontainers"; 260154 + version = "0.3.0.1"; 260155 + sha256 = "01qqinmjy6mvfnszq2br459xfcx9jg5ycs0dfmpqg3wxfi826kx6"; 260156 libraryHaskellDepends = [ 260157 aeson aeson-optics base bytestring exceptions mtl network 260158 optics-core process resourcet tasty text unliftio-core ··· 260497 license = lib.licenses.mit; 260498 }) {}; 260499 260500 + "text-builder_0_6_6_2" = callPackage 260501 + ({ mkDerivation, base, bytestring, criterion, deferred-folds 260502 + , QuickCheck, quickcheck-instances, rerebase, tasty, tasty-hunit 260503 + , tasty-quickcheck, text, transformers 260504 + }: 260505 + mkDerivation { 260506 + pname = "text-builder"; 260507 + version = "0.6.6.2"; 260508 + sha256 = "1cj6k27w9zm0g5wjfwyiwjljnqs9lz0zhw52nd0p7f1mhb9r80dw"; 260509 + libraryHaskellDepends = [ 260510 + base bytestring deferred-folds text transformers 260511 + ]; 260512 + testHaskellDepends = [ 260513 + QuickCheck quickcheck-instances rerebase tasty tasty-hunit 260514 + tasty-quickcheck 260515 + ]; 260516 + benchmarkHaskellDepends = [ criterion rerebase ]; 260517 + description = "An efficient strict text builder"; 260518 + license = lib.licenses.mit; 260519 + hydraPlatforms = lib.platforms.none; 260520 + }) {}; 260521 + 260522 "text-containers" = callPackage 260523 ({ mkDerivation, base, bytestring, containers, deepseq, ghc-prim 260524 , hashable, QuickCheck, quickcheck-instances, tasty ··· 262131 license = lib.licenses.mit; 262132 }) {}; 262133 262134 + "th-utilities_0_2_4_2" = callPackage 262135 + ({ mkDerivation, base, bytestring, containers, directory, filepath 262136 + , hspec, primitive, syb, template-haskell, text, th-abstraction 262137 + , th-orphans, vector 262138 + }: 262139 + mkDerivation { 262140 + pname = "th-utilities"; 262141 + version = "0.2.4.2"; 262142 + sha256 = "09rbs878gjhyg8n789p2c67lzxr4h1pg0zar47a7j8sg6ff5wcx2"; 262143 + libraryHaskellDepends = [ 262144 + base bytestring containers directory filepath primitive syb 262145 + template-haskell text th-abstraction th-orphans 262146 + ]; 262147 + testHaskellDepends = [ 262148 + base bytestring containers directory filepath hspec primitive syb 262149 + template-haskell text th-abstraction th-orphans vector 262150 + ]; 262151 + description = "Collection of useful functions for use with Template Haskell"; 262152 + license = lib.licenses.mit; 262153 + hydraPlatforms = lib.platforms.none; 262154 + }) {}; 262155 + 262156 "thank-you-stars" = callPackage 262157 ({ mkDerivation, aeson, base, bytestring, Cabal, containers 262158 , directory, filepath, hackage-db, hspec, req, split, text ··· 265495 }: 265496 mkDerivation { 265497 pname = "too-many-cells"; 265498 + version = "2.2.0.0"; 265499 + sha256 = "031k750856m34q80ppnbb17qm6c64lal9dqn976g7265zmc9cdr7"; 265500 isLibrary = true; 265501 isExecutable = true; 265502 libraryHaskellDepends = [ ··· 266111 }: 266112 mkDerivation { 266113 pname = "tracing"; 266114 + version = "0.0.6.0"; 266115 + sha256 = "0f92jh3pfd67pfy2yn26k05n2xy8iyshds9mq4hvwf0jq1kk9h6d"; 266116 libraryHaskellDepends = [ 266117 aeson base base16-bytestring bytestring case-insensitive containers 266118 http-client mtl network random stm text time transformers unliftio ··· 266122 ]; 266123 description = "Distributed tracing"; 266124 license = lib.licenses.bsd3; 266125 + hydraPlatforms = lib.platforms.none; 266126 + broken = true; 266127 }) {}; 266128 266129 "tracing-control" = callPackage ··· 266147 ]; 266148 description = "Distributed tracing"; 266149 license = lib.licenses.bsd3; 266150 + hydraPlatforms = lib.platforms.none; 266151 + broken = true; 266152 }) {}; 266153 266154 "tracked-files" = callPackage ··· 268161 license = lib.licenses.mit; 268162 }) {}; 268163 268164 + "ttc_0_4_0_0" = callPackage 268165 + ({ mkDerivation, base, bytestring, tasty, tasty-hunit 268166 + , template-haskell, text 268167 + }: 268168 + mkDerivation { 268169 + pname = "ttc"; 268170 + version = "0.4.0.0"; 268171 + sha256 = "07b5vw7wxgxcsr04h4nx28bmv9a10hkdzhhssvka050hxhiyjmgv"; 268172 + libraryHaskellDepends = [ base bytestring template-haskell text ]; 268173 + testHaskellDepends = [ 268174 + base bytestring tasty tasty-hunit template-haskell text 268175 + ]; 268176 + description = "Textual Type Classes"; 268177 + license = lib.licenses.mit; 268178 + hydraPlatforms = lib.platforms.none; 268179 + }) {}; 268180 + 268181 "ttl-hashtables" = callPackage 268182 ({ mkDerivation, base, clock, containers, data-default, failable 268183 , hashable, hashtables, hspec, mtl, transformers ··· 268221 268222 "ttn-client" = callPackage 268223 description = "GLUT events via a Kafka message broker"; 268224 + , cayenne-lpp, config-ini, directory, filepath, net-mqtt 268225 , network-uri, stm, text, time, ttn 268226 }: 268227 mkDerivation { 268228 pname = "ttn-client"; 268229 + version = "0.2.2.0"; 268230 + sha256 = "0gylp37nspknysv5583bxbcida7dw47lrd7pb6857jad418yryxr"; 268231 isLibrary = true; 268232 isExecutable = true; 268233 libraryHaskellDepends = [ 268234 + async base base64-bytestring binary bytestring cayenne-lpp 268235 config-ini directory filepath net-mqtt network-uri stm text ttn 268236 ]; 268237 executableHaskellDepends = [ base text time ttn ]; ··· 268616 pname = "turtle"; 268617 version = "1.5.21"; 268618 sha256 = "0sb1xnmvqby1lcg3p92v0nkpxnm2qk0gcn41mxxgp3xdm24vkz36"; 268619 + revision = "1"; 268620 + editedCabalFile = "0qh20z5gzbi3an78z7p338xdz61sbpffy0w0crx7fpwa95dlkf0m"; 268621 libraryHaskellDepends = [ 268622 ansi-wl-pprint async base bytestring clock containers directory 268623 exceptions foldl hostname managed optional-args ··· 268628 benchmarkHaskellDepends = [ base criterion text ]; 268629 description = "Shell programming, Haskell-style"; 268630 license = lib.licenses.bsd3; 268631 + }) {}; 268632 + 268633 + "turtle_1_5_22" = callPackage 268634 + ({ mkDerivation, ansi-wl-pprint, async, base, bytestring, clock 268635 + , containers, criterion, directory, doctest, exceptions, foldl 268636 + , hostname, managed, optional-args, optparse-applicative, process 268637 + , stm, streaming-commons, system-fileio, system-filepath, temporary 268638 + , text, time, transformers, unix, unix-compat 268639 + }: 268640 + mkDerivation { 268641 + pname = "turtle"; 268642 + version = "1.5.22"; 268643 + sha256 = "14lf43b5rxci6p9sy1gkb715m4b1s4rl65swn2qpdqv3h2yvpi4s"; 268644 + libraryHaskellDepends = [ 268645 + ansi-wl-pprint async base bytestring clock containers directory 268646 + exceptions foldl hostname managed optional-args 268647 + optparse-applicative process stm streaming-commons system-fileio 268648 + system-filepath temporary text time transformers unix unix-compat 268649 + ]; 268650 + testHaskellDepends = [ base doctest system-filepath temporary ]; 268651 + benchmarkHaskellDepends = [ base criterion text ]; 268652 + description = "Shell programming, Haskell-style"; 268653 + license = lib.licenses.bsd3; 268654 + hydraPlatforms = lib.platforms.none; 268655 }) {}; 268656 268657 "turtle-options" = callPackage ··· 270533 broken = true; 270534 }) {}; 270535 270536 + "typenums_0_1_4" = callPackage 270537 + ({ mkDerivation, base, hspec, hspec-discover, QuickCheck }: 270538 + mkDerivation { 270539 + pname = "typenums"; 270540 + version = "0.1.4"; 270541 + sha256 = "16bfn4s8q4w2f8a2c9l93b0yhj9qahccp9fs29rcj9q8873xaz6l"; 270542 + libraryHaskellDepends = [ base ]; 270543 + testHaskellDepends = [ base hspec QuickCheck ]; 270544 + testToolDepends = [ hspec-discover ]; 270545 + description = "Type level numbers using existing Nat functionality"; 270546 + license = lib.licenses.bsd3; 270547 + hydraPlatforms = lib.platforms.none; 270548 + broken = true; 270549 + }) {}; 270550 + 270551 "typeof" = callPackage 270552 ({ mkDerivation, base, process }: 270553 mkDerivation { ··· 271292 ]; 271293 description = "Minimal HTTP client library optimized for benchmarking"; 271294 license = lib.licenses.gpl3Only; 271295 + hydraPlatforms = lib.platforms.none; 271296 + broken = true; 271297 }) {}; 271298 271299 "ui-command" = callPackage ··· 271940 license = lib.licenses.bsd3; 271941 }) {}; 271942 271943 + "unicode-general-category" = callPackage 271944 + ({ mkDerivation, array, base, binary, bytestring, containers 271945 + , file-embed, hspec, QuickCheck, text 271946 + }: 271947 + mkDerivation { 271948 + pname = "unicode-general-category"; 271949 + version = "0.1.0.0"; 271950 + sha256 = "06qxihfgsh75xnij20qpvnr53mz3pd5r8myx0fpsfrg0jn0ldiya"; 271951 + libraryHaskellDepends = [ 271952 + array base binary bytestring containers file-embed text 271953 + ]; 271954 + testHaskellDepends = [ 271955 + base bytestring containers hspec QuickCheck 271956 + ]; 271957 + description = "Unicode General Category Database"; 271958 + license = lib.licenses.bsd3; 271959 + }) {}; 271960 + 271961 "unicode-names" = callPackage 271962 ({ mkDerivation, array, base, containers, unicode-properties }: 271963 mkDerivation { ··· 272788 libraryHaskellDepends = [ base containers universe-base ]; 272789 description = "Instances of standard classes that are made possible by enumerations"; 272790 license = lib.licenses.bsd3; 272791 }) {}; 272792 272793 "universe-some" = callPackage ··· 273844 benchmarkHaskellDepends = [ base criterion deepseq ]; 273845 description = "Hoon-style atom manipulation and printing functions"; 273846 license = lib.licenses.mit; 273847 + hydraPlatforms = lib.platforms.none; 273848 + broken = true; 273849 }) {}; 273850 273851 "ureader" = callPackage ··· 276330 }) {}; 276331 276332 "vector-builder" = callPackage 276333 + ({ mkDerivation, attoparsec, base, QuickCheck, quickcheck-instances 276334 + , rerebase, tasty, tasty-hunit, tasty-quickcheck, vector 276335 }: 276336 mkDerivation { 276337 pname = "vector-builder"; 276338 + version = "0.3.8.1"; 276339 + sha256 = "1fd0zwycp7aprj5q1c7na97a7wqivyr2fmy8ms16fh4wln62x50y"; 276340 + libraryHaskellDepends = [ base vector ]; 276341 testHaskellDepends = [ 276342 attoparsec QuickCheck quickcheck-instances rerebase tasty 276343 tasty-hunit tasty-quickcheck ··· 276394 testHaskellDepends = [ base doctest hedgehog hedgehog-classes ]; 276395 description = "circular vectors"; 276396 license = lib.licenses.mit; 276397 }) {}; 276398 276399 "vector-clock" = callPackage ··· 277441 license = lib.licenses.mit; 277442 }) {}; 277443 277444 + "vinyl_0_13_1" = callPackage 277445 + ({ mkDerivation, aeson, array, base, criterion, deepseq, doctest 277446 + , ghc-prim, hspec, lens, lens-aeson, linear, microlens, mtl 277447 + , mwc-random, primitive, should-not-typecheck, singletons, tagged 277448 + , text, unordered-containers, vector 277449 + }: 277450 + mkDerivation { 277451 + pname = "vinyl"; 277452 + version = "0.13.1"; 277453 + sha256 = "1aip3v1jnxmx44bkshxkmd1iixml65987b4sbh4gncm6q7brkn0k"; 277454 + libraryHaskellDepends = [ array base deepseq ghc-prim ]; 277455 + testHaskellDepends = [ 277456 + aeson base doctest hspec lens lens-aeson microlens mtl 277457 + should-not-typecheck singletons text unordered-containers vector 277458 + ]; 277459 + benchmarkHaskellDepends = [ 277460 + base criterion linear microlens mwc-random primitive tagged vector 277461 + ]; 277462 + description = "Extensible Records"; 277463 + license = lib.licenses.mit; 277464 + hydraPlatforms = lib.platforms.none; 277465 + }) {}; 277466 + 277467 "vinyl-generics" = callPackage 277468 ({ mkDerivation, aeson, base, generics-sop, hspec, hspec-core 277469 , QuickCheck, records-sop, text, vinyl ··· 278217 ({ mkDerivation, base, bytestring, transformers, vector, vulkan }: 278218 mkDerivation { 278219 pname = "vulkan"; 278220 + version = "3.10.1"; 278221 + sha256 = "0lk4l65qvq1b3dz9fkz981zgm2m9nx38ylccnsxcgxns2s2zx9b3"; 278222 libraryHaskellDepends = [ base bytestring transformers vector ]; 278223 libraryPkgconfigDepends = [ vulkan ]; 278224 description = "Bindings to the Vulkan graphics API"; ··· 280385 ]; 280386 description = "A parser for the Web Archive (WARC) format"; 280387 license = lib.licenses.bsd3; 280388 + hydraPlatforms = lib.platforms.none; 280389 + broken = true; 280390 }) {}; 280391 280392 "warp" = callPackage ··· 280765 license = lib.licenses.bsd3; 280766 }) {}; 280767 280768 + "weak" = callPackage 280769 + ({ mkDerivation, base }: 280770 + mkDerivation { 280771 + pname = "weak"; 280772 + version = "0"; 280773 + sha256 = "0400riqrhzgmc2jfwppjknmkynmamwfid7q3k7q9k43s9s175yng"; 280774 + libraryHaskellDepends = [ base ]; 280775 + description = "Weak pointer extas"; 280776 + license = "(BSD-2-Clause OR Apache-2.0)"; 280777 + }) {}; 280778 + 280779 "weak-bag" = callPackage 280780 ({ mkDerivation, base, containers }: 280781 mkDerivation { ··· 281686 ]; 281687 description = "webfont generator"; 281688 license = lib.licenses.mit; 281689 + hydraPlatforms = lib.platforms.none; 281690 + broken = true; 281691 }) {}; 281692 281693 "webkit" = callPackage ··· 281793 ]; 281794 description = "Types and functions for working with Webmentions"; 281795 license = lib.licenses.bsd3; 281796 + hydraPlatforms = lib.platforms.none; 281797 + broken = true; 281798 }) {}; 281799 281800 "webp" = callPackage ··· 282527 license = lib.licenses.bsd3; 282528 }) {}; 282529 282530 + "wikicfp-scraper_0_1_0_12" = callPackage 282531 + ({ mkDerivation, attoparsec, base, bytestring, filepath, hspec 282532 + , hspec-discover, scalpel-core, text, time 282533 + }: 282534 + mkDerivation { 282535 + pname = "wikicfp-scraper"; 282536 + version = "0.1.0.12"; 282537 + sha256 = "03l8ggnnkq7gx5qf9rrng50wb5cabyam8vrs2bnrm02gcgjx89sx"; 282538 + libraryHaskellDepends = [ 282539 + attoparsec base bytestring scalpel-core text time 282540 + ]; 282541 + testHaskellDepends = [ base bytestring filepath hspec time ]; 282542 + testToolDepends = [ hspec-discover ]; 282543 + description = "Scrape WikiCFP web site"; 282544 + license = lib.licenses.bsd3; 282545 + hydraPlatforms = lib.platforms.none; 282546 + }) {}; 282547 + 282548 "wikipedia4epub" = callPackage 282549 ({ mkDerivation, base, bytestring, directory, epub, filepath 282550 , haskell98, HTTP, network, regex-base, regex-posix, tagsoup, url ··· 282584 license = lib.licenses.bsd3; 282585 }) {}; 282586 282587 + "wild-bind_0_1_2_7" = callPackage 282588 + ({ mkDerivation, base, containers, hspec, hspec-discover, microlens 282589 + , QuickCheck, semigroups, stm, text, transformers 282590 + }: 282591 + mkDerivation { 282592 + pname = "wild-bind"; 282593 + version = "0.1.2.7"; 282594 + sha256 = "1vp88124shp9f79wfrdkp964pfmyzhsg3j718bkqrpgw5wbnwds0"; 282595 + libraryHaskellDepends = [ 282596 + base containers semigroups text transformers 282597 + ]; 282598 + testHaskellDepends = [ 282599 + base hspec microlens QuickCheck stm transformers 282600 + ]; 282601 + testToolDepends = [ hspec-discover ]; 282602 + description = "Dynamic key binding framework"; 282603 + license = lib.licenses.bsd3; 282604 + hydraPlatforms = lib.platforms.none; 282605 + }) {}; 282606 + 282607 "wild-bind-indicator" = callPackage 282608 ({ mkDerivation, async, base, containers, gi-gdk, gi-glib, gi-gtk 282609 , text, transformers, wild-bind 282610 }: 282611 mkDerivation { 282612 pname = "wild-bind-indicator"; 282613 + version = "1.0.0.1"; 282614 + sha256 = "0r9850zk2gmx492palbam6nl5ym9ml5lpgx0c1jyvpbn3caqgxas"; 282615 enableSeparateDataOutput = true; 282616 libraryHaskellDepends = [ 282617 async base containers gi-gdk gi-glib gi-gtk text transformers ··· 282629 }: 282630 mkDerivation { 282631 pname = "wild-bind-task-x11"; 282632 + version = "0.2.0.3"; 282633 + sha256 = "1agrwh4sgajyqs655p5ppz2vamp6xf5h5sckqb83zzjvn8i293dk"; 282634 libraryHaskellDepends = [ 282635 base text transformers wild-bind wild-bind-indicator wild-bind-x11 282636 ]; ··· 282658 ]; 282659 description = "X11-specific implementation for WildBind"; 282660 license = lib.licenses.bsd3; 282661 + }) {}; 282662 + 282663 + "wild-bind-x11_0_2_0_12" = callPackage 282664 + ({ mkDerivation, async, base, containers, fold-debounce, hspec 282665 + , hspec-discover, mtl, semigroups, stm, text, time, transformers 282666 + , wild-bind, X11 282667 + }: 282668 + mkDerivation { 282669 + pname = "wild-bind-x11"; 282670 + version = "0.2.0.12"; 282671 + sha256 = "1zpb448pj586xvh0l9qp08hvbjw1lphxwzi4srnghmsbnfnkvhh6"; 282672 + libraryHaskellDepends = [ 282673 + base containers fold-debounce mtl semigroups stm text transformers 282674 + wild-bind X11 282675 + ]; 282676 + testHaskellDepends = [ 282677 + async base hspec text time transformers wild-bind X11 282678 + ]; 282679 + testToolDepends = [ hspec-discover ]; 282680 + description = "X11-specific implementation for WildBind"; 282681 + license = lib.licenses.bsd3; 282682 + hydraPlatforms = lib.platforms.none; 282683 }) {}; 282684 282685 "wilton-ffi" = callPackage ··· 283650 ]; 283651 description = "Validate Wordpress Cookies & Nonces; Build Wordpress Hashes & Salts"; 283652 license = lib.licenses.bsd3; 283653 + hydraPlatforms = lib.platforms.none; 283654 + broken = true; 283655 }) {}; 283656 283657 "words" = callPackage ··· 288131 }: 288132 mkDerivation { 288133 pname = "yarn-lock"; 288134 + version = "0.6.4"; 288135 + sha256 = "0vab0k1z2b8j18d5bqiraa4zpxr9rqg2s52y28j3qk292lmpmni9"; 288136 libraryHaskellDepends = [ 288137 base containers either megaparsec protolude text 288138 ]; ··· 288677 ]; 288678 description = "Authentication for Yesod"; 288679 license = lib.licenses.mit; 288680 + }) {}; 288681 + 288682 + "yesod-auth_1_6_10_2" = callPackage 288683 + ({ mkDerivation, aeson, authenticate, base, base16-bytestring 288684 + , base64-bytestring, binary, blaze-builder, blaze-html 288685 + , blaze-markup, bytestring, conduit, conduit-extra, containers 288686 + , cryptonite, data-default, email-validate, file-embed, http-client 288687 + , http-client-tls, http-conduit, http-types, memory, network-uri 288688 + , nonce, persistent, random, safe, shakespeare, template-haskell 288689 + , text, time, transformers, unliftio, unliftio-core 288690 + , unordered-containers, wai, yesod-core, yesod-form 288691 + , yesod-persistent 288692 + }: 288693 + mkDerivation { 288694 + pname = "yesod-auth"; 288695 + version = "1.6.10.2"; 288696 + sha256 = "16c4rddfmpw1smk7zayflwp1xy3avrqcr0cv6qx4aq949zpn6lz8"; 288697 + libraryHaskellDepends = [ 288698 + aeson authenticate base base16-bytestring base64-bytestring binary 288699 + blaze-builder blaze-html blaze-markup bytestring conduit 288700 + conduit-extra containers cryptonite data-default email-validate 288701 + file-embed http-client http-client-tls http-conduit http-types 288702 + memory network-uri nonce persistent random safe shakespeare 288703 + template-haskell text time transformers unliftio unliftio-core 288704 + unordered-containers wai yesod-core yesod-form yesod-persistent 288705 + ]; 288706 + description = "Authentication for Yesod"; 288707 + license = lib.licenses.mit; 288708 + hydraPlatforms = lib.platforms.none; 288709 }) {}; 288710 288711 "yesod-auth-account" = callPackage ··· 289833 broken = true; 289834 }) {}; 289835 289836 + "yesod-markdown_0_12_6_8" = callPackage 289837 + ({ mkDerivation, base, blaze-html, blaze-markup, bytestring 289838 + , directory, hspec, pandoc, persistent, shakespeare, text 289839 + , xss-sanitize, yesod-core, yesod-form 289840 + }: 289841 + mkDerivation { 289842 + pname = "yesod-markdown"; 289843 + version = "0.12.6.8"; 289844 + sha256 = "1jlnci0wkfg04qvad7qx19321s8jf2rskjghirwcqy1abg3bf96p"; 289845 + libraryHaskellDepends = [ 289846 + base blaze-html blaze-markup bytestring directory pandoc persistent 289847 + shakespeare text xss-sanitize yesod-core yesod-form 289848 + ]; 289849 + testHaskellDepends = [ base blaze-html hspec text ]; 289850 + description = "Tools for using markdown in a yesod application"; 289851 + license = lib.licenses.gpl2Only; 289852 + hydraPlatforms = lib.platforms.none; 289853 + broken = true; 289854 + }) {}; 289855 + 289856 "yesod-media-simple" = callPackage 289857 ({ mkDerivation, base, bytestring, diagrams-cairo, diagrams-core 289858 , diagrams-lib, directory, JuicyPixels, vector, yesod ··· 289896 }: 289897 mkDerivation { 289898 pname = "yesod-page-cursor"; 289899 + version = "2.0.0.5"; 289900 + sha256 = "0jz5dhmvfggbyjkcxs7v4pc4jpcd759jfv77avzwr64xx2glk1yw"; 289901 libraryHaskellDepends = [ 289902 aeson base bytestring containers http-link-header network-uri text 289903 unliftio yesod-core ··· 290005 license = lib.licenses.mit; 290006 }) {}; 290007 290008 + "yesod-persistent_1_6_0_6" = callPackage 290009 + ({ mkDerivation, base, blaze-builder, conduit, hspec, persistent 290010 + , persistent-sqlite, persistent-template, resource-pool, resourcet 290011 + , text, transformers, wai-extra, yesod-core 290012 + }: 290013 + mkDerivation { 290014 + pname = "yesod-persistent"; 290015 + version = "1.6.0.6"; 290016 + sha256 = "169bwdnaxw926yr5wbcgf7n6v914sgv2vw6ywc95b5xpm0i0dyph"; 290017 + libraryHaskellDepends = [ 290018 + base blaze-builder conduit persistent persistent-template 290019 + resource-pool resourcet transformers yesod-core 290020 + ]; 290021 + testHaskellDepends = [ 290022 + base blaze-builder conduit hspec persistent persistent-sqlite text 290023 + wai-extra yesod-core 290024 + ]; 290025 + description = "Some helpers for using Persistent from Yesod"; 290026 + license = lib.licenses.mit; 290027 + hydraPlatforms = lib.platforms.none; 290028 + }) {}; 290029 + 290030 "yesod-platform" = callPackage 290031 ({ mkDerivation, ansi-terminal, ansi-wl-pprint, asn1-encoding 290032 , asn1-parse, asn1-types, attoparsec-conduit, authenticate ··· 291822 ({ mkDerivation, base, c2hs, zbar }: 291823 mkDerivation { 291824 pname = "zbar"; 291825 + version = "0.2.0.0"; 291826 + sha256 = "1h9s6ydazviz4fcmhpsr6srcbkgx2dmx29lhzxjysnmkbvg4gpw9"; 291827 libraryHaskellDepends = [ base ]; 291828 libraryPkgconfigDepends = [ zbar ]; 291829 libraryToolDepends = [ c2hs ]; ··· 291879 license = lib.licenses.mit; 291880 }) {}; 291881 291882 + "zenacy-html_2_0_3" = callPackage 291883 + ({ mkDerivation, base, bytestring, containers, criterion 291884 + , data-default, dlist, extra, HUnit, mtl, pretty-show 291885 + , raw-strings-qq, safe, safe-exceptions, test-framework 291886 + , test-framework-hunit, text, transformers, vector, word8 291887 + }: 291888 + mkDerivation { 291889 + pname = "zenacy-html"; 291890 + version = "2.0.3"; 291891 + sha256 = "1lbgl2g921prcgl0pk5c8mzfy7ssnnrk7d4rz047xhgb3x0381nc"; 291892 + isLibrary = true; 291893 + isExecutable = true; 291894 + libraryHaskellDepends = [ 291895 + base bytestring containers data-default dlist extra mtl pretty-show 291896 + safe safe-exceptions text transformers vector word8 291897 + ]; 291898 + executableHaskellDepends = [ 291899 + base bytestring containers data-default dlist extra pretty-show 291900 + text vector 291901 + ]; 291902 + testHaskellDepends = [ 291903 + base bytestring containers data-default dlist extra HUnit mtl 291904 + pretty-show raw-strings-qq test-framework test-framework-hunit text 291905 + transformers 291906 + ]; 291907 + benchmarkHaskellDepends = [ 291908 + base bytestring containers criterion data-default dlist pretty-show 291909 + raw-strings-qq text 291910 + ]; 291911 + description = "A standard compliant HTML parsing library"; 291912 + license = lib.licenses.mit; 291913 + hydraPlatforms = lib.platforms.none; 291914 + }) {}; 291915 + 291916 "zenacy-unicode" = callPackage 291917 ({ mkDerivation, base, bytestring, HUnit, test-framework 291918 , test-framework-hunit, text, vector, word8 ··· 291927 ]; 291928 description = "Unicode utilities for Haskell"; 291929 license = lib.licenses.mit; 291930 + }) {}; 291931 + 291932 + "zenacy-unicode_1_0_1" = callPackage 291933 + ({ mkDerivation, base, bytestring, HUnit, test-framework 291934 + , test-framework-hunit, text, vector, word8 291935 + }: 291936 + mkDerivation { 291937 + pname = "zenacy-unicode"; 291938 + version = "1.0.1"; 291939 + sha256 = "1l03zr1j6h1h15rnz6mk731g5ib1h3x59b3aqm30i0kd2h28g0vw"; 291940 + libraryHaskellDepends = [ base bytestring vector word8 ]; 291941 + testHaskellDepends = [ 291942 + base bytestring HUnit test-framework test-framework-hunit text 291943 + ]; 291944 + description = "Unicode utilities for Haskell"; 291945 + license = lib.licenses.mit; 291946 + hydraPlatforms = lib.platforms.none; 291947 }) {}; 291948 291949 "zenc" = callPackage ··· 292023 }: 292024 mkDerivation { 292025 pname = "zeolite-lang"; 292026 + version = "0.16.0.0"; 292027 + sha256 = "10sy0s2k20ampqpql6ifpb8y5sdrrc23zpssh0cxs6rp144gcdg4"; 292028 isLibrary = false; 292029 isExecutable = true; 292030 enableSeparateDataOutput = true; ··· 293055 hydraPlatforms = lib.platforms.none; 293056 broken = true; 293057 }) {}; 293058 + 293059 + "zoovisitor" = callPackage 293060 + ({ mkDerivation, base, hspec, Z-Data, Z-IO, zookeeper_mt }: 293061 + mkDerivation { 293062 + pname = "zoovisitor"; 293063 + version = "0.1.1.0"; 293064 + sha256 = "16y2j12zl8arwv2m0crllrrf09l4ar1s2v9wrfzjmxnk80vhncf1"; 293065 + libraryHaskellDepends = [ base Z-Data Z-IO ]; 293066 + librarySystemDepends = [ zookeeper_mt ]; 293067 + testHaskellDepends = [ base hspec ]; 293068 + description = "A haskell binding to Apache Zookeeper C library(mt) using Haskell Z project"; 293069 + license = lib.licenses.bsd3; 293070 + hydraPlatforms = lib.platforms.none; 293071 + broken = true; 293072 + }) {inherit (pkgs) zookeeper_mt;}; 293073 293074 "zot" = callPackage 293075 ({ mkDerivation, base, monads-tf }:
+65
pkgs/development/haskell-modules/patches/gitit-pandoc-2.12.patch
···
··· 1 + commit a03d3b043458f45d29ba32068a77c0d3b8a4223f 2 + Author: sternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org> 3 + Date: Fri Apr 2 15:14:02 2021 +0200 4 + 5 + Allow compilation with pandoc 2.12 and 2.13 6 + 7 + pandoc 2.13 introduced the following breakages for gitit: 8 + 9 + * UTF8.readFile now returns a Text which is actually ideal for gitit. 10 + If pandoc is new enough we just make readFileUTF8 an alias for 11 + UTF8.readFile. 12 + 13 + * Text.Pandoc.Shared no longer exports substitute. In order to be 14 + conservative I've chosen to just copy the substitute function from 15 + pandoc 2.11.4. I need this patch kind of urgently so I didn't want to 16 + make any changes or refactors independently from upstream if 17 + avoidable. However, I'd be happy to rebase this PR branch to adopt a 18 + different solution to just copying the function. 19 + 20 + diff --git a/src/Network/Gitit/Authentication.hs b/src/Network/Gitit/Authentication.hs 21 + index 4c240e7..c0f92fd 100644 22 + --- a/src/Network/Gitit/Authentication.hs 23 + +++ b/src/Network/Gitit/Authentication.hs 24 + @@ -44,7 +44,7 @@ import System.Exit 25 + import System.Log.Logger (logM, Priority(..)) 26 + import Data.Char (isAlphaNum, isAlpha) 27 + import qualified Data.Map as M 28 + -import Text.Pandoc.Shared (substitute) 29 + +import Data.List (stripPrefix) 30 + import Data.Maybe (isJust, fromJust, isNothing, fromMaybe) 31 + import Network.URL (exportURL, add_param, importURL) 32 + import Network.BSD (getHostName) 33 + @@ -54,6 +54,16 @@ import Codec.Binary.UTF8.String (encodeString) 34 + import Data.ByteString.UTF8 (toString) 35 + import Network.Gitit.Rpxnow as R 36 + 37 + +-- | Replace each occurrence of one sublist in a list with another. 38 + +-- Vendored in from pandoc 2.11.4 as 2.12 removed this function. 39 + +substitute :: (Eq a) => [a] -> [a] -> [a] -> [a] 40 + +substitute _ _ [] = [] 41 + +substitute [] _ xs = xs 42 + +substitute target replacement lst@(x:xs) = 43 + + case stripPrefix target lst of 44 + + Just lst' -> replacement ++ substitute target replacement lst' 45 + + Nothing -> x : substitute target replacement xs 46 + + 47 + data ValidationType = Register 48 + | ResetPassword 49 + deriving (Show,Read) 50 + diff --git a/src/Network/Gitit/Util.hs b/src/Network/Gitit/Util.hs 51 + index c5e9fe5..067130a 100644 52 + --- a/src/Network/Gitit/Util.hs 53 + +++ b/src/Network/Gitit/Util.hs 54 + @@ -45,7 +45,11 @@ import Network.URL (encString) 55 + 56 + -- | Read file as UTF-8 string. Encode filename as UTF-8. 57 + readFileUTF8 :: FilePath -> IO Text 58 + +#if MIN_VERSION_pandoc(2,12,0) 59 + +readFileUTF8 = UTF8.readFile 60 + +#else 61 + readFileUTF8 = fmap T.pack . UTF8.readFile 62 + +#endif 63 + 64 + -- | Perform a function a directory and return to working directory. 65 + inDir :: FilePath -> IO a -> IO a
+51 -25
pkgs/development/libraries/libftdi/1.x.nix
··· 1 - { lib, stdenv, fetchurl, cmake, pkg-config, libusb1, libconfuse 2 - , cppSupport ? true, boost ? null 3 - , pythonSupport ? true, python3 ? null, swig ? null 4 - , docSupport ? true, doxygen ? null 5 }: 6 7 - assert cppSupport -> boost != null; 8 - assert pythonSupport -> python3 != null && swig != null; 9 - assert docSupport -> doxygen != null; 10 - 11 stdenv.mkDerivation rec { 12 - name = "libftdi1-1.4"; 13 14 - src = fetchurl { 15 - url = "https://www.intra2net.com/en/developer/libftdi/download/${name}.tar.bz2"; 16 - sha256 = "0x0vncf6i92slgrn0h7ghkskqbglbs534220qa84d0qg114zndpc"; 17 }; 18 19 - nativeBuildInputs = [ cmake pkg-config ]; 20 - buildInputs = with lib; [ libconfuse ] 21 ++ optionals cppSupport [ boost ] 22 - ++ optionals pythonSupport [ python3 swig ] 23 - ++ optionals docSupport [ doxygen ]; 24 25 - preBuild = lib.optionalString docSupport '' 26 - make doc_i 27 - ''; 28 29 propagatedBuildInputs = [ libusb1 ]; 30 31 postInstall = '' 32 mkdir -p "$out/etc/udev/rules.d/" 33 cp ../packages/99-libftdi.rules "$out/etc/udev/rules.d/" 34 cp -r doc/man "$out/share/" 35 - '' + lib.optionalString docSupport '' 36 - mkdir -p "$out/share/libftdi/doc/" 37 - cp -r doc/html "$out/share/libftdi/doc/" 38 ''; 39 40 meta = with lib; { 41 description = "A library to talk to FTDI chips using libusb"; 42 homepage = "https://www.intra2net.com/en/developer/libftdi/"; 43 - license = with licenses; [ lgpl2 gpl2 ]; 44 - platforms = with platforms; linux ++ darwin; 45 - maintainers = [ maintainers.bjornfor ]; 46 }; 47 }
··· 1 + { lib 2 + , stdenv 3 + , fetchgit 4 + , cmake 5 + , pkg-config 6 + , libusb1 7 + , libconfuse 8 + , cppSupport ? true 9 + , boost 10 + , pythonSupport ? true 11 + , python3 12 + , swig 13 + , docSupport ? true 14 + , doxygen 15 + , graphviz 16 }: 17 18 + let 19 + inherit (lib) optionals optionalString; 20 + onOff = a: if a then "ON" else "OFF"; 21 + in 22 stdenv.mkDerivation rec { 23 + pname = "libftdi"; 24 + version = "1.5"; 25 26 + src = fetchgit { 27 + url = "git://developer.intra2net.com/libftdi"; 28 + rev = "v${version}"; 29 + sha256 = "0vipg3y0kbbzjhxky6hfyxy42mpqhvwn1r010zr5givcfp8ghq26"; 30 }; 31 32 + nativeBuildInputs = [ cmake pkg-config ] 33 + ++ optionals docSupport [ doxygen graphviz ] 34 + ++ optionals pythonSupport [ swig ]; 35 + 36 + buildInputs = [ libconfuse ] 37 ++ optionals cppSupport [ boost ] 38 + ++ optionals pythonSupport [ python3 ]; 39 40 + cmakeFlags = [ 41 + "-DFTDIPP=${onOff cppSupport}" 42 + "-DBUILD_TESTS=${onOff cppSupport}" 43 + "-DLINK_PYTHON_LIBRARY=${onOff pythonSupport}" 44 + "-DPYTHON_BINDINGS=${onOff pythonSupport}" 45 + "-DDOCUMENTATION=${onOff docSupport}" 46 + ]; 47 48 propagatedBuildInputs = [ libusb1 ]; 49 50 postInstall = '' 51 mkdir -p "$out/etc/udev/rules.d/" 52 cp ../packages/99-libftdi.rules "$out/etc/udev/rules.d/" 53 + '' + optionalString docSupport '' 54 cp -r doc/man "$out/share/" 55 + cp -r doc/html "$out/share/doc/libftdi1/" 56 + ''; 57 + 58 + postFixup = optionalString cppSupport '' 59 + # This gets misassigned to the C++ version's path for some reason 60 + for fileToFix in $out/{bin/libftdi1-config,lib/pkgconfig/libftdi1.pc}; do 61 + substituteInPlace $fileToFix \ 62 + --replace "$out/include/libftdipp1" "$out/include/libftdi1" 63 + done 64 ''; 65 66 meta = with lib; { 67 description = "A library to talk to FTDI chips using libusb"; 68 homepage = "https://www.intra2net.com/en/developer/libftdi/"; 69 + license = with licenses; [ lgpl2Only gpl2Only ]; 70 + platforms = platforms.all; 71 + maintainers = with maintainers; [ bjornfor ]; 72 }; 73 }
+2 -2
pkgs/development/libraries/pupnp/default.nix
··· 6 7 stdenv.mkDerivation rec { 8 pname = "libupnp"; 9 - version = "1.14.1"; 10 11 outputs = [ "out" "dev" ]; 12 ··· 14 owner = "mrjimenez"; 15 repo = "pupnp"; 16 rev = "release-${version}"; 17 - sha256 = "sha256-QWwgtfgO+7zGW1M5qdfrIilVw6D/A/Er3l2bZ8V35kE="; 18 }; 19 20 nativeBuildInputs = [
··· 6 7 stdenv.mkDerivation rec { 8 pname = "libupnp"; 9 + version = "1.14.2"; 10 11 outputs = [ "out" "dev" ]; 12 ··· 14 owner = "mrjimenez"; 15 repo = "pupnp"; 16 rev = "release-${version}"; 17 + sha256 = "sha256-PVlmAtiozF1dqgXsRXPuDY13TchHdb0UnK6mam4chBE="; 18 }; 19 20 nativeBuildInputs = [
-39
pkgs/development/misc/qmk_firmware/default.nix
··· 1 - { stdenv, fetchFromGitHub 2 - , avrgcc, avrbinutils 3 - , gcc-arm-embedded, gcc-armhf-embedded 4 - , teensy-loader-cli, dfu-programmer, dfu-util }: 5 - 6 - let version = "0.6.144"; 7 - 8 - in stdenv.mkDerivation { 9 - pname = "qmk_firmware"; 10 - inherit version; 11 - src = fetchFromGitHub { 12 - owner = "qmk"; 13 - repo = "qmk_firmware"; 14 - rev = version; 15 - sha256 = "0m71f9w32ksqjkrwhqwhr74q5v3pr38bihjyb9ks0k5id0inhrjn"; 16 - fetchSubmodules = true; 17 - }; 18 - postPatch = '' 19 - substituteInPlace tmk_core/arm_atsam.mk \ 20 - --replace arm-none-eabi arm-none-eabihf 21 - rm keyboards/handwired/frenchdev/rules.mk keyboards/dk60/rules.mk 22 - ''; 23 - buildFlags = [ "all:default" ]; 24 - doCheck = true; 25 - checkTarget = "test:all"; 26 - installPhase = '' 27 - mkdir $out 28 - ''; 29 - NIX_CFLAGS_COMPILE = "-Wno-error"; 30 - nativeBuildInputs = [ 31 - avrgcc 32 - avrbinutils 33 - gcc-arm-embedded 34 - gcc-armhf-embedded 35 - teensy-loader-cli 36 - dfu-programmer 37 - dfu-util 38 - ]; 39 - }
···
+34 -7
pkgs/development/python-modules/aws-adfs/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi 2 - , pytest, pytestrunner, pytestcov, mock, glibcLocales, lxml, botocore 3 - , requests, requests-kerberos, click, configparser, fido2, isPy27 }: 4 5 buildPythonPackage rec { 6 pname = "aws-adfs"; ··· 12 sha256 = "6a78bd31477ea9988166215ae86abcbfe1413bee20373ecdf0dd170b7290db55"; 13 }; 14 15 # Relax version constraint 16 - patchPhase = '' 17 sed -i 's/coverage < 4/coverage/' setup.py 18 ''; 19 ··· 22 23 # Required for python3 tests, along with glibcLocales 24 LC_ALL = "en_US.UTF-8"; 25 - 26 - checkInputs = [ glibcLocales pytest pytestrunner pytestcov mock ]; 27 - propagatedBuildInputs = [ botocore lxml requests requests-kerberos click configparser fido2 ]; 28 29 pythonImportsCheck = [ "aws_adfs" ]; 30
··· 1 + { lib 2 + , botocore 3 + , buildPythonPackage 4 + , click 5 + , configparser 6 + , fetchPypi 7 + , fido2 8 + , glibcLocales 9 + , isPy27 10 + , lxml 11 + , mock 12 + , pyopenssl 13 + , pytestCheckHook 14 + , requests 15 + , requests-kerberos 16 + }: 17 18 buildPythonPackage rec { 19 pname = "aws-adfs"; ··· 25 sha256 = "6a78bd31477ea9988166215ae86abcbfe1413bee20373ecdf0dd170b7290db55"; 26 }; 27 28 + propagatedBuildInputs = [ 29 + botocore 30 + click 31 + configparser 32 + fido2 33 + lxml 34 + pyopenssl 35 + requests 36 + requests-kerberos 37 + ]; 38 + 39 + checkInputs = [ 40 + glibcLocales 41 + mock 42 + pytestCheckHook 43 + ]; 44 + 45 # Relax version constraint 46 + postPatch = '' 47 sed -i 's/coverage < 4/coverage/' setup.py 48 ''; 49 ··· 52 53 # Required for python3 tests, along with glibcLocales 54 LC_ALL = "en_US.UTF-8"; 55 56 pythonImportsCheck = [ "aws_adfs" ]; 57
+9 -16
pkgs/development/python-modules/cirq/default.nix
··· 3 , buildPythonPackage 4 , pythonOlder 5 , fetchFromGitHub 6 - , freezegun 7 , google-api-core 8 , matplotlib 9 , networkx ··· 14 , scipy 15 , sortedcontainers 16 , sympy 17 , typing-extensions 18 # test inputs 19 , pytestCheckHook 20 , pytest-asyncio 21 , pytest-benchmark ··· 27 28 buildPythonPackage rec { 29 pname = "cirq"; 30 - version = "0.9.1"; 31 32 disabled = pythonOlder "3.6"; 33 ··· 35 owner = "quantumlib"; 36 repo = "cirq"; 37 rev = "v${version}"; 38 - sha256 = "0mygvpq7kzga8l1w2jvwv9a2n3akpss45hrx250gdrnqjp6xrw64"; 39 }; 40 41 postPatch = '' 42 substituteInPlace requirements.txt \ 43 - --replace "freezegun~=0.3.15" "freezegun" \ 44 --replace "matplotlib~=3.0" "matplotlib" \ 45 --replace "networkx~=2.4" "networkx" \ 46 --replace "numpy~=1.16" "numpy" \ 47 - --replace "protobuf~=3.12.0" "protobuf" 48 - 49 - # Fix serialize_sympy_constants test by allowing small errors in pi 50 - substituteInPlace cirq/google/arg_func_langs_test.py \ 51 - --replace "'float_value': float(str(np.float32(sympy.pi)))" "'float_value': pytest.approx(float(str(np.float32(sympy.pi))))" 52 ''; 53 54 propagatedBuildInputs = [ 55 - freezegun 56 google-api-core 57 - numpy 58 matplotlib 59 networkx 60 pandas 61 protobuf 62 requests 63 scipy 64 sortedcontainers 65 sympy 66 typing-extensions 67 ]; 68 69 - doCheck = true; 70 # pythonImportsCheck = [ "cirq" "cirq.Circuit" ]; # cirq's importlib hook doesn't work here 71 - dontUseSetuptoolsCheck = true; 72 checkInputs = [ 73 pytestCheckHook 74 pytest-asyncio 75 pytest-benchmark 76 ply ··· 84 "--ignore=cirq/contrib/" # requires external (unpackaged) python packages, so untested. 85 "--benchmark-disable" # Don't need to run benchmarks when packaging. 86 ]; 87 - disabledTests = [ 88 - "test_convert_to_ion_gates" # fails on some systems due to rounding error, 0.75 != 0.750...2 89 - ] ++ lib.optionals stdenv.isAarch64 [ 90 # Seem to fail due to math issues on aarch64? 91 "expectation_from_wavefunction" 92 "test_single_qubit_op_to_framed_phase_form_output_on_example_case"
··· 3 , buildPythonPackage 4 , pythonOlder 5 , fetchFromGitHub 6 , google-api-core 7 , matplotlib 8 , networkx ··· 13 , scipy 14 , sortedcontainers 15 , sympy 16 + , tqdm 17 , typing-extensions 18 # test inputs 19 + , freezegun 20 , pytestCheckHook 21 , pytest-asyncio 22 , pytest-benchmark ··· 28 29 buildPythonPackage rec { 30 pname = "cirq"; 31 + version = "0.10.0"; 32 33 disabled = pythonOlder "3.6"; 34 ··· 36 owner = "quantumlib"; 37 repo = "cirq"; 38 rev = "v${version}"; 39 + sha256 = "0xinml44n2lfl0q2lb2apmn69gsszlwim83082f66vyk0gpwd4lr"; 40 }; 41 42 postPatch = '' 43 substituteInPlace requirements.txt \ 44 --replace "matplotlib~=3.0" "matplotlib" \ 45 --replace "networkx~=2.4" "networkx" \ 46 --replace "numpy~=1.16" "numpy" \ 47 + --replace "protobuf~=3.13.0" "protobuf" 48 ''; 49 50 propagatedBuildInputs = [ 51 google-api-core 52 matplotlib 53 networkx 54 + numpy 55 pandas 56 protobuf 57 requests 58 scipy 59 sortedcontainers 60 sympy 61 + tqdm 62 typing-extensions 63 ]; 64 65 # pythonImportsCheck = [ "cirq" "cirq.Circuit" ]; # cirq's importlib hook doesn't work here 66 checkInputs = [ 67 pytestCheckHook 68 + freezegun 69 pytest-asyncio 70 pytest-benchmark 71 ply ··· 79 "--ignore=cirq/contrib/" # requires external (unpackaged) python packages, so untested. 80 "--benchmark-disable" # Don't need to run benchmarks when packaging. 81 ]; 82 + disabledTests = lib.optionals stdenv.isAarch64 [ 83 # Seem to fail due to math issues on aarch64? 84 "expectation_from_wavefunction" 85 "test_single_qubit_op_to_framed_phase_form_output_on_example_case"
+2
pkgs/development/python-modules/docloud/default.nix
··· 2 , buildPythonPackage 3 , fetchPypi 4 , requests 5 }: 6 7 buildPythonPackage rec { ··· 15 16 propagatedBuildInputs = [ 17 requests 18 ]; 19 20 # Pypi's tarball doesn't contain tests. Source not available.
··· 2 , buildPythonPackage 3 , fetchPypi 4 , requests 5 + , six 6 }: 7 8 buildPythonPackage rec { ··· 16 17 propagatedBuildInputs = [ 18 requests 19 + six 20 ]; 21 22 # Pypi's tarball doesn't contain tests. Source not available.
+48 -4
pkgs/development/python-modules/flask-limiter/default.nix
··· 1 - { lib, fetchPypi, buildPythonPackage, flask, limits }: 2 3 buildPythonPackage rec { 4 pname = "Flask-Limiter"; 5 version = "1.4"; 6 7 - src = fetchPypi { 8 - inherit pname version; 9 - sha256 = "021279c905a1e24f181377ab3be711be7541734b494f4e6db2b8edeba7601e48"; 10 }; 11 12 propagatedBuildInputs = [ flask limits ]; 13 14 meta = with lib; { 15 description = "Rate limiting for flask applications";
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , flask 5 + , flask-restful 6 + , hiro 7 + , limits 8 + , mock 9 + , ordereddict 10 + , pymemcache 11 + , pytestCheckHook 12 + , redis 13 + }: 14 15 buildPythonPackage rec { 16 pname = "Flask-Limiter"; 17 version = "1.4"; 18 19 + src = fetchFromGitHub { 20 + owner = "alisaifee"; 21 + repo = "flask-limiter"; 22 + rev = version; 23 + sha256 = "1k1b4b3s1acphqnar0y5g747bh1y7w35gcl5g819idq2a5vqnass"; 24 }; 25 26 propagatedBuildInputs = [ flask limits ]; 27 + 28 + checkInputs = [ 29 + pytestCheckHook 30 + hiro 31 + mock 32 + redis 33 + flask-restful 34 + pymemcache 35 + ordereddict 36 + ]; 37 + 38 + postPatch = '' 39 + sed -i "/--cov/d" pytest.ini 40 + ''; 41 + 42 + # Some tests requires a local Redis instance 43 + disabledTests = [ 44 + "test_fallback_to_memory" 45 + "test_reset_unsupported" 46 + "test_constructor_arguments_over_config" 47 + "test_fallback_to_memory_config" 48 + "test_fallback_to_memory_backoff_check" 49 + "test_fallback_to_memory_with_global_override" 50 + "test_custom_key_prefix" 51 + "test_redis_request_slower_than_fixed_window" 52 + "test_redis_request_slower_than_moving_window" 53 + "test_custom_key_prefix_with_headers" 54 + ]; 55 + 56 + pythonImportsCheck = [ "flask_limiter" ]; 57 58 meta = with lib; { 59 description = "Rate limiting for flask applications";
+42 -12
pkgs/development/python-modules/gradient/default.nix
··· 1 - { lib, fetchPypi, buildPythonPackage 2 - , attrs, boto3, requests, gradient_statsd, terminaltables 3 - , click-completion , click-didyoumean, click-help-colors 4 - , colorama, requests_toolbelt, gradient-utils, halo, progressbar2 5 - , marshmallow, pyyaml, websocket_client 6 }: 7 8 buildPythonPackage rec { ··· 21 --replace 'PyYAML==' 'PyYAML>=' \ 22 --replace 'marshmallow<' 'marshmallow>=' \ 23 --replace 'websocket-client==' 'websocket-client>=' 24 - ''; 25 26 - propagatedBuildInputs = [ attrs boto3 requests gradient_statsd terminaltables 27 - click-completion click-didyoumean click-help-colors requests_toolbelt 28 - colorama gradient-utils halo marshmallow progressbar2 pyyaml websocket_client 29 ]; 30 31 # tries to use /homeless-shelter to mimic container usage, etc ··· 33 34 meta = with lib; { 35 description = "The command line interface for Gradient"; 36 - homepage = "https://github.com/Paperspace/gradient-cli"; 37 - license = licenses.isc; 38 - platforms = platforms.unix; 39 maintainers = with maintainers; [ thoughtpolice ]; 40 }; 41 }
··· 1 + { lib 2 + , attrs 3 + , boto3 4 + , buildPythonPackage 5 + , click-completion 6 + , click-didyoumean 7 + , click-help-colors 8 + , colorama 9 + , fetchPypi 10 + , gradient_statsd 11 + , gradient-utils 12 + , halo 13 + , marshmallow 14 + , progressbar2 15 + , pyopenssl 16 + , pyyaml 17 + , requests 18 + , requests_toolbelt 19 + , terminaltables 20 + , websocket_client 21 }: 22 23 buildPythonPackage rec { ··· 36 --replace 'PyYAML==' 'PyYAML>=' \ 37 --replace 'marshmallow<' 'marshmallow>=' \ 38 --replace 'websocket-client==' 'websocket-client>=' 39 + ''; 40 41 + propagatedBuildInputs = [ 42 + attrs 43 + boto3 44 + click-completion 45 + click-didyoumean 46 + click-help-colors 47 + colorama 48 + gradient_statsd 49 + gradient-utils 50 + halo 51 + marshmallow 52 + progressbar2 53 + pyopenssl 54 + pyyaml 55 + requests 56 + requests_toolbelt 57 + terminaltables 58 + websocket_client 59 ]; 60 61 # tries to use /homeless-shelter to mimic container usage, etc ··· 63 64 meta = with lib; { 65 description = "The command line interface for Gradient"; 66 + homepage = "https://github.com/Paperspace/gradient-cli"; 67 + license = licenses.isc; 68 + platforms = platforms.unix; 69 maintainers = with maintainers; [ thoughtpolice ]; 70 }; 71 }
+13 -8
pkgs/development/python-modules/ntlm-auth/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 , mock 5 - , pytest 6 , requests 7 - , unittest2 8 , six 9 }: 10 ··· 19 sha256 = "00dpf5bfsy07frsjihv1k10zmwcyq4bvkilbxha7h6nlwpcm2409"; 20 }; 21 22 - checkInputs = [ mock pytest requests unittest2 ]; 23 - propagatedBuildInputs = [ six ]; 24 25 - # Functional tests require networking 26 - checkPhase = '' 27 - py.test --ignore=tests/functional/test_iis.py 28 - ''; 29 30 meta = with lib; { 31 description = "Calculates NTLM Authentication codes";
··· 1 { lib 2 , buildPythonPackage 3 + , cryptography 4 , fetchFromGitHub 5 , mock 6 + , pytestCheckHook 7 , requests 8 , six 9 }: 10 ··· 19 sha256 = "00dpf5bfsy07frsjihv1k10zmwcyq4bvkilbxha7h6nlwpcm2409"; 20 }; 21 22 + propagatedBuildInputs = [ 23 + cryptography 24 + six 25 + ]; 26 + 27 + checkInputs = [ 28 + mock 29 + pytestCheckHook 30 + requests 31 + ]; 32 33 + pythonImportsCheck = [ "ntlm_auth" ]; 34 35 meta = with lib; { 36 description = "Calculates NTLM Authentication codes";
+43
pkgs/development/python-modules/pymemcache/default.nix
···
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , future 5 + , mock 6 + , pytestCheckHook 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "pymemcache"; 11 + version = "3.4.0"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "pinterest"; 15 + repo = pname; 16 + rev = "v${version}"; 17 + sha256 = "0xkw76y4059jg2a902wlpk6psyh2g4x6j6vlj9gzd5vqb7ihg2y7"; 18 + }; 19 + 20 + checkInputs = [ 21 + future 22 + mock 23 + pytestCheckHook 24 + ]; 25 + 26 + postPatch = '' 27 + sed -i "/--cov/d" setup.cfg 28 + ''; 29 + 30 + disabledTests = [ 31 + # python-memcached is not available (last release in 2017) 32 + "TestClientSocketConnect" 33 + ]; 34 + 35 + pythonImportsCheck = [ "pymemcache" ]; 36 + 37 + meta = with lib; { 38 + description = "Python memcached client"; 39 + homepage = "https://pymemcache.readthedocs.io/"; 40 + license = with licenses; [ asl20 ]; 41 + maintainers = with maintainers; [ fab ]; 42 + }; 43 + }
+4 -4
pkgs/development/python-modules/pystray/default.nix
··· 3 4 buildPythonPackage rec { 5 pname = "pystray"; 6 - version = "0.17.2"; 7 8 src = fetchFromGitHub { 9 owner = "moses-palmer"; 10 repo = "pystray"; 11 rev = "v${version}"; 12 - sha256 = "sha256-/dU+jwe/3qhypq7e5tawhJKzSryW7EIbmrpP+VLDvHA="; 13 }; 14 15 - propagatedBuildInputs = [ pillow xlib six ]; 16 nativeBuildInputs = [ sphinx ]; 17 checkInputs = [ xvfb_run ]; 18 19 checkPhase = '' ··· 25 meta = with lib; { 26 homepage = "https://github.com/moses-palmer/pystray"; 27 description = "This library allows you to create a system tray icon"; 28 - license = licenses.lgpl3; 29 platforms = platforms.linux; 30 maintainers = with maintainers; [ jojosch ]; 31 };
··· 3 4 buildPythonPackage rec { 5 pname = "pystray"; 6 + version = "0.17.3"; 7 8 src = fetchFromGitHub { 9 owner = "moses-palmer"; 10 repo = "pystray"; 11 rev = "v${version}"; 12 + sha256 = "sha256-da2ZkehyXrxW5LdMR3K5AEQhiCpx8ygn6eswTC8fsRo="; 13 }; 14 15 nativeBuildInputs = [ sphinx ]; 16 + propagatedBuildInputs = [ pillow xlib six ]; 17 checkInputs = [ xvfb_run ]; 18 19 checkPhase = '' ··· 25 meta = with lib; { 26 homepage = "https://github.com/moses-palmer/pystray"; 27 description = "This library allows you to create a system tray icon"; 28 + license = with licenses; [ gpl3Only lgpl3Only ]; 29 platforms = platforms.linux; 30 maintainers = with maintainers; [ jojosch ]; 31 };
+4 -4
pkgs/development/python-modules/python-awair/default.nix
··· 2 , aiohttp 3 , buildPythonPackage 4 , fetchFromGitHub 5 - , poetry 6 , pytest-aiohttp 7 , pytestCheckHook 8 , pythonOlder ··· 12 13 buildPythonPackage rec { 14 pname = "python-awair"; 15 - version = "0.2.1"; 16 format = "pyproject"; 17 disabled = pythonOlder "3.6"; 18 ··· 20 owner = "ahayworth"; 21 repo = "python_awair"; 22 rev = version; 23 - sha256 = "1fqjigc1a0lr9q6bjjq3j8pa39wg1cbkb0l67w94a0i4dkdfri8r"; 24 }; 25 26 - nativeBuildInputs = [ poetry ]; 27 28 propagatedBuildInputs = [ 29 aiohttp
··· 2 , aiohttp 3 , buildPythonPackage 4 , fetchFromGitHub 5 + , poetry-core 6 , pytest-aiohttp 7 , pytestCheckHook 8 , pythonOlder ··· 12 13 buildPythonPackage rec { 14 pname = "python-awair"; 15 + version = "0.2.2"; 16 format = "pyproject"; 17 disabled = pythonOlder "3.6"; 18 ··· 20 owner = "ahayworth"; 21 repo = "python_awair"; 22 rev = version; 23 + sha256 = "sha256-5+s1aSvt+rXyumvf/qZ58Uvmq0p45mu23Djbwgih3qI="; 24 }; 25 26 + nativeBuildInputs = [ poetry-core ]; 27 28 propagatedBuildInputs = [ 29 aiohttp
+24 -6
pkgs/development/python-modules/requests-kerberos/default.nix
··· 1 - { lib, fetchFromGitHub, buildPythonPackage, requests, pykerberos, mock }: 2 3 buildPythonPackage rec { 4 pname = "requests-kerberos"; ··· 12 sha256 = "1qw96aw84nljh9cip372mfv50p1yyirfgigavvavgpc3c5g278s6"; 13 }; 14 15 - checkInputs = [ mock ]; 16 - propagatedBuildInputs = [ requests pykerberos ]; 17 18 # they have a setup.py which mentions a test suite that doesn't exist... 19 patches = [ ./fix_setup.patch ]; 20 21 meta = with lib; { 22 - description = "An authentication handler for using Kerberos with Python Requests."; 23 - homepage = "https://github.com/requests/requests-kerberos"; 24 - license = licenses.isc; 25 maintainers = with maintainers; [ catern ]; 26 }; 27 }
··· 1 + { lib 2 + , fetchFromGitHub 3 + , buildPythonPackage 4 + , cryptography 5 + , requests 6 + , pykerberos 7 + , pytestCheckHook 8 + , mock 9 + }: 10 11 buildPythonPackage rec { 12 pname = "requests-kerberos"; ··· 20 sha256 = "1qw96aw84nljh9cip372mfv50p1yyirfgigavvavgpc3c5g278s6"; 21 }; 22 23 + propagatedBuildInputs = [ 24 + cryptography 25 + requests 26 + pykerberos 27 + ]; 28 + 29 + checkInputs = [ 30 + mock 31 + pytestCheckHook 32 + ]; 33 34 # they have a setup.py which mentions a test suite that doesn't exist... 35 patches = [ ./fix_setup.patch ]; 36 37 + pythonImportsCheck = [ "requests_kerberos" ]; 38 + 39 meta = with lib; { 40 + description = "An authentication handler for using Kerberos with Python Requests"; 41 + homepage = "https://github.com/requests/requests-kerberos"; 42 + license = licenses.isc; 43 maintainers = with maintainers; [ catern ]; 44 }; 45 }
+2 -2
pkgs/development/python-modules/uranium/default.nix
··· 1 { lib, buildPythonPackage, fetchFromGitHub, python, cmake 2 - , pyqt5, numpy, scipy, shapely, libarcus, doxygen, gettext, pythonOlder }: 3 4 buildPythonPackage rec { 5 version = "4.7.1"; ··· 16 disabled = pythonOlder "3.5.0"; 17 18 buildInputs = [ python gettext ]; 19 - propagatedBuildInputs = [ pyqt5 numpy scipy shapely libarcus ]; 20 nativeBuildInputs = [ cmake doxygen ]; 21 22 postPatch = ''
··· 1 { lib, buildPythonPackage, fetchFromGitHub, python, cmake 2 + , pyqt5, numpy, scipy, shapely, libarcus, cryptography, doxygen, gettext, pythonOlder }: 3 4 buildPythonPackage rec { 5 version = "4.7.1"; ··· 16 disabled = pythonOlder "3.5.0"; 17 18 buildInputs = [ python gettext ]; 19 + propagatedBuildInputs = [ pyqt5 numpy scipy shapely libarcus cryptography ]; 20 nativeBuildInputs = [ cmake doxygen ]; 21 22 postPatch = ''
+3 -3
pkgs/development/ruby-modules/gem-config/default.nix
··· 211 ''; 212 }; 213 214 - pg_query = attrs: lib.optionalAttrs (attrs.version == "2.0.1") { 215 dontBuild = false; 216 postPatch = '' 217 sed -i "s;'https://codeload.github.com.*';'${fetchurl { 218 - url = "https://codeload.github.com/lfittl/libpg_query/tar.gz/13-2.0.0"; 219 - sha256 = "0ghk0dlmrn634p3zjr41fy4ipgw8i44f67a4l8cspqg0395m3rp5"; 220 }}';" ext/pg_query/extconf.rb 221 ''; 222 } // lib.optionalAttrs (attrs.version == "1.3.0") {
··· 211 ''; 212 }; 213 214 + pg_query = attrs: lib.optionalAttrs (attrs.version == "2.0.2") { 215 dontBuild = false; 216 postPatch = '' 217 sed -i "s;'https://codeload.github.com.*';'${fetchurl { 218 + url = "https://codeload.github.com/lfittl/libpg_query/tar.gz/13-2.0.2"; 219 + sha256 = "0ms2s6hmy8qyzv4g1hj4i2p5fws1v8lrj73b2knwbp2ipd45yj7y"; 220 }}';" ext/pg_query/extconf.rb 221 ''; 222 } // lib.optionalAttrs (attrs.version == "1.3.0") {
+5 -7
pkgs/development/tools/dapr/cli/default.nix
··· 1 { buildGoModule, fetchFromGitHub, lib }: 2 3 - let 4 pname = "dapr"; 5 - version = "0.9.0"; 6 - sha256 = "1vdbh5pg3j7kqqqhhf4d9xfzbpqmjc4x373sk43pb05prg4w71s7"; 7 - vendorSha256 = "19qcpd5i60xmsr8m8mx16imm5falkqcgqpwpx3clfvqxjyflglpp"; 8 - in buildGoModule { 9 - inherit pname version vendorSha256; 10 11 src = fetchFromGitHub { 12 - inherit sha256; 13 14 owner = "dapr"; 15 repo = "cli";
··· 1 { buildGoModule, fetchFromGitHub, lib }: 2 3 + buildGoModule rec { 4 pname = "dapr"; 5 + version = "1.0.1"; 6 + 7 + vendorSha256 = "13fb6fdjqrsl74569nh2l7x9w7w61bcvkksj410s2f85bicc29rf"; 8 9 src = fetchFromGitHub { 10 + sha256 = "15zz212sm83l6l7npislixxn23fg190b44bfxnrjrlyjbz370kch"; 11 12 owner = "dapr"; 13 repo = "cli";
+9 -1
pkgs/development/tools/misc/blackmagic/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub 2 , gcc-arm-embedded, libftdi1, libusb-compat-0_1, pkg-config 3 , python3 4 }: ··· 18 sha256 = "18w8y64fs7wfdypa4vm3migk5w095z8nbd8qp795f322mf2bz281"; 19 fetchSubmodules = true; 20 }; 21 22 nativeBuildInputs = [ 23 gcc-arm-embedded pkg-config
··· 1 + { stdenv, lib, fetchFromGitHub, fetchpatch 2 , gcc-arm-embedded, libftdi1, libusb-compat-0_1, pkg-config 3 , python3 4 }: ··· 18 sha256 = "18w8y64fs7wfdypa4vm3migk5w095z8nbd8qp795f322mf2bz281"; 19 fetchSubmodules = true; 20 }; 21 + 22 + patches = [ 23 + # Fix deprecation warning with libftdi 1.5 24 + (fetchpatch { 25 + url = "https://github.com/blacksphere/blackmagic/commit/dea4be2539c5ea63836ec78dca08b52fa8b26ab5.patch"; 26 + sha256 = "0f81simij1wdhifsxaavalc6yxzagfbgwry969dbjmxqzvrsrds5"; 27 + }) 28 + ]; 29 30 nativeBuildInputs = [ 31 gcc-arm-embedded pkg-config
+2 -2
pkgs/development/tools/omnisharp-roslyn/default.nix
··· 10 stdenv.mkDerivation rec { 11 12 pname = "omnisharp-roslyn"; 13 - version = "1.37.4"; 14 15 src = fetchurl { 16 url = "https://github.com/OmniSharp/omnisharp-roslyn/releases/download/v${version}/omnisharp-mono.tar.gz"; 17 - sha256 = "0pknphydf194n7rjyax4mh8n7j8679j0jflw63gfgh37daxry0r2"; 18 }; 19 20 nativeBuildInputs = [ makeWrapper dotnet-sdk dotnetPackages.Nuget ];
··· 10 stdenv.mkDerivation rec { 11 12 pname = "omnisharp-roslyn"; 13 + version = "1.37.8"; 14 15 src = fetchurl { 16 url = "https://github.com/OmniSharp/omnisharp-roslyn/releases/download/v${version}/omnisharp-mono.tar.gz"; 17 + sha256 = "0kgv4l15rli9a7grmcsbv72csmxi7vqa7lrrr8bd4cq9ighh54q3"; 18 }; 19 20 nativeBuildInputs = [ makeWrapper dotnet-sdk dotnetPackages.Nuget ];
+4 -4
pkgs/development/tools/rust/cargo-c/default.nix
··· 5 6 rustPlatform.buildRustPackage rec { 7 pname = "cargo-c"; 8 - version = "0.7.3"; 9 10 src = stdenv.mkDerivation rec { 11 name = "${pname}-source-${version}"; ··· 14 owner = "lu-zero"; 15 repo = pname; 16 rev = "v${version}"; 17 - sha256 = "0df87kx8dfq2fvz00k6advwg2iw9djkflhrbsjw0xhac78623c56"; 18 }; 19 cargoLock = fetchurl { 20 url = "https://github.com/lu-zero/${pname}/releases/download/v${version}/Cargo.lock"; 21 - sha256 = "18l54jf9q5xb908bwyyil1sblxxa9mkrgr33gm0r6nxicw6kf8in"; 22 }; 23 24 installPhase = '' ··· 28 ''; 29 }; 30 31 - cargoSha256 = "0z7sjfnnmld5bijn14c7v7arh0vzqmbkjk7bf9ky67acq2r2cv2f"; 32 33 nativeBuildInputs = [ pkg-config ]; 34 buildInputs = [ openssl ]
··· 5 6 rustPlatform.buildRustPackage rec { 7 pname = "cargo-c"; 8 + version = "0.8.0"; 9 10 src = stdenv.mkDerivation rec { 11 name = "${pname}-source-${version}"; ··· 14 owner = "lu-zero"; 15 repo = pname; 16 rev = "v${version}"; 17 + sha256 = "1rvbikhbqsfa2sh79kapqg4yz19r1yhqfykl6cf4yjg6vawkwfw1"; 18 }; 19 cargoLock = fetchurl { 20 url = "https://github.com/lu-zero/${pname}/releases/download/v${version}/Cargo.lock"; 21 + sha256 = "17cdac8ym59jwjxs3k4isazknhrlr6lw0j0r76n5xf0dd7apfgcs"; 22 }; 23 24 installPhase = '' ··· 28 ''; 29 }; 30 31 + cargoSha256 = "1rmhg9xhljgd5yq3xs0fzw1b0bgz7jfpf5mr2gviwqahl5vxvfiq"; 32 33 nativeBuildInputs = [ pkg-config ]; 34 buildInputs = [ openssl ]
+1 -1
pkgs/development/tools/sqlint/Gemfile.lock
··· 2 remote: https://rubygems.org/ 3 specs: 4 google-protobuf (3.15.6) 5 - pg_query (2.0.1) 6 google-protobuf (~> 3.15.5) 7 sqlint (0.2.0) 8 pg_query (~> 2)
··· 2 remote: https://rubygems.org/ 3 specs: 4 google-protobuf (3.15.6) 5 + pg_query (2.0.2) 6 google-protobuf (~> 3.15.5) 7 sqlint (0.2.0) 8 pg_query (~> 2)
+1 -1
pkgs/development/tools/sqlint/default.nix
··· 13 homepage = "https://github.com/purcell/sqlint"; 14 license = licenses.mit; 15 maintainers = with maintainers; [ ariutta nicknovitski purcell ]; 16 - platforms = with platforms; [ "x86_64-linux" "x86_64-darwin" ]; 17 }; 18 }
··· 13 homepage = "https://github.com/purcell/sqlint"; 14 license = licenses.mit; 15 maintainers = with maintainers; [ ariutta nicknovitski purcell ]; 16 + platforms = platforms.unix; 17 }; 18 }
+2 -2
pkgs/development/tools/sqlint/gemset.nix
··· 15 platforms = []; 16 source = { 17 remotes = ["https://rubygems.org"]; 18 - sha256 = "01a8asbgkr7f1gp50ikzr1zzmvwv50da389943hrrqzxwd202268"; 19 type = "gem"; 20 }; 21 - version = "2.0.1"; 22 }; 23 sqlint = { 24 dependencies = ["pg_query"];
··· 15 platforms = []; 16 source = { 17 remotes = ["https://rubygems.org"]; 18 + sha256 = "0bvn0swyzzhl9x8hlgaz7m7s1jqmpdi2c4klarix0hiyapy2il9y"; 19 type = "gem"; 20 }; 21 + version = "2.0.2"; 22 }; 23 sqlint = { 24 dependencies = ["pg_query"];
+53
pkgs/misc/cups/drivers/cups-drv-rastertosag-gdi/default.nix
···
··· 1 + { lib 2 + , fetchzip 3 + , fetchpatch 4 + , cups 5 + , python3Packages 6 + }: 7 + 8 + python3Packages.buildPythonApplication rec { 9 + pname = "rastertosag-gdi"; 10 + version = "0.1"; 11 + src = fetchzip { 12 + url = "https://www.openprinting.org/download/printing/${pname}/${pname}-${version}.tar.gz"; 13 + sha256 = "1ldplpv497j8vhw24sksg3fiw8c5pqr0wajajh7p5xpvb6zlcmvw"; 14 + }; 15 + patches = [ 16 + # port to python 3 17 + ( fetchpatch { 18 + url = "https://sources.debian.org/data/main/r/${pname}/0.1-7/debian/patches/0001-${pname}-python3.patch"; 19 + sha256 = "1l3xbrs67025595k9ba5794q3s74anizpbxwsshcfhmbrzd9h8hg"; 20 + }) 21 + ]; 22 + format = "other"; 23 + nativeBuildInputs = [ (lib.getBin cups) ]; 24 + # The source image also brings pre-built ppd files, 25 + # be we prefer to generate from source where possible, so 26 + # the following line generates ppd files from the drv file. 27 + postBuild = '' 28 + ppdc -v -d . -I "${cups}/share/cups/ppdc" rastertosag-gdi.drv 29 + ''; 30 + installPhase = '' 31 + runHook preInstall 32 + install -vDm 0644 -t "${placeholder "out"}/share/cups/model/rastertosag-gdi/" *.ppd 33 + install -vDm 0755 -t "${placeholder "out"}/bin/" rastertosag-gdi 34 + install -vd "${placeholder "out"}/lib/cups/filter/" 35 + ln -vst "${placeholder "out"}/lib/cups/filter/" "${placeholder "out"}/bin/rastertosag-gdi" 36 + runHook postInstall 37 + ''; 38 + meta = { 39 + description = "CUPS driver for Ricoh Aficio SP 1000S and SP 1100S printers"; 40 + downloadPage = "https://www.openprinting.org/download/printing/rastertosag-gdi/"; 41 + homepage = "https://www.openprinting.org/driver/rastertosag-gdi/"; 42 + license = lib.licenses.free; # just "GPL", according to README 43 + maintainers = [ lib.maintainers.yarny ]; 44 + longDescription = '' 45 + This package brings CUPS raster filter 46 + for Ricoh Aficio SP 1000S and SP 1100S. 47 + In contrast to other Ricoh laser printers, 48 + they use the proprietary SAG-GDI raster format by 49 + Sagem Communication and do not understand PCL or PostScript. 50 + Therefore they do not work with Ricoh's PPD files. 51 + ''; 52 + }; 53 + }
+6 -3
pkgs/misc/emulators/ruffle/default.nix
··· 13 14 rustPlatform.buildRustPackage rec { 15 pname = "ruffle"; 16 - version = "nightly-2021-01-12"; 17 18 src = fetchFromGitHub { 19 owner = "ruffle-rs"; 20 repo = pname; 21 rev = version; 22 - sha256 = "1lywxn61w0b3pb8vjpavd9f3v58gq35ypwp41b7rjkc4rjxmf3cd"; 23 }; 24 25 nativeBuildInputs = [ ··· 42 ]; 43 44 postInstall = '' 45 wrapProgram $out/bin/ruffle_desktop --prefix LD_LIBRARY_PATH ':' ${vulkan-loader}/lib 46 ''; 47 48 - cargoSha256 = "113gh8nf2fs9shfvnzpwlc7zaq1l9l9jhlybcc4dq0wr4r8qpff5"; 49 50 meta = with lib; { 51 description = "An Adobe Flash Player emulator written in the Rust programming language.";
··· 13 14 rustPlatform.buildRustPackage rec { 15 pname = "ruffle"; 16 + version = "nightly-2021-04-02"; 17 18 src = fetchFromGitHub { 19 owner = "ruffle-rs"; 20 repo = pname; 21 rev = version; 22 + sha256 = "1diz94y53hvii28894zz65aya12v8yw1864lqpkrdbj67yc6ykdj"; 23 }; 24 25 nativeBuildInputs = [ ··· 42 ]; 43 44 postInstall = '' 45 + # This name is too generic 46 + mv $out/bin/exporter $out/bin/ruffle_exporter 47 + 48 wrapProgram $out/bin/ruffle_desktop --prefix LD_LIBRARY_PATH ':' ${vulkan-loader}/lib 49 ''; 50 51 + cargoSha256 = "0pnp5kmij4dwwvmgdv81mqcawcjcgg5gd6cpyf0xalyfjgj8i732"; 52 53 meta = with lib; { 54 description = "An Adobe Flash Player emulator written in the Rust programming language.";
+44
pkgs/os-specific/darwin/mas/default.nix
···
··· 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , libarchive 5 + , p7zip 6 + }: 7 + 8 + stdenv.mkDerivation rec { 9 + pname = "mas"; 10 + version = "1.8.1"; 11 + 12 + src = fetchurl { 13 + url = "https://github.com/mas-cli/mas/releases/download/v${version}/mas.pkg"; 14 + sha256 = "W/wgg+ETeJPoZ7MoVGH2uJzQiZMLIy3n1JYKUloc3ZU="; 15 + }; 16 + 17 + nativeBuildInputs = [ libarchive p7zip ]; 18 + 19 + unpackPhase = '' 20 + 7z x $src 21 + bsdtar -xf Payload~ 22 + ''; 23 + 24 + doBuild = false; 25 + 26 + installPhase = '' 27 + mkdir -p $out 28 + cp -r ./bin $out 29 + cp -r ./Frameworks $out 30 + ''; 31 + 32 + postFixup = '' 33 + install_name_tool -change @rpath/MasKit.framework/Versions/A/MasKit $out/Frameworks/MasKit.framework/Versions/A/MasKit $out/bin/mas 34 + install_name_tool -change @rpath/Commandant.framework/Commandant $out/Frameworks/MasKit.framework/Versions/A/Frameworks/Commandant.framework/Versions/A/Commandant $out/bin/mas 35 + ''; 36 + 37 + meta = with lib; { 38 + description = "Mac App Store command line interface"; 39 + homepage = "https://github.com/mas-cli/mas"; 40 + license = licenses.mit; 41 + maintainers = with maintainers; [ zachcoyle ]; 42 + platforms = platforms.darwin; 43 + }; 44 + }
+3 -3
pkgs/os-specific/linux/bpftrace/default.nix
··· 6 7 stdenv.mkDerivation rec { 8 pname = "bpftrace"; 9 - version = "0.11.4"; 10 11 src = fetchFromGitHub { 12 owner = "iovisor"; 13 repo = "bpftrace"; 14 - rev = "refs/tags/v${version}"; 15 - sha256 = "0y4qgm2cpccrsm20rnh92hqplddqsc5q5zhw9nqn2igm3h9i0z7h"; 16 }; 17 18 buildInputs = with llvmPackages;
··· 6 7 stdenv.mkDerivation rec { 8 pname = "bpftrace"; 9 + version = "0.12.0"; 10 11 src = fetchFromGitHub { 12 owner = "iovisor"; 13 repo = "bpftrace"; 14 + rev = "v${version}"; 15 + sha256 = "0njbixkrpdl9gjnkzg0ybmqsva0ydfda5vms66v8ij7xida2qy07"; 16 }; 17 18 buildInputs = with llvmPackages;
+2 -2
pkgs/servers/dns/bind/default.nix
··· 10 11 stdenv.mkDerivation rec { 12 pname = "bind"; 13 - version = "9.16.12"; 14 15 src = fetchurl { 16 url = "https://downloads.isc.org/isc/bind9/${version}/${pname}-${version}.tar.xz"; 17 - sha256 = "sha256-mRSvkxH9NJyrRBCXiY2U+yjQv9m/btBP4fl/BCZE2n8="; 18 }; 19 20 outputs = [ "out" "lib" "dev" "man" "dnsutils" "host" ];
··· 10 11 stdenv.mkDerivation rec { 12 pname = "bind"; 13 + version = "9.16.13"; 14 15 src = fetchurl { 16 url = "https://downloads.isc.org/isc/bind9/${version}/${pname}-${version}.tar.xz"; 17 + sha256 = "sha256-pUzHk/pbabNfYQ8glXYPgjjf9c/VJBn37hycIn2kzAg="; 18 }; 19 20 outputs = [ "out" "lib" "dev" "man" "dnsutils" "host" ];
+2 -2
pkgs/servers/tegola/default.nix
··· 2 3 buildGoPackage rec { 4 pname = "tegola"; 5 - version = "0.12.1"; 6 7 goPackagePath = "github.com/go-spatial/tegola"; 8 ··· 10 owner = "go-spatial"; 11 repo = pname; 12 rev = "v${version}"; 13 - sha256 = "0x8wv9xx0dafn55y0i7x43plg1blnslzj0l5047laipw7gnmfwad"; 14 }; 15 16 buildFlagsArray = [ "-ldflags=-s -w -X ${goPackagePath}/cmd/tegola/cmd.Version=${version}" ];
··· 2 3 buildGoPackage rec { 4 pname = "tegola"; 5 + version = "0.13.0"; 6 7 goPackagePath = "github.com/go-spatial/tegola"; 8 ··· 10 owner = "go-spatial"; 11 repo = pname; 12 rev = "v${version}"; 13 + sha256 = "sha256-NA2KwyhLLIusf6a6v+OcmHz91kPcIhvG9PRmRk8h+fQ="; 14 }; 15 16 buildFlagsArray = [ "-ldflags=-s -w -X ${goPackagePath}/cmd/tegola/cmd.Version=${version}" ];
+4
pkgs/servers/x11/xorg/overrides.nix
··· 800 }; 801 }); 802 803 xf86videoxgi = super.xf86videoxgi.overrideAttrs (attrs: { 804 patches = [ 805 # fixes invalid open mode
··· 800 }; 801 }); 802 803 + xf86videoopenchrome = super.xf86videoopenchrome.overrideAttrs (attrs: { 804 + buildInputs = attrs.buildInputs ++ [ self.libXv ]; 805 + }); 806 + 807 xf86videoxgi = super.xf86videoxgi.overrideAttrs (attrs: { 808 patches = [ 809 # fixes invalid open mode
+2 -2
pkgs/servers/zigbee2mqtt/default.nix
··· 3 package = (import ./node.nix { inherit pkgs system; }).package; 4 in 5 package.override rec { 6 - version = "1.16.2"; 7 reconstructLock = true; 8 9 src = pkgs.fetchFromGitHub { 10 owner = "Koenkk"; 11 repo = "zigbee2mqtt"; 12 rev = version; 13 - sha256 = "0rpmm4pwm8s4i9fl26ql0czg5kijv42k9wwik7jb3ppi5jzxrakd"; 14 }; 15 16 passthru.tests.zigbee2mqtt = nixosTests.zigbee2mqtt;
··· 3 package = (import ./node.nix { inherit pkgs system; }).package; 4 in 5 package.override rec { 6 + version = "1.18.2"; 7 reconstructLock = true; 8 9 src = pkgs.fetchFromGitHub { 10 owner = "Koenkk"; 11 repo = "zigbee2mqtt"; 12 rev = version; 13 + sha256 = "sha256-95RhoJ0aqprzMNOUw9UbLosBwBtQvudKOQaBvBJohn8="; 14 }; 15 16 passthru.tests.zigbee2mqtt = nixosTests.zigbee2mqtt;
+3017 -1338
pkgs/servers/zigbee2mqtt/node-packages.nix
··· 1 - # This file has been generated by node2nix 1.8.0. Do not edit! 2 3 - {nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}: 4 5 let 6 sources = { 7 - "@babel/cli-7.12.1" = { 8 name = "_at_babel_slash_cli"; 9 packageName = "@babel/cli"; 10 - version = "7.12.1"; 11 src = fetchurl { 12 - url = "https://registry.npmjs.org/@babel/cli/-/cli-7.12.1.tgz"; 13 - sha512 = "eRJREyrfAJ2r42Iaxe8h3v6yyj1wu9OyosaUHW6UImjGf9ahGL9nsFNh7OCopvtcPL8WnEo7tp78wrZaZ6vG9g=="; 14 }; 15 }; 16 - "@babel/code-frame-7.10.4" = { 17 name = "_at_babel_slash_code-frame"; 18 packageName = "@babel/code-frame"; 19 - version = "7.10.4"; 20 src = fetchurl { 21 - url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz"; 22 - sha512 = "vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg=="; 23 }; 24 }; 25 - "@babel/compat-data-7.12.5" = { 26 name = "_at_babel_slash_compat-data"; 27 packageName = "@babel/compat-data"; 28 - version = "7.12.5"; 29 src = fetchurl { 30 - url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.5.tgz"; 31 - sha512 = "DTsS7cxrsH3by8nqQSpFSyjSfSYl57D6Cf4q8dW3LK83tBKBDCkfcay1nYkXq1nIHXnpX8WMMb/O25HOy3h1zg=="; 32 }; 33 }; 34 - "@babel/core-7.12.3" = { 35 name = "_at_babel_slash_core"; 36 packageName = "@babel/core"; 37 - version = "7.12.3"; 38 src = fetchurl { 39 - url = "https://registry.npmjs.org/@babel/core/-/core-7.12.3.tgz"; 40 - sha512 = "0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g=="; 41 }; 42 }; 43 - "@babel/core-7.12.9" = { 44 name = "_at_babel_slash_core"; 45 packageName = "@babel/core"; 46 - version = "7.12.9"; 47 src = fetchurl { 48 - url = "https://registry.npmjs.org/@babel/core/-/core-7.12.9.tgz"; 49 - sha512 = "gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ=="; 50 }; 51 }; 52 - "@babel/generator-7.12.5" = { 53 name = "_at_babel_slash_generator"; 54 packageName = "@babel/generator"; 55 - version = "7.12.5"; 56 src = fetchurl { 57 - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz"; 58 - sha512 = "m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A=="; 59 }; 60 }; 61 - "@babel/helper-annotate-as-pure-7.10.4" = { 62 name = "_at_babel_slash_helper-annotate-as-pure"; 63 packageName = "@babel/helper-annotate-as-pure"; 64 - version = "7.10.4"; 65 src = fetchurl { 66 - url = "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz"; 67 - sha512 = "XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA=="; 68 }; 69 }; 70 - "@babel/helper-builder-binary-assignment-operator-visitor-7.10.4" = { 71 name = "_at_babel_slash_helper-builder-binary-assignment-operator-visitor"; 72 packageName = "@babel/helper-builder-binary-assignment-operator-visitor"; 73 - version = "7.10.4"; 74 src = fetchurl { 75 - url = "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz"; 76 - sha512 = "L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg=="; 77 }; 78 }; 79 - "@babel/helper-compilation-targets-7.12.5" = { 80 name = "_at_babel_slash_helper-compilation-targets"; 81 packageName = "@babel/helper-compilation-targets"; 82 - version = "7.12.5"; 83 src = fetchurl { 84 - url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.5.tgz"; 85 - sha512 = "+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw=="; 86 }; 87 }; 88 - "@babel/helper-create-class-features-plugin-7.12.1" = { 89 name = "_at_babel_slash_helper-create-class-features-plugin"; 90 packageName = "@babel/helper-create-class-features-plugin"; 91 - version = "7.12.1"; 92 src = fetchurl { 93 - url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz"; 94 - sha512 = "hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w=="; 95 }; 96 }; 97 - "@babel/helper-create-regexp-features-plugin-7.12.1" = { 98 name = "_at_babel_slash_helper-create-regexp-features-plugin"; 99 packageName = "@babel/helper-create-regexp-features-plugin"; 100 - version = "7.12.1"; 101 src = fetchurl { 102 - url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.1.tgz"; 103 - sha512 = "rsZ4LGvFTZnzdNZR5HZdmJVuXK8834R5QkF3WvcnBhrlVtF0HSIUC6zbreL9MgjTywhKokn8RIYRiq99+DLAxA=="; 104 }; 105 }; 106 - "@babel/helper-define-map-7.10.5" = { 107 - name = "_at_babel_slash_helper-define-map"; 108 - packageName = "@babel/helper-define-map"; 109 - version = "7.10.5"; 110 src = fetchurl { 111 - url = "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz"; 112 - sha512 = "fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ=="; 113 }; 114 }; 115 - "@babel/helper-explode-assignable-expression-7.12.1" = { 116 name = "_at_babel_slash_helper-explode-assignable-expression"; 117 packageName = "@babel/helper-explode-assignable-expression"; 118 - version = "7.12.1"; 119 src = fetchurl { 120 - url = "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.12.1.tgz"; 121 - sha512 = "dmUwH8XmlrUpVqgtZ737tK88v07l840z9j3OEhCLwKTkjlvKpfqXVIZ0wpK3aeOxspwGrf/5AP5qLx4rO3w5rA=="; 122 }; 123 }; 124 - "@babel/helper-function-name-7.10.4" = { 125 name = "_at_babel_slash_helper-function-name"; 126 packageName = "@babel/helper-function-name"; 127 - version = "7.10.4"; 128 src = fetchurl { 129 - url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz"; 130 - sha512 = "YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ=="; 131 }; 132 }; 133 - "@babel/helper-get-function-arity-7.10.4" = { 134 name = "_at_babel_slash_helper-get-function-arity"; 135 packageName = "@babel/helper-get-function-arity"; 136 - version = "7.10.4"; 137 src = fetchurl { 138 - url = "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz"; 139 - sha512 = "EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A=="; 140 }; 141 }; 142 - "@babel/helper-hoist-variables-7.10.4" = { 143 name = "_at_babel_slash_helper-hoist-variables"; 144 packageName = "@babel/helper-hoist-variables"; 145 - version = "7.10.4"; 146 src = fetchurl { 147 - url = "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz"; 148 - sha512 = "wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA=="; 149 }; 150 }; 151 - "@babel/helper-member-expression-to-functions-7.12.1" = { 152 name = "_at_babel_slash_helper-member-expression-to-functions"; 153 packageName = "@babel/helper-member-expression-to-functions"; 154 - version = "7.12.1"; 155 src = fetchurl { 156 - url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.1.tgz"; 157 - sha512 = "k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ=="; 158 }; 159 }; 160 - "@babel/helper-member-expression-to-functions-7.12.7" = { 161 name = "_at_babel_slash_helper-member-expression-to-functions"; 162 packageName = "@babel/helper-member-expression-to-functions"; 163 - version = "7.12.7"; 164 src = fetchurl { 165 - url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.7.tgz"; 166 - sha512 = "DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw=="; 167 }; 168 }; 169 - "@babel/helper-module-imports-7.12.5" = { 170 name = "_at_babel_slash_helper-module-imports"; 171 packageName = "@babel/helper-module-imports"; 172 - version = "7.12.5"; 173 src = fetchurl { 174 - url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz"; 175 - sha512 = "SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA=="; 176 }; 177 }; 178 - "@babel/helper-module-transforms-7.12.1" = { 179 name = "_at_babel_slash_helper-module-transforms"; 180 packageName = "@babel/helper-module-transforms"; 181 - version = "7.12.1"; 182 src = fetchurl { 183 - url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz"; 184 - sha512 = "QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w=="; 185 }; 186 }; 187 - "@babel/helper-optimise-call-expression-7.10.4" = { 188 - name = "_at_babel_slash_helper-optimise-call-expression"; 189 - packageName = "@babel/helper-optimise-call-expression"; 190 - version = "7.10.4"; 191 src = fetchurl { 192 - url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz"; 193 - sha512 = "n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg=="; 194 }; 195 }; 196 - "@babel/helper-optimise-call-expression-7.12.7" = { 197 name = "_at_babel_slash_helper-optimise-call-expression"; 198 packageName = "@babel/helper-optimise-call-expression"; 199 - version = "7.12.7"; 200 src = fetchurl { 201 - url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.7.tgz"; 202 - sha512 = "I5xc9oSJ2h59OwyUqjv95HRyzxj53DAubUERgQMrpcCEYQyToeHA+NEcUEsVWB4j53RDeskeBJ0SgRAYHDBckw=="; 203 }; 204 }; 205 - "@babel/helper-plugin-utils-7.10.4" = { 206 name = "_at_babel_slash_helper-plugin-utils"; 207 packageName = "@babel/helper-plugin-utils"; 208 - version = "7.10.4"; 209 src = fetchurl { 210 - url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz"; 211 - sha512 = "O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg=="; 212 }; 213 }; 214 - "@babel/helper-regex-7.10.5" = { 215 - name = "_at_babel_slash_helper-regex"; 216 - packageName = "@babel/helper-regex"; 217 - version = "7.10.5"; 218 src = fetchurl { 219 - url = "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.10.5.tgz"; 220 - sha512 = "68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg=="; 221 }; 222 }; 223 - "@babel/helper-remap-async-to-generator-7.12.1" = { 224 - name = "_at_babel_slash_helper-remap-async-to-generator"; 225 - packageName = "@babel/helper-remap-async-to-generator"; 226 - version = "7.12.1"; 227 src = fetchurl { 228 - url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.1.tgz"; 229 - sha512 = "9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A=="; 230 }; 231 }; 232 - "@babel/helper-replace-supers-7.12.5" = { 233 name = "_at_babel_slash_helper-replace-supers"; 234 packageName = "@babel/helper-replace-supers"; 235 - version = "7.12.5"; 236 src = fetchurl { 237 - url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz"; 238 - sha512 = "5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA=="; 239 }; 240 }; 241 - "@babel/helper-simple-access-7.12.1" = { 242 name = "_at_babel_slash_helper-simple-access"; 243 packageName = "@babel/helper-simple-access"; 244 - version = "7.12.1"; 245 src = fetchurl { 246 - url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz"; 247 - sha512 = "OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA=="; 248 }; 249 }; 250 "@babel/helper-skip-transparent-expression-wrappers-7.12.1" = { ··· 256 sha512 = "Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA=="; 257 }; 258 }; 259 - "@babel/helper-split-export-declaration-7.11.0" = { 260 name = "_at_babel_slash_helper-split-export-declaration"; 261 packageName = "@babel/helper-split-export-declaration"; 262 - version = "7.11.0"; 263 src = fetchurl { 264 - url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz"; 265 - sha512 = "74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg=="; 266 }; 267 }; 268 - "@babel/helper-validator-identifier-7.10.4" = { 269 name = "_at_babel_slash_helper-validator-identifier"; 270 packageName = "@babel/helper-validator-identifier"; 271 - version = "7.10.4"; 272 src = fetchurl { 273 - url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz"; 274 - sha512 = "3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw=="; 275 }; 276 }; 277 - "@babel/helper-validator-option-7.12.1" = { 278 name = "_at_babel_slash_helper-validator-option"; 279 packageName = "@babel/helper-validator-option"; 280 - version = "7.12.1"; 281 src = fetchurl { 282 - url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.1.tgz"; 283 - sha512 = "YpJabsXlJVWP0USHjnC/AQDTLlZERbON577YUVO/wLpqyj6HAtVYnWaQaN0iUN+1/tWn3c+uKKXjRut5115Y2A=="; 284 }; 285 }; 286 - "@babel/helper-wrap-function-7.12.3" = { 287 name = "_at_babel_slash_helper-wrap-function"; 288 packageName = "@babel/helper-wrap-function"; 289 - version = "7.12.3"; 290 src = fetchurl { 291 - url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.12.3.tgz"; 292 - sha512 = "Cvb8IuJDln3rs6tzjW3Y8UeelAOdnpB8xtQ4sme2MSZ9wOxrbThporC0y/EtE16VAtoyEfLM404Xr1e0OOp+ow=="; 293 }; 294 }; 295 - "@babel/helpers-7.12.5" = { 296 name = "_at_babel_slash_helpers"; 297 packageName = "@babel/helpers"; 298 - version = "7.12.5"; 299 src = fetchurl { 300 - url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.5.tgz"; 301 - sha512 = "lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA=="; 302 }; 303 }; 304 - "@babel/highlight-7.10.4" = { 305 name = "_at_babel_slash_highlight"; 306 packageName = "@babel/highlight"; 307 - version = "7.10.4"; 308 src = fetchurl { 309 - url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz"; 310 - sha512 = "i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA=="; 311 }; 312 }; 313 - "@babel/parser-7.12.5" = { 314 name = "_at_babel_slash_parser"; 315 packageName = "@babel/parser"; 316 - version = "7.12.5"; 317 src = fetchurl { 318 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.12.5.tgz"; 319 - sha512 = "FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ=="; 320 }; 321 }; 322 - "@babel/parser-7.12.7" = { 323 name = "_at_babel_slash_parser"; 324 packageName = "@babel/parser"; 325 - version = "7.12.7"; 326 src = fetchurl { 327 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.12.7.tgz"; 328 - sha512 = "oWR02Ubp4xTLCAqPRiNIuMVgNO5Aif/xpXtabhzW2HWUD47XJsAB4Zd/Rg30+XeQA3juXigV7hlquOTmwqLiwg=="; 329 }; 330 }; 331 - "@babel/plugin-proposal-async-generator-functions-7.12.1" = { 332 name = "_at_babel_slash_plugin-proposal-async-generator-functions"; 333 packageName = "@babel/plugin-proposal-async-generator-functions"; 334 - version = "7.12.1"; 335 src = fetchurl { 336 - url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.1.tgz"; 337 - sha512 = "d+/o30tJxFxrA1lhzJqiUcEJdI6jKlNregCv5bASeGf2Q4MXmnwH7viDo7nhx1/ohf09oaH8j1GVYG/e3Yqk6A=="; 338 }; 339 }; 340 - "@babel/plugin-proposal-class-properties-7.12.1" = { 341 name = "_at_babel_slash_plugin-proposal-class-properties"; 342 packageName = "@babel/plugin-proposal-class-properties"; 343 - version = "7.12.1"; 344 src = fetchurl { 345 - url = "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz"; 346 - sha512 = "cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w=="; 347 }; 348 }; 349 - "@babel/plugin-proposal-dynamic-import-7.12.1" = { 350 name = "_at_babel_slash_plugin-proposal-dynamic-import"; 351 packageName = "@babel/plugin-proposal-dynamic-import"; 352 - version = "7.12.1"; 353 src = fetchurl { 354 - url = "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.1.tgz"; 355 - sha512 = "a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ=="; 356 }; 357 }; 358 - "@babel/plugin-proposal-export-namespace-from-7.12.1" = { 359 name = "_at_babel_slash_plugin-proposal-export-namespace-from"; 360 packageName = "@babel/plugin-proposal-export-namespace-from"; 361 - version = "7.12.1"; 362 src = fetchurl { 363 - url = "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.1.tgz"; 364 - sha512 = "6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw=="; 365 }; 366 }; 367 - "@babel/plugin-proposal-json-strings-7.12.1" = { 368 name = "_at_babel_slash_plugin-proposal-json-strings"; 369 packageName = "@babel/plugin-proposal-json-strings"; 370 - version = "7.12.1"; 371 src = fetchurl { 372 - url = "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.1.tgz"; 373 - sha512 = "GoLDUi6U9ZLzlSda2Df++VSqDJg3CG+dR0+iWsv6XRw1rEq+zwt4DirM9yrxW6XWaTpmai1cWJLMfM8qQJf+yw=="; 374 }; 375 }; 376 - "@babel/plugin-proposal-logical-assignment-operators-7.12.1" = { 377 name = "_at_babel_slash_plugin-proposal-logical-assignment-operators"; 378 packageName = "@babel/plugin-proposal-logical-assignment-operators"; 379 - version = "7.12.1"; 380 src = fetchurl { 381 - url = "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.1.tgz"; 382 - sha512 = "k8ZmVv0JU+4gcUGeCDZOGd0lCIamU/sMtIiX3UWnUc5yzgq6YUGyEolNYD+MLYKfSzgECPcqetVcJP9Afe/aCA=="; 383 }; 384 }; 385 - "@babel/plugin-proposal-nullish-coalescing-operator-7.12.1" = { 386 name = "_at_babel_slash_plugin-proposal-nullish-coalescing-operator"; 387 packageName = "@babel/plugin-proposal-nullish-coalescing-operator"; 388 - version = "7.12.1"; 389 src = fetchurl { 390 - url = "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz"; 391 - sha512 = "nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg=="; 392 }; 393 }; 394 - "@babel/plugin-proposal-numeric-separator-7.12.5" = { 395 name = "_at_babel_slash_plugin-proposal-numeric-separator"; 396 packageName = "@babel/plugin-proposal-numeric-separator"; 397 - version = "7.12.5"; 398 src = fetchurl { 399 - url = "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.5.tgz"; 400 - sha512 = "UiAnkKuOrCyjZ3sYNHlRlfuZJbBHknMQ9VMwVeX97Ofwx7RpD6gS2HfqTCh8KNUQgcOm8IKt103oR4KIjh7Q8g=="; 401 }; 402 }; 403 - "@babel/plugin-proposal-object-rest-spread-7.12.1" = { 404 name = "_at_babel_slash_plugin-proposal-object-rest-spread"; 405 packageName = "@babel/plugin-proposal-object-rest-spread"; 406 - version = "7.12.1"; 407 src = fetchurl { 408 - url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz"; 409 - sha512 = "s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA=="; 410 }; 411 }; 412 - "@babel/plugin-proposal-optional-catch-binding-7.12.1" = { 413 name = "_at_babel_slash_plugin-proposal-optional-catch-binding"; 414 packageName = "@babel/plugin-proposal-optional-catch-binding"; 415 - version = "7.12.1"; 416 src = fetchurl { 417 - url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.1.tgz"; 418 - sha512 = "hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g=="; 419 }; 420 }; 421 - "@babel/plugin-proposal-optional-chaining-7.12.1" = { 422 name = "_at_babel_slash_plugin-proposal-optional-chaining"; 423 packageName = "@babel/plugin-proposal-optional-chaining"; 424 - version = "7.12.1"; 425 src = fetchurl { 426 - url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.1.tgz"; 427 - sha512 = "c2uRpY6WzaVDzynVY9liyykS+kVU+WRZPMPYpkelXH8KBt1oXoI89kPbZKKG/jDT5UK92FTW2fZkZaJhdiBabw=="; 428 }; 429 }; 430 - "@babel/plugin-proposal-private-methods-7.12.1" = { 431 name = "_at_babel_slash_plugin-proposal-private-methods"; 432 packageName = "@babel/plugin-proposal-private-methods"; 433 - version = "7.12.1"; 434 src = fetchurl { 435 - url = "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.1.tgz"; 436 - sha512 = "mwZ1phvH7/NHK6Kf8LP7MYDogGV+DKB1mryFOEwx5EBNQrosvIczzZFTUmWaeujd5xT6G1ELYWUz3CutMhjE1w=="; 437 }; 438 }; 439 - "@babel/plugin-proposal-unicode-property-regex-7.12.1" = { 440 name = "_at_babel_slash_plugin-proposal-unicode-property-regex"; 441 packageName = "@babel/plugin-proposal-unicode-property-regex"; 442 - version = "7.12.1"; 443 src = fetchurl { 444 - url = "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.1.tgz"; 445 - sha512 = "MYq+l+PvHuw/rKUz1at/vb6nCnQ2gmJBNaM62z0OgH7B2W1D9pvkpYtlti9bGtizNIU1K3zm4bZF9F91efVY0w=="; 446 }; 447 }; 448 "@babel/plugin-syntax-async-generators-7.8.4" = { ··· 463 sha512 = "wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg=="; 464 }; 465 }; 466 - "@babel/plugin-syntax-class-properties-7.12.1" = { 467 name = "_at_babel_slash_plugin-syntax-class-properties"; 468 packageName = "@babel/plugin-syntax-class-properties"; 469 - version = "7.12.1"; 470 src = fetchurl { 471 - url = "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.1.tgz"; 472 - sha512 = "U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA=="; 473 }; 474 }; 475 "@babel/plugin-syntax-dynamic-import-7.8.3" = { ··· 562 sha512 = "KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg=="; 563 }; 564 }; 565 - "@babel/plugin-syntax-top-level-await-7.12.1" = { 566 name = "_at_babel_slash_plugin-syntax-top-level-await"; 567 packageName = "@babel/plugin-syntax-top-level-await"; 568 - version = "7.12.1"; 569 src = fetchurl { 570 - url = "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz"; 571 - sha512 = "i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A=="; 572 }; 573 }; 574 - "@babel/plugin-syntax-typescript-7.12.1" = { 575 name = "_at_babel_slash_plugin-syntax-typescript"; 576 packageName = "@babel/plugin-syntax-typescript"; 577 - version = "7.12.1"; 578 src = fetchurl { 579 - url = "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.12.1.tgz"; 580 - sha512 = "UZNEcCY+4Dp9yYRCAHrHDU+9ZXLYaY9MgBXSRLkB9WjYFRR6quJBumfVrEkUxrePPBwFcpWfNKXqVRQQtm7mMA=="; 581 }; 582 }; 583 - "@babel/plugin-transform-arrow-functions-7.12.1" = { 584 name = "_at_babel_slash_plugin-transform-arrow-functions"; 585 packageName = "@babel/plugin-transform-arrow-functions"; 586 - version = "7.12.1"; 587 src = fetchurl { 588 - url = "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.1.tgz"; 589 - sha512 = "5QB50qyN44fzzz4/qxDPQMBCTHgxg3n0xRBLJUmBlLoU/sFvxVWGZF/ZUfMVDQuJUKXaBhbupxIzIfZ6Fwk/0A=="; 590 }; 591 }; 592 - "@babel/plugin-transform-async-to-generator-7.12.1" = { 593 name = "_at_babel_slash_plugin-transform-async-to-generator"; 594 packageName = "@babel/plugin-transform-async-to-generator"; 595 - version = "7.12.1"; 596 src = fetchurl { 597 - url = "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.1.tgz"; 598 - sha512 = "SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A=="; 599 }; 600 }; 601 - "@babel/plugin-transform-block-scoped-functions-7.12.1" = { 602 name = "_at_babel_slash_plugin-transform-block-scoped-functions"; 603 packageName = "@babel/plugin-transform-block-scoped-functions"; 604 - version = "7.12.1"; 605 src = fetchurl { 606 - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.1.tgz"; 607 - sha512 = "5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA=="; 608 }; 609 }; 610 - "@babel/plugin-transform-block-scoping-7.12.1" = { 611 name = "_at_babel_slash_plugin-transform-block-scoping"; 612 packageName = "@babel/plugin-transform-block-scoping"; 613 - version = "7.12.1"; 614 src = fetchurl { 615 - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.1.tgz"; 616 - sha512 = "zJyAC9sZdE60r1nVQHblcfCj29Dh2Y0DOvlMkcqSo0ckqjiCwNiUezUKw+RjOCwGfpLRwnAeQ2XlLpsnGkvv9w=="; 617 }; 618 }; 619 - "@babel/plugin-transform-classes-7.12.1" = { 620 name = "_at_babel_slash_plugin-transform-classes"; 621 packageName = "@babel/plugin-transform-classes"; 622 - version = "7.12.1"; 623 src = fetchurl { 624 - url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.12.1.tgz"; 625 - sha512 = "/74xkA7bVdzQTBeSUhLLJgYIcxw/dpEpCdRDiHgPJ3Mv6uC11UhjpOhl72CgqbBCmt1qtssCyB2xnJm1+PFjog=="; 626 }; 627 }; 628 - "@babel/plugin-transform-computed-properties-7.12.1" = { 629 name = "_at_babel_slash_plugin-transform-computed-properties"; 630 packageName = "@babel/plugin-transform-computed-properties"; 631 - version = "7.12.1"; 632 src = fetchurl { 633 - url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.1.tgz"; 634 - sha512 = "vVUOYpPWB7BkgUWPo4C44mUQHpTZXakEqFjbv8rQMg7TC6S6ZhGZ3otQcRH6u7+adSlE5i0sp63eMC/XGffrzg=="; 635 }; 636 }; 637 - "@babel/plugin-transform-destructuring-7.12.1" = { 638 name = "_at_babel_slash_plugin-transform-destructuring"; 639 packageName = "@babel/plugin-transform-destructuring"; 640 - version = "7.12.1"; 641 src = fetchurl { 642 - url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.12.1.tgz"; 643 - sha512 = "fRMYFKuzi/rSiYb2uRLiUENJOKq4Gnl+6qOv5f8z0TZXg3llUwUhsNNwrwaT/6dUhJTzNpBr+CUvEWBtfNY1cw=="; 644 }; 645 }; 646 - "@babel/plugin-transform-dotall-regex-7.12.1" = { 647 name = "_at_babel_slash_plugin-transform-dotall-regex"; 648 packageName = "@babel/plugin-transform-dotall-regex"; 649 - version = "7.12.1"; 650 src = fetchurl { 651 - url = "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.1.tgz"; 652 - sha512 = "B2pXeRKoLszfEW7J4Hg9LoFaWEbr/kzo3teWHmtFCszjRNa/b40f9mfeqZsIDLLt/FjwQ6pz/Gdlwy85xNckBA=="; 653 }; 654 }; 655 - "@babel/plugin-transform-duplicate-keys-7.12.1" = { 656 name = "_at_babel_slash_plugin-transform-duplicate-keys"; 657 packageName = "@babel/plugin-transform-duplicate-keys"; 658 - version = "7.12.1"; 659 src = fetchurl { 660 - url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.1.tgz"; 661 - sha512 = "iRght0T0HztAb/CazveUpUQrZY+aGKKaWXMJ4uf9YJtqxSUe09j3wteztCUDRHs+SRAL7yMuFqUsLoAKKzgXjw=="; 662 }; 663 }; 664 - "@babel/plugin-transform-exponentiation-operator-7.12.1" = { 665 name = "_at_babel_slash_plugin-transform-exponentiation-operator"; 666 packageName = "@babel/plugin-transform-exponentiation-operator"; 667 - version = "7.12.1"; 668 src = fetchurl { 669 - url = "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.1.tgz"; 670 - sha512 = "7tqwy2bv48q+c1EHbXK0Zx3KXd2RVQp6OC7PbwFNt/dPTAV3Lu5sWtWuAj8owr5wqtWnqHfl2/mJlUmqkChKug=="; 671 }; 672 }; 673 - "@babel/plugin-transform-for-of-7.12.1" = { 674 name = "_at_babel_slash_plugin-transform-for-of"; 675 packageName = "@babel/plugin-transform-for-of"; 676 - version = "7.12.1"; 677 src = fetchurl { 678 - url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.1.tgz"; 679 - sha512 = "Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg=="; 680 }; 681 }; 682 - "@babel/plugin-transform-function-name-7.12.1" = { 683 name = "_at_babel_slash_plugin-transform-function-name"; 684 packageName = "@babel/plugin-transform-function-name"; 685 - version = "7.12.1"; 686 src = fetchurl { 687 - url = "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.1.tgz"; 688 - sha512 = "JF3UgJUILoFrFMEnOJLJkRHSk6LUSXLmEFsA23aR2O5CSLUxbeUX1IZ1YQ7Sn0aXb601Ncwjx73a+FVqgcljVw=="; 689 }; 690 }; 691 - "@babel/plugin-transform-literals-7.12.1" = { 692 name = "_at_babel_slash_plugin-transform-literals"; 693 packageName = "@babel/plugin-transform-literals"; 694 - version = "7.12.1"; 695 src = fetchurl { 696 - url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.1.tgz"; 697 - sha512 = "+PxVGA+2Ag6uGgL0A5f+9rklOnnMccwEBzwYFL3EUaKuiyVnUipyXncFcfjSkbimLrODoqki1U9XxZzTvfN7IQ=="; 698 }; 699 }; 700 - "@babel/plugin-transform-member-expression-literals-7.12.1" = { 701 name = "_at_babel_slash_plugin-transform-member-expression-literals"; 702 packageName = "@babel/plugin-transform-member-expression-literals"; 703 - version = "7.12.1"; 704 src = fetchurl { 705 - url = "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.1.tgz"; 706 - sha512 = "1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg=="; 707 }; 708 }; 709 - "@babel/plugin-transform-modules-amd-7.12.1" = { 710 name = "_at_babel_slash_plugin-transform-modules-amd"; 711 packageName = "@babel/plugin-transform-modules-amd"; 712 - version = "7.12.1"; 713 src = fetchurl { 714 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.1.tgz"; 715 - sha512 = "tDW8hMkzad5oDtzsB70HIQQRBiTKrhfgwC/KkJeGsaNFTdWhKNt/BiE8c5yj19XiGyrxpbkOfH87qkNg1YGlOQ=="; 716 }; 717 }; 718 - "@babel/plugin-transform-modules-commonjs-7.12.1" = { 719 name = "_at_babel_slash_plugin-transform-modules-commonjs"; 720 packageName = "@babel/plugin-transform-modules-commonjs"; 721 - version = "7.12.1"; 722 src = fetchurl { 723 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.1.tgz"; 724 - sha512 = "dY789wq6l0uLY8py9c1B48V8mVL5gZh/+PQ5ZPrylPYsnAvnEMjqsUXkuoDVPeVK+0VyGar+D08107LzDQ6pag=="; 725 }; 726 }; 727 - "@babel/plugin-transform-modules-systemjs-7.12.1" = { 728 name = "_at_babel_slash_plugin-transform-modules-systemjs"; 729 packageName = "@babel/plugin-transform-modules-systemjs"; 730 - version = "7.12.1"; 731 src = fetchurl { 732 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.1.tgz"; 733 - sha512 = "Hn7cVvOavVh8yvW6fLwveFqSnd7rbQN3zJvoPNyNaQSvgfKmDBO9U1YL9+PCXGRlZD9tNdWTy5ACKqMuzyn32Q=="; 734 }; 735 }; 736 - "@babel/plugin-transform-modules-umd-7.12.1" = { 737 name = "_at_babel_slash_plugin-transform-modules-umd"; 738 packageName = "@babel/plugin-transform-modules-umd"; 739 - version = "7.12.1"; 740 src = fetchurl { 741 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.1.tgz"; 742 - sha512 = "aEIubCS0KHKM0zUos5fIoQm+AZUMt1ZvMpqz0/H5qAQ7vWylr9+PLYurT+Ic7ID/bKLd4q8hDovaG3Zch2uz5Q=="; 743 }; 744 }; 745 - "@babel/plugin-transform-named-capturing-groups-regex-7.12.1" = { 746 name = "_at_babel_slash_plugin-transform-named-capturing-groups-regex"; 747 packageName = "@babel/plugin-transform-named-capturing-groups-regex"; 748 - version = "7.12.1"; 749 src = fetchurl { 750 - url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.1.tgz"; 751 - sha512 = "tB43uQ62RHcoDp9v2Nsf+dSM8sbNodbEicbQNA53zHz8pWUhsgHSJCGpt7daXxRydjb0KnfmB+ChXOv3oADp1Q=="; 752 }; 753 }; 754 - "@babel/plugin-transform-new-target-7.12.1" = { 755 name = "_at_babel_slash_plugin-transform-new-target"; 756 packageName = "@babel/plugin-transform-new-target"; 757 - version = "7.12.1"; 758 src = fetchurl { 759 - url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.1.tgz"; 760 - sha512 = "+eW/VLcUL5L9IvJH7rT1sT0CzkdUTvPrXC2PXTn/7z7tXLBuKvezYbGdxD5WMRoyvyaujOq2fWoKl869heKjhw=="; 761 }; 762 }; 763 - "@babel/plugin-transform-object-super-7.12.1" = { 764 name = "_at_babel_slash_plugin-transform-object-super"; 765 packageName = "@babel/plugin-transform-object-super"; 766 - version = "7.12.1"; 767 src = fetchurl { 768 - url = "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.1.tgz"; 769 - sha512 = "AvypiGJH9hsquNUn+RXVcBdeE3KHPZexWRdimhuV59cSoOt5kFBmqlByorAeUlGG2CJWd0U+4ZtNKga/TB0cAw=="; 770 }; 771 }; 772 - "@babel/plugin-transform-parameters-7.12.1" = { 773 name = "_at_babel_slash_plugin-transform-parameters"; 774 packageName = "@babel/plugin-transform-parameters"; 775 - version = "7.12.1"; 776 src = fetchurl { 777 - url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.1.tgz"; 778 - sha512 = "xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg=="; 779 }; 780 }; 781 - "@babel/plugin-transform-property-literals-7.12.1" = { 782 name = "_at_babel_slash_plugin-transform-property-literals"; 783 packageName = "@babel/plugin-transform-property-literals"; 784 - version = "7.12.1"; 785 src = fetchurl { 786 - url = "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.1.tgz"; 787 - sha512 = "6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ=="; 788 }; 789 }; 790 - "@babel/plugin-transform-regenerator-7.12.1" = { 791 name = "_at_babel_slash_plugin-transform-regenerator"; 792 packageName = "@babel/plugin-transform-regenerator"; 793 - version = "7.12.1"; 794 src = fetchurl { 795 - url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.1.tgz"; 796 - sha512 = "gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng=="; 797 }; 798 }; 799 - "@babel/plugin-transform-reserved-words-7.12.1" = { 800 name = "_at_babel_slash_plugin-transform-reserved-words"; 801 packageName = "@babel/plugin-transform-reserved-words"; 802 - version = "7.12.1"; 803 src = fetchurl { 804 - url = "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.1.tgz"; 805 - sha512 = "pOnUfhyPKvZpVyBHhSBoX8vfA09b7r00Pmm1sH+29ae2hMTKVmSp4Ztsr8KBKjLjx17H0eJqaRC3bR2iThM54A=="; 806 }; 807 }; 808 - "@babel/plugin-transform-shorthand-properties-7.12.1" = { 809 name = "_at_babel_slash_plugin-transform-shorthand-properties"; 810 packageName = "@babel/plugin-transform-shorthand-properties"; 811 - version = "7.12.1"; 812 src = fetchurl { 813 - url = "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.1.tgz"; 814 - sha512 = "GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw=="; 815 }; 816 }; 817 - "@babel/plugin-transform-spread-7.12.1" = { 818 name = "_at_babel_slash_plugin-transform-spread"; 819 packageName = "@babel/plugin-transform-spread"; 820 - version = "7.12.1"; 821 src = fetchurl { 822 - url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.1.tgz"; 823 - sha512 = "vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng=="; 824 }; 825 }; 826 - "@babel/plugin-transform-sticky-regex-7.12.1" = { 827 name = "_at_babel_slash_plugin-transform-sticky-regex"; 828 packageName = "@babel/plugin-transform-sticky-regex"; 829 - version = "7.12.1"; 830 src = fetchurl { 831 - url = "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.1.tgz"; 832 - sha512 = "CiUgKQ3AGVk7kveIaPEET1jNDhZZEl1RPMWdTBE1799bdz++SwqDHStmxfCtDfBhQgCl38YRiSnrMuUMZIWSUQ=="; 833 }; 834 }; 835 - "@babel/plugin-transform-template-literals-7.12.1" = { 836 name = "_at_babel_slash_plugin-transform-template-literals"; 837 packageName = "@babel/plugin-transform-template-literals"; 838 - version = "7.12.1"; 839 src = fetchurl { 840 - url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.12.1.tgz"; 841 - sha512 = "b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw=="; 842 }; 843 }; 844 - "@babel/plugin-transform-typeof-symbol-7.12.1" = { 845 name = "_at_babel_slash_plugin-transform-typeof-symbol"; 846 packageName = "@babel/plugin-transform-typeof-symbol"; 847 - version = "7.12.1"; 848 src = fetchurl { 849 - url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.1.tgz"; 850 - sha512 = "EPGgpGy+O5Kg5pJFNDKuxt9RdmTgj5sgrus2XVeMp/ZIbOESadgILUbm50SNpghOh3/6yrbsH+NB5+WJTmsA7Q=="; 851 }; 852 }; 853 - "@babel/plugin-transform-typescript-7.12.1" = { 854 name = "_at_babel_slash_plugin-transform-typescript"; 855 packageName = "@babel/plugin-transform-typescript"; 856 - version = "7.12.1"; 857 src = fetchurl { 858 - url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.12.1.tgz"; 859 - sha512 = "VrsBByqAIntM+EYMqSm59SiMEf7qkmI9dqMt6RbD/wlwueWmYcI0FFK5Fj47pP6DRZm+3teXjosKlwcZJ5lIMw=="; 860 }; 861 }; 862 - "@babel/plugin-transform-unicode-escapes-7.12.1" = { 863 name = "_at_babel_slash_plugin-transform-unicode-escapes"; 864 packageName = "@babel/plugin-transform-unicode-escapes"; 865 - version = "7.12.1"; 866 src = fetchurl { 867 - url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.1.tgz"; 868 - sha512 = "I8gNHJLIc7GdApm7wkVnStWssPNbSRMPtgHdmH3sRM1zopz09UWPS4x5V4n1yz/MIWTVnJ9sp6IkuXdWM4w+2Q=="; 869 }; 870 }; 871 - "@babel/plugin-transform-unicode-regex-7.12.1" = { 872 name = "_at_babel_slash_plugin-transform-unicode-regex"; 873 packageName = "@babel/plugin-transform-unicode-regex"; 874 - version = "7.12.1"; 875 src = fetchurl { 876 - url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.1.tgz"; 877 - sha512 = "SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg=="; 878 }; 879 }; 880 - "@babel/preset-env-7.12.1" = { 881 name = "_at_babel_slash_preset-env"; 882 packageName = "@babel/preset-env"; 883 - version = "7.12.1"; 884 src = fetchurl { 885 - url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.1.tgz"; 886 - sha512 = "H8kxXmtPaAGT7TyBvSSkoSTUK6RHh61So05SyEbpmr0MCZrsNYn7mGMzzeYoOUCdHzww61k8XBft2TaES+xPLg=="; 887 }; 888 }; 889 "@babel/preset-modules-0.1.4" = { ··· 895 sha512 = "J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg=="; 896 }; 897 }; 898 - "@babel/preset-typescript-7.12.1" = { 899 name = "_at_babel_slash_preset-typescript"; 900 packageName = "@babel/preset-typescript"; 901 - version = "7.12.1"; 902 src = fetchurl { 903 - url = "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.12.1.tgz"; 904 - sha512 = "hNK/DhmoJPsksdHuI/RVrcEws7GN5eamhi28JkO52MqIxU8Z0QpmiSOQxZHWOHV7I3P4UjHV97ay4TcamMA6Kw=="; 905 }; 906 }; 907 - "@babel/runtime-7.12.5" = { 908 name = "_at_babel_slash_runtime"; 909 packageName = "@babel/runtime"; 910 - version = "7.12.5"; 911 - src = fetchurl { 912 - url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz"; 913 - sha512 = "plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg=="; 914 - }; 915 - }; 916 - "@babel/template-7.10.4" = { 917 - name = "_at_babel_slash_template"; 918 - packageName = "@babel/template"; 919 - version = "7.10.4"; 920 src = fetchurl { 921 - url = "https://registry.npmjs.org/@babel/template/-/template-7.10.4.tgz"; 922 - sha512 = "ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA=="; 923 }; 924 }; 925 - "@babel/template-7.12.7" = { 926 name = "_at_babel_slash_template"; 927 packageName = "@babel/template"; 928 - version = "7.12.7"; 929 src = fetchurl { 930 - url = "https://registry.npmjs.org/@babel/template/-/template-7.12.7.tgz"; 931 - sha512 = "GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow=="; 932 }; 933 }; 934 - "@babel/traverse-7.12.5" = { 935 name = "_at_babel_slash_traverse"; 936 packageName = "@babel/traverse"; 937 - version = "7.12.5"; 938 src = fetchurl { 939 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.5.tgz"; 940 - sha512 = "xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA=="; 941 }; 942 }; 943 - "@babel/traverse-7.12.9" = { 944 name = "_at_babel_slash_traverse"; 945 packageName = "@babel/traverse"; 946 - version = "7.12.9"; 947 src = fetchurl { 948 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.9.tgz"; 949 - sha512 = "iX9ajqnLdoU1s1nHt36JDI9KG4k+vmI8WgjK5d+aDTwQbL2fUnzedNedssA645Ede3PM2ma1n8Q4h2ohwXgMXw=="; 950 }; 951 }; 952 - "@babel/types-7.12.6" = { 953 name = "_at_babel_slash_types"; 954 packageName = "@babel/types"; 955 - version = "7.12.6"; 956 src = fetchurl { 957 - url = "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz"; 958 - sha512 = "hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA=="; 959 }; 960 }; 961 - "@babel/types-7.12.7" = { 962 name = "_at_babel_slash_types"; 963 packageName = "@babel/types"; 964 - version = "7.12.7"; 965 src = fetchurl { 966 - url = "https://registry.npmjs.org/@babel/types/-/types-7.12.7.tgz"; 967 - sha512 = "MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ=="; 968 }; 969 }; 970 "@bcoe/v8-coverage-0.2.3" = { ··· 994 sha512 = "+A1YivoVDNNVCdfozHSR8v/jyuuLTMXwjWuxPFlFlUapXoGc+Gj9mDlTDDfrwl7rXCl2tNZ0kE8sIBO6YOn96Q=="; 995 }; 996 }; 997 - "@eslint/eslintrc-0.2.1" = { 998 name = "_at_eslint_slash_eslintrc"; 999 packageName = "@eslint/eslintrc"; 1000 - version = "0.2.1"; 1001 src = fetchurl { 1002 - url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.2.1.tgz"; 1003 - sha512 = "XRUeBZ5zBWLYgSANMpThFddrZZkEbGHgUdt5UJjZfnlN9BGCiUBrf+nvbRupSjMvqzwnQN0qwCmOxITt1cfywA=="; 1004 }; 1005 }; 1006 "@istanbuljs/load-nyc-config-1.1.0" = { ··· 1012 sha512 = "VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ=="; 1013 }; 1014 }; 1015 - "@istanbuljs/schema-0.1.2" = { 1016 name = "_at_istanbuljs_slash_schema"; 1017 packageName = "@istanbuljs/schema"; 1018 - version = "0.1.2"; 1019 src = fetchurl { 1020 - url = "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.2.tgz"; 1021 - sha512 = "tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw=="; 1022 }; 1023 }; 1024 "@jest/console-26.6.2" = { ··· 1120 sha512 = "fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ=="; 1121 }; 1122 }; 1123 - "@nicolo-ribaudo/chokidar-2-2.1.8" = { 1124 name = "_at_nicolo-ribaudo_slash_chokidar-2"; 1125 packageName = "@nicolo-ribaudo/chokidar-2"; 1126 - version = "2.1.8"; 1127 src = fetchurl { 1128 - url = "https://registry.npmjs.org/@nicolo-ribaudo/chokidar-2/-/chokidar-2-2.1.8.tgz"; 1129 - sha512 = "FohwULwAebCUKi/akMFyGi7jfc7JXTeMHzKxuP3umRd9mK/2Y7/SMBSI2jX+YLopPXi+PF9l307NmpfxTdCegA=="; 1130 }; 1131 }; 1132 - "@nodelib/fs.scandir-2.1.3" = { 1133 name = "_at_nodelib_slash_fs.scandir"; 1134 packageName = "@nodelib/fs.scandir"; 1135 - version = "2.1.3"; 1136 src = fetchurl { 1137 - url = "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz"; 1138 - sha512 = "eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw=="; 1139 }; 1140 }; 1141 - "@nodelib/fs.stat-2.0.3" = { 1142 name = "_at_nodelib_slash_fs.stat"; 1143 packageName = "@nodelib/fs.stat"; 1144 - version = "2.0.3"; 1145 src = fetchurl { 1146 - url = "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz"; 1147 - sha512 = "bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA=="; 1148 }; 1149 }; 1150 - "@nodelib/fs.walk-1.2.4" = { 1151 name = "_at_nodelib_slash_fs.walk"; 1152 packageName = "@nodelib/fs.walk"; 1153 - version = "1.2.4"; 1154 src = fetchurl { 1155 - url = "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.4.tgz"; 1156 - sha512 = "1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ=="; 1157 }; 1158 }; 1159 - "@serialport/binding-abstract-9.0.2" = { 1160 name = "_at_serialport_slash_binding-abstract"; 1161 packageName = "@serialport/binding-abstract"; 1162 - version = "9.0.2"; 1163 src = fetchurl { 1164 - url = "https://registry.npmjs.org/@serialport/binding-abstract/-/binding-abstract-9.0.2.tgz"; 1165 - sha512 = "kyMX6usn+VLpidt0YsDq5JwztIan9TPCX6skr0XcalOxI8I7w+/2qVZJzjgo2fSqDnPRcU2jMWTytwzEXFODvQ=="; 1166 }; 1167 }; 1168 - "@serialport/binding-mock-9.0.2" = { 1169 name = "_at_serialport_slash_binding-mock"; 1170 packageName = "@serialport/binding-mock"; 1171 - version = "9.0.2"; 1172 src = fetchurl { 1173 - url = "https://registry.npmjs.org/@serialport/binding-mock/-/binding-mock-9.0.2.tgz"; 1174 - sha512 = "HfrvJ/LXULHk8w63CGxwDNiDidFgDX8BnadY+cgVS6yHMHikbhLCLjCmUKsKBWaGKRqOznl0w+iUl7TMi1lkXQ=="; 1175 }; 1176 }; 1177 - "@serialport/bindings-9.0.2" = { 1178 name = "_at_serialport_slash_bindings"; 1179 packageName = "@serialport/bindings"; 1180 - version = "9.0.2"; 1181 src = fetchurl { 1182 - url = "https://registry.npmjs.org/@serialport/bindings/-/bindings-9.0.2.tgz"; 1183 - sha512 = "kQ3co4aGwwbUqkRdJ7UfdlbLB5dUQwNfSglexC8iv65D5HXfjSBR1bE0XUH8PH/v/6Dh6CSnwf6OP0I3H5vMWQ=="; 1184 }; 1185 }; 1186 - "@serialport/parser-byte-length-9.0.1" = { 1187 name = "_at_serialport_slash_parser-byte-length"; 1188 packageName = "@serialport/parser-byte-length"; 1189 - version = "9.0.1"; 1190 src = fetchurl { 1191 - url = "https://registry.npmjs.org/@serialport/parser-byte-length/-/parser-byte-length-9.0.1.tgz"; 1192 - sha512 = "1Ikv4lgCNw8OMf35yCpgzjHwkpgBEkhBuXFXIdWZk+ixaHFLlAtp03QxGPZBmzHMK58WDmEQoBHC1V5BkkAKSQ=="; 1193 }; 1194 }; 1195 - "@serialport/parser-cctalk-9.0.1" = { 1196 name = "_at_serialport_slash_parser-cctalk"; 1197 packageName = "@serialport/parser-cctalk"; 1198 - version = "9.0.1"; 1199 src = fetchurl { 1200 - url = "https://registry.npmjs.org/@serialport/parser-cctalk/-/parser-cctalk-9.0.1.tgz"; 1201 - sha512 = "GtMda2DeJ+23bNqOc79JYV06dax2n3FLLFM3zA7nfReCOi98QbuDj4TUbFESMOnp4DB0oMO0GYHCR9gHOedTkg=="; 1202 }; 1203 }; 1204 - "@serialport/parser-delimiter-9.0.1" = { 1205 name = "_at_serialport_slash_parser-delimiter"; 1206 packageName = "@serialport/parser-delimiter"; 1207 - version = "9.0.1"; 1208 src = fetchurl { 1209 - url = "https://registry.npmjs.org/@serialport/parser-delimiter/-/parser-delimiter-9.0.1.tgz"; 1210 - sha512 = "+oaSl5zEu47OlrRiF5p5tn2qgGqYuhVcE+NI+Pv4E1xsNB/A0fFxxMv/8XUw466CRLEJ5IESIB9qbFvKE6ltaQ=="; 1211 }; 1212 }; 1213 - "@serialport/parser-readline-9.0.1" = { 1214 name = "_at_serialport_slash_parser-readline"; 1215 packageName = "@serialport/parser-readline"; 1216 - version = "9.0.1"; 1217 src = fetchurl { 1218 - url = "https://registry.npmjs.org/@serialport/parser-readline/-/parser-readline-9.0.1.tgz"; 1219 - sha512 = "38058gxvyfgdeLpg3aUyD98NuWkVB9yyTLpcSdeQ3GYiupivwH6Tdy/SKPmxlHIw3Ml2qil5MR2mtW2fLPB5CQ=="; 1220 }; 1221 }; 1222 - "@serialport/parser-ready-9.0.1" = { 1223 name = "_at_serialport_slash_parser-ready"; 1224 packageName = "@serialport/parser-ready"; 1225 - version = "9.0.1"; 1226 src = fetchurl { 1227 - url = "https://registry.npmjs.org/@serialport/parser-ready/-/parser-ready-9.0.1.tgz"; 1228 - sha512 = "lgzGkVJaaV1rJVx26WwI2UKyPxc0vu1rsOeldzA3VVbF+ABrblUQA06+cRPpT6k96GY+X4+1fB1rWuPpt8HbgQ=="; 1229 }; 1230 }; 1231 - "@serialport/parser-regex-9.0.1" = { 1232 name = "_at_serialport_slash_parser-regex"; 1233 packageName = "@serialport/parser-regex"; 1234 - version = "9.0.1"; 1235 src = fetchurl { 1236 - url = "https://registry.npmjs.org/@serialport/parser-regex/-/parser-regex-9.0.1.tgz"; 1237 - sha512 = "BHTV+Lkl+J8hSecFtDRENaR4fgA6tw44J+dmA1vEKEyum0iDN4bihbu8yvztYyo4PhBGUKDfm/PnD5EkJm0dPA=="; 1238 }; 1239 }; 1240 - "@serialport/stream-9.0.2" = { 1241 name = "_at_serialport_slash_stream"; 1242 packageName = "@serialport/stream"; 1243 - version = "9.0.2"; 1244 src = fetchurl { 1245 - url = "https://registry.npmjs.org/@serialport/stream/-/stream-9.0.2.tgz"; 1246 - sha512 = "0RkVe+gvwZu/PPfbb7ExQ+euGoCTGKD/B8TQ5fuhe+eKk1sh73RwjKmu9gp6veSNqx9Zljnh1dF6mhdEKWZpSA=="; 1247 }; 1248 }; 1249 - "@sinonjs/commons-1.8.1" = { 1250 name = "_at_sinonjs_slash_commons"; 1251 packageName = "@sinonjs/commons"; 1252 - version = "1.8.1"; 1253 src = fetchurl { 1254 - url = "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.1.tgz"; 1255 - sha512 = "892K+kWUUi3cl+LlqEWIDrhvLgdL79tECi8JZUyq6IviKy/DNhuzCRlbHUjxK89f4ypPMMaFnFuR9Ie6DoIMsw=="; 1256 }; 1257 }; 1258 "@sinonjs/fake-timers-6.0.1" = { ··· 1273 sha512 = "wMTHiiTiBAAPebqaPiPDLFA4LYPKr6Ph0Xq/6rq1Ur3v66HXyG+clfR9CNETkD7MQS8ZHvpQOtA53DLws5WAEQ=="; 1274 }; 1275 }; 1276 "@types/babel__generator-7.6.2" = { 1277 name = "_at_types_slash_babel__generator"; 1278 packageName = "@types/babel__generator"; ··· 1291 sha512 = "NTPErx4/FiPCGScH7foPyr+/1Dkzkni+rHiYHHoTjvwou7AQzJkNeD60A9CXRy+ZEN2B1bggmkTMCDb+Mv5k+A=="; 1292 }; 1293 }; 1294 - "@types/babel__traverse-7.0.15" = { 1295 name = "_at_types_slash_babel__traverse"; 1296 packageName = "@types/babel__traverse"; 1297 - version = "7.0.15"; 1298 src = fetchurl { 1299 - url = "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.0.15.tgz"; 1300 - sha512 = "Pzh9O3sTK8V6I1olsXpCfj2k/ygO2q1X0vhhnDrEQyYLHZesWz+zMZMVcwXLCYf0U36EtmyYaFGPfXlTtDHe3A=="; 1301 }; 1302 }; 1303 - "@types/babel__traverse-7.0.16" = { 1304 name = "_at_types_slash_babel__traverse"; 1305 packageName = "@types/babel__traverse"; 1306 - version = "7.0.16"; 1307 src = fetchurl { 1308 - url = "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.0.16.tgz"; 1309 - sha512 = "S63Dt4CZOkuTmpLGGWtT/mQdVORJOpx6SZWGVaP56dda/0Nx5nEe82K7/LAm8zYr6SfMq+1N2OreIOrHAx656w=="; 1310 }; 1311 }; 1312 "@types/debounce-1.2.0" = { ··· 1327 sha512 = "Q1y515GcOdTHgagaVFhHnIFQ38ygs/kmxdNpvpou+raI9UO3YZcHDngBSYKQklcKlvA7iuQlmIKbzvmxcOE9CQ=="; 1328 }; 1329 }; 1330 - "@types/graceful-fs-4.1.4" = { 1331 name = "_at_types_slash_graceful-fs"; 1332 packageName = "@types/graceful-fs"; 1333 - version = "4.1.4"; 1334 src = fetchurl { 1335 - url = "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.4.tgz"; 1336 - sha512 = "mWA/4zFQhfvOA8zWkXobwJvBD7vzcxgrOQ0J5CH1votGqdq9m7+FwtGaqyCZqC3NyyBkc9z4m+iry4LlqcMWJg=="; 1337 }; 1338 }; 1339 "@types/istanbul-lib-coverage-2.0.3" = { ··· 1363 sha512 = "nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA=="; 1364 }; 1365 }; 1366 - "@types/jest-26.0.15" = { 1367 name = "_at_types_slash_jest"; 1368 packageName = "@types/jest"; 1369 - version = "26.0.15"; 1370 src = fetchurl { 1371 - url = "https://registry.npmjs.org/@types/jest/-/jest-26.0.15.tgz"; 1372 - sha512 = "s2VMReFXRg9XXxV+CW9e5Nz8fH2K1aEhwgjUqPPbQd7g95T0laAcvLv032EhFHIa5GHsZ8W7iJEQVaJq6k3Gog=="; 1373 }; 1374 }; 1375 - "@types/json-schema-7.0.6" = { 1376 name = "_at_types_slash_json-schema"; 1377 packageName = "@types/json-schema"; 1378 - version = "7.0.6"; 1379 src = fetchurl { 1380 - url = "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.6.tgz"; 1381 - sha512 = "3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw=="; 1382 }; 1383 }; 1384 "@types/nedb-1.8.11" = { ··· 1390 sha512 = "qHQRLZ0e6l/XK/2Qb2v5N1ujmdttYkUvnRI4nPIifMy6vYwoAnER10xhX13isWjjQtNsrjNLinZgDDguzPmEKw=="; 1391 }; 1392 }; 1393 - "@types/node-14.14.10" = { 1394 name = "_at_types_slash_node"; 1395 packageName = "@types/node"; 1396 - version = "14.14.10"; 1397 src = fetchurl { 1398 - url = "https://registry.npmjs.org/@types/node/-/node-14.14.10.tgz"; 1399 - sha512 = "J32dgx2hw8vXrSbu4ZlVhn1Nm3GbeCFNw2FWL8S5QKucHGY0cyNwjdQdO+KMBZ4wpmC7KhLCiNsdk1RFRIYUQQ=="; 1400 }; 1401 }; 1402 - "@types/node-14.14.7" = { 1403 name = "_at_types_slash_node"; 1404 packageName = "@types/node"; 1405 - version = "14.14.7"; 1406 src = fetchurl { 1407 - url = "https://registry.npmjs.org/@types/node/-/node-14.14.7.tgz"; 1408 - sha512 = "Zw1vhUSQZYw+7u5dAwNbIA9TuTotpzY/OF7sJM9FqPOF3SPjKnxrjoTktXDZgUjybf4cWVBP7O8wvKdSaGHweg=="; 1409 }; 1410 }; 1411 "@types/normalize-package-data-2.4.0" = { ··· 1417 sha512 = "f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA=="; 1418 }; 1419 }; 1420 - "@types/prettier-2.1.5" = { 1421 name = "_at_types_slash_prettier"; 1422 packageName = "@types/prettier"; 1423 - version = "2.1.5"; 1424 src = fetchurl { 1425 - url = "https://registry.npmjs.org/@types/prettier/-/prettier-2.1.5.tgz"; 1426 - sha512 = "UEyp8LwZ4Dg30kVU2Q3amHHyTn1jEdhCIE59ANed76GaT1Vp76DD3ZWSAxgCrw6wJ0TqeoBpqmfUHiUDPs//HQ=="; 1427 }; 1428 }; 1429 "@types/serialport-8.0.1" = { ··· 1444 sha512 = "RJJrrySY7A8havqpGObOB4W92QXKJo63/jFLLgpvOtsGUqbQZ9Sbgl35KMm1DjC6j7AvmmU2bIno+3IyEaemaw=="; 1445 }; 1446 }; 1447 - "@types/yargs-15.0.10" = { 1448 name = "_at_types_slash_yargs"; 1449 packageName = "@types/yargs"; 1450 - version = "15.0.10"; 1451 src = fetchurl { 1452 - url = "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.10.tgz"; 1453 - sha512 = "z8PNtlhrj7eJNLmrAivM7rjBESG6JwC5xP3RVk12i/8HVP7Xnx/sEmERnRImyEuUaJfO942X0qMOYsoupaJbZQ=="; 1454 - }; 1455 - }; 1456 - "@types/yargs-15.0.9" = { 1457 - name = "_at_types_slash_yargs"; 1458 - packageName = "@types/yargs"; 1459 - version = "15.0.9"; 1460 - src = fetchurl { 1461 - url = "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.9.tgz"; 1462 - sha512 = "HmU8SeIRhZCWcnRskCs36Q1Q00KBV6Cqh/ora8WN1+22dY07AZdn6Gel8QZ3t26XYPImtcL8WV/eqjhVmMEw4g=="; 1463 }; 1464 }; 1465 - "@types/yargs-parser-15.0.0" = { 1466 name = "_at_types_slash_yargs-parser"; 1467 packageName = "@types/yargs-parser"; 1468 - version = "15.0.0"; 1469 src = fetchurl { 1470 - url = "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-15.0.0.tgz"; 1471 - sha512 = "FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw=="; 1472 }; 1473 }; 1474 - "@typescript-eslint/eslint-plugin-4.7.0" = { 1475 name = "_at_typescript-eslint_slash_eslint-plugin"; 1476 packageName = "@typescript-eslint/eslint-plugin"; 1477 - version = "4.7.0"; 1478 src = fetchurl { 1479 - url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.7.0.tgz"; 1480 - sha512 = "li9aiSVBBd7kU5VlQlT1AqP0uWGDK6JYKUQ9cVDnOg34VNnd9t4jr0Yqc/bKxJr/tDCPDaB4KzoSFN9fgVxe/Q=="; 1481 }; 1482 }; 1483 - "@typescript-eslint/experimental-utils-4.7.0" = { 1484 name = "_at_typescript-eslint_slash_experimental-utils"; 1485 packageName = "@typescript-eslint/experimental-utils"; 1486 - version = "4.7.0"; 1487 src = fetchurl { 1488 - url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.7.0.tgz"; 1489 - sha512 = "cymzovXAiD4EF+YoHAB5Oh02MpnXjvyaOb+v+BdpY7lsJXZQN34oIETeUwVT2XfV9rSNpXaIcknDLfupO/tUoA=="; 1490 }; 1491 }; 1492 - "@typescript-eslint/experimental-utils-4.8.2" = { 1493 name = "_at_typescript-eslint_slash_experimental-utils"; 1494 packageName = "@typescript-eslint/experimental-utils"; 1495 - version = "4.8.2"; 1496 src = fetchurl { 1497 - url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.8.2.tgz"; 1498 - sha512 = "hpTw6o6IhBZEsQsjuw/4RWmceRyESfAiEzAEnXHKG1X7S5DXFaZ4IO1JO7CW1aQ604leQBzjZmuMI9QBCAJX8Q=="; 1499 }; 1500 }; 1501 - "@typescript-eslint/parser-4.7.0" = { 1502 name = "_at_typescript-eslint_slash_parser"; 1503 packageName = "@typescript-eslint/parser"; 1504 - version = "4.7.0"; 1505 src = fetchurl { 1506 - url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.7.0.tgz"; 1507 - sha512 = "+meGV8bMP1sJHBI2AFq1GeTwofcGiur8LoIr6v+rEmD9knyCqDlrQcFHR0KDDfldHIFDU/enZ53fla6ReF4wRw=="; 1508 }; 1509 }; 1510 - "@typescript-eslint/scope-manager-4.7.0" = { 1511 name = "_at_typescript-eslint_slash_scope-manager"; 1512 packageName = "@typescript-eslint/scope-manager"; 1513 - version = "4.7.0"; 1514 src = fetchurl { 1515 - url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.7.0.tgz"; 1516 - sha512 = "ILITvqwDJYbcDCROj6+Ob0oCKNg3SH46iWcNcTIT9B5aiVssoTYkhKjxOMNzR1F7WSJkik4zmuqve5MdnA0DyA=="; 1517 }; 1518 }; 1519 - "@typescript-eslint/scope-manager-4.8.2" = { 1520 name = "_at_typescript-eslint_slash_scope-manager"; 1521 packageName = "@typescript-eslint/scope-manager"; 1522 - version = "4.8.2"; 1523 src = fetchurl { 1524 - url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.8.2.tgz"; 1525 - sha512 = "qHQ8ODi7mMin4Sq2eh/6eu03uVzsf5TX+J43xRmiq8ujng7ViQSHNPLOHGw/Wr5dFEoxq/ubKhzClIIdQy5q3g=="; 1526 }; 1527 }; 1528 - "@typescript-eslint/types-4.7.0" = { 1529 name = "_at_typescript-eslint_slash_types"; 1530 packageName = "@typescript-eslint/types"; 1531 - version = "4.7.0"; 1532 src = fetchurl { 1533 - url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.7.0.tgz"; 1534 - sha512 = "uLszFe0wExJc+I7q0Z/+BnP7wao/kzX0hB5vJn4LIgrfrMLgnB2UXoReV19lkJQS1a1mHWGGODSxnBx6JQC3Sg=="; 1535 }; 1536 }; 1537 - "@typescript-eslint/types-4.8.2" = { 1538 name = "_at_typescript-eslint_slash_types"; 1539 packageName = "@typescript-eslint/types"; 1540 - version = "4.8.2"; 1541 src = fetchurl { 1542 - url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.8.2.tgz"; 1543 - sha512 = "z1/AVcVF8ju5ObaHe2fOpZYEQrwHyZ7PTOlmjd3EoFeX9sv7UekQhfrCmgUO7PruLNfSHrJGQvrW3Q7xQ8EoAw=="; 1544 }; 1545 }; 1546 - "@typescript-eslint/typescript-estree-4.7.0" = { 1547 name = "_at_typescript-eslint_slash_typescript-estree"; 1548 packageName = "@typescript-eslint/typescript-estree"; 1549 - version = "4.7.0"; 1550 src = fetchurl { 1551 - url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.7.0.tgz"; 1552 - sha512 = "5XZRQznD1MfUmxu1t8/j2Af4OxbA7EFU2rbo0No7meb46eHgGkSieFdfV6omiC/DGIBhH9H9gXn7okBbVOm8jw=="; 1553 }; 1554 }; 1555 - "@typescript-eslint/typescript-estree-4.8.2" = { 1556 name = "_at_typescript-eslint_slash_typescript-estree"; 1557 packageName = "@typescript-eslint/typescript-estree"; 1558 - version = "4.8.2"; 1559 src = fetchurl { 1560 - url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.8.2.tgz"; 1561 - sha512 = "HToGNwI6fekH0dOw3XEVESUm71Onfam0AKin6f26S2FtUmO7o3cLlWgrIaT1q3vjB3wCTdww3Dx2iGq5wtUOCg=="; 1562 }; 1563 }; 1564 - "@typescript-eslint/visitor-keys-4.7.0" = { 1565 name = "_at_typescript-eslint_slash_visitor-keys"; 1566 packageName = "@typescript-eslint/visitor-keys"; 1567 - version = "4.7.0"; 1568 src = fetchurl { 1569 - url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.7.0.tgz"; 1570 - sha512 = "aDJDWuCRsf1lXOtignlfiPODkzSxxop7D0rZ91L6ZuMlcMCSh0YyK+gAfo5zN/ih6WxMwhoXgJWC3cWQdaKC+A=="; 1571 }; 1572 }; 1573 - "@typescript-eslint/visitor-keys-4.8.2" = { 1574 name = "_at_typescript-eslint_slash_visitor-keys"; 1575 packageName = "@typescript-eslint/visitor-keys"; 1576 - version = "4.8.2"; 1577 src = fetchurl { 1578 - url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.8.2.tgz"; 1579 - sha512 = "Vg+/SJTMZJEKKGHW7YC21QxgKJrSbxoYYd3MEUGtW7zuytHuEcksewq0DUmo4eh/CTNrVJGSdIY9AtRb6riWFw=="; 1580 }; 1581 }; 1582 "abab-2.0.5" = { ··· 1595 src = fetchurl { 1596 url = "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz"; 1597 sha512 = "nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="; 1598 }; 1599 }; 1600 "acorn-globals-6.0.0" = { ··· 1642 sha512 = "j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="; 1643 }; 1644 }; 1645 "ansi-colors-4.1.1" = { 1646 name = "ansi-colors"; 1647 packageName = "ansi-colors"; ··· 1660 sha512 = "JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA=="; 1661 }; 1662 }; 1663 "ansi-regex-2.1.1" = { 1664 name = "ansi-regex"; 1665 packageName = "ansi-regex"; ··· 1667 src = fetchurl { 1668 url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz"; 1669 sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df"; 1670 - }; 1671 - }; 1672 - "ansi-regex-4.1.0" = { 1673 - name = "ansi-regex"; 1674 - packageName = "ansi-regex"; 1675 - version = "4.1.0"; 1676 - src = fetchurl { 1677 - url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz"; 1678 - sha512 = "1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="; 1679 }; 1680 }; 1681 "ansi-regex-5.0.0" = { ··· 1822 sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"; 1823 }; 1824 }; 1825 - "astral-regex-1.0.0" = { 1826 name = "astral-regex"; 1827 packageName = "astral-regex"; 1828 - version = "1.0.0"; 1829 src = fetchurl { 1830 - url = "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz"; 1831 - sha512 = "+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg=="; 1832 }; 1833 }; 1834 "async-3.2.0" = { ··· 1894 sha512 = "xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA=="; 1895 }; 1896 }; 1897 - "axios-0.21.0" = { 1898 name = "axios"; 1899 packageName = "axios"; 1900 - version = "0.21.0"; 1901 src = fetchurl { 1902 - url = "https://registry.npmjs.org/axios/-/axios-0.21.0.tgz"; 1903 - sha512 = "fmkJBknJKoZwem3/IKSSLpkdNXZeBu5Q7GA/aRsr2btgrptmSCxi2oFjZHqGdK9DoTil9PIHlPIZw2EcRJXRvw=="; 1904 }; 1905 }; 1906 "babel-jest-26.6.3" = { ··· 1939 sha512 = "PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw=="; 1940 }; 1941 }; 1942 - "babel-preset-current-node-syntax-1.0.0" = { 1943 name = "babel-preset-current-node-syntax"; 1944 packageName = "babel-preset-current-node-syntax"; 1945 - version = "1.0.0"; 1946 src = fetchurl { 1947 - url = "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.0.tgz"; 1948 - sha512 = "mGkvkpocWJes1CmMKtgGUwCeeq0pOhALyymozzDWYomHTbDLwueDYG6p4TK1YOeYHCzBzYPsWkgTto10JubI1Q=="; 1949 }; 1950 }; 1951 "babel-preset-jest-26.6.2" = { ··· 2002 sha512 = "Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw=="; 2003 }; 2004 }; 2005 - "binary-extensions-2.1.0" = { 2006 name = "binary-extensions"; 2007 packageName = "binary-extensions"; 2008 - version = "2.1.0"; 2009 src = fetchurl { 2010 - url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz"; 2011 - sha512 = "1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ=="; 2012 }; 2013 }; 2014 "bindings-1.5.0" = { ··· 2020 sha512 = "p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ=="; 2021 }; 2022 }; 2023 - "bl-4.0.3" = { 2024 name = "bl"; 2025 packageName = "bl"; 2026 - version = "4.0.3"; 2027 src = fetchurl { 2028 - url = "https://registry.npmjs.org/bl/-/bl-4.0.3.tgz"; 2029 - sha512 = "fs4G6/Hu4/EE+F75J8DuN/0IpQqNjAdC7aEQv7Qt8MHGUH7Ckv2MwTEEeN9QehD0pfIDkMI1bkHYkKy7xHyKIg=="; 2030 }; 2031 }; 2032 "brace-expansion-1.1.11" = { ··· 2065 sha512 = "9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow=="; 2066 }; 2067 }; 2068 - "browserslist-4.14.7" = { 2069 name = "browserslist"; 2070 packageName = "browserslist"; 2071 - version = "4.14.7"; 2072 src = fetchurl { 2073 - url = "https://registry.npmjs.org/browserslist/-/browserslist-4.14.7.tgz"; 2074 - sha512 = "BSVRLCeG3Xt/j/1cCGj1019Wbty0H+Yvu2AOuZSuoaUWn3RatbL33Cxk+Q4jRMRAbOm0p7SLravLjpnT6s0vzQ=="; 2075 }; 2076 }; 2077 "bser-2.1.1" = { ··· 2119 sha512 = "AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ=="; 2120 }; 2121 }; 2122 - "call-bind-1.0.0" = { 2123 name = "call-bind"; 2124 packageName = "call-bind"; 2125 - version = "1.0.0"; 2126 src = fetchurl { 2127 - url = "https://registry.npmjs.org/call-bind/-/call-bind-1.0.0.tgz"; 2128 - sha512 = "AEXsYIyyDY3MCzbwdhzG3Jx1R0J2wetQyUynn6dYHAO+bg8l1k7jwZtRv4ryryFs7EP+NDlikJlVe59jr0cM2w=="; 2129 }; 2130 }; 2131 "callback-stream-1.1.0" = { ··· 2164 sha512 = "c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg=="; 2165 }; 2166 }; 2167 - "caniuse-lite-1.0.30001157" = { 2168 name = "caniuse-lite"; 2169 packageName = "caniuse-lite"; 2170 - version = "1.0.30001157"; 2171 src = fetchurl { 2172 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001157.tgz"; 2173 - sha512 = "gOerH9Wz2IRZ2ZPdMfBvyOi3cjaz4O4dgNwPGzx8EhqAs4+2IL/O+fJsbt+znSigujoZG8bVcIAUM/I/E5K3MA=="; 2174 }; 2175 }; 2176 "capture-exit-2.0.0" = { ··· 2218 sha512 = "kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw=="; 2219 }; 2220 }; 2221 - "chokidar-2.1.8" = { 2222 - name = "chokidar"; 2223 - packageName = "chokidar"; 2224 - version = "2.1.8"; 2225 - src = fetchurl { 2226 - url = "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz"; 2227 - sha512 = "ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg=="; 2228 - }; 2229 - }; 2230 - "chokidar-3.4.3" = { 2231 name = "chokidar"; 2232 packageName = "chokidar"; 2233 - version = "3.4.3"; 2234 src = fetchurl { 2235 - url = "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz"; 2236 - sha512 = "DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ=="; 2237 }; 2238 }; 2239 "chownr-1.1.4" = { ··· 2362 sha512 = "dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="; 2363 }; 2364 }; 2365 - "color-string-1.5.4" = { 2366 name = "color-string"; 2367 packageName = "color-string"; 2368 - version = "1.5.4"; 2369 src = fetchurl { 2370 - url = "https://registry.npmjs.org/color-string/-/color-string-1.5.4.tgz"; 2371 - sha512 = "57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw=="; 2372 }; 2373 }; 2374 - "colorette-1.2.1" = { 2375 name = "colorette"; 2376 packageName = "colorette"; 2377 - version = "1.2.1"; 2378 src = fetchurl { 2379 - url = "https://registry.npmjs.org/colorette/-/colorette-1.2.1.tgz"; 2380 - sha512 = "puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw=="; 2381 }; 2382 }; 2383 "colors-1.4.0" = { ··· 2479 sha1 = "676f6eb3c39997c2ee1ac3a924fd6124748f578d"; 2480 }; 2481 }; 2482 - "core-js-compat-3.7.0" = { 2483 name = "core-js-compat"; 2484 packageName = "core-js-compat"; 2485 - version = "3.7.0"; 2486 src = fetchurl { 2487 - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.7.0.tgz"; 2488 - sha512 = "V8yBI3+ZLDVomoWICO6kq/CD28Y4r1M7CWeO4AGpMdMfseu8bkSubBmUPySMGKRTS+su4XQ07zUkAsiu9FCWTg=="; 2489 }; 2490 }; 2491 "core-util-is-1.0.2" = { ··· 2578 sha512 = "mYtLl1xfZLi1m4RtQYlZgJUNQjl4ZxVnHzIR8nLLgi4q1YT8o/WM+MK/f8yfcc9s5Ir5zRaPZyZU6xs1Syoocg=="; 2579 }; 2580 }; 2581 "debug-2.6.9" = { 2582 name = "debug"; 2583 packageName = "debug"; ··· 2585 src = fetchurl { 2586 url = "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"; 2587 sha512 = "bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="; 2588 - }; 2589 - }; 2590 - "debug-4.2.0" = { 2591 - name = "debug"; 2592 - packageName = "debug"; 2593 - version = "4.2.0"; 2594 - src = fetchurl { 2595 - url = "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz"; 2596 - sha512 = "IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg=="; 2597 }; 2598 }; 2599 "debug-4.3.1" = { ··· 2657 src = fetchurl { 2658 url = "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz"; 2659 sha1 = "b369d6fb5dbc13eecf524f91b070feedc357cf34"; 2660 }; 2661 }; 2662 "deepmerge-4.2.2" = { ··· 2821 sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d"; 2822 }; 2823 }; 2824 - "electron-to-chromium-1.3.596" = { 2825 name = "electron-to-chromium"; 2826 packageName = "electron-to-chromium"; 2827 - version = "1.3.596"; 2828 src = fetchurl { 2829 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.596.tgz"; 2830 - sha512 = "nLO2Wd2yU42eSoNJVQKNf89CcEGqeFZd++QsnN2XIgje1s/19AgctfjLIbPORlvcCO8sYjLwX4iUgDdusOY8Sg=="; 2831 }; 2832 }; 2833 "emittery-0.7.2" = { ··· 2837 src = fetchurl { 2838 url = "https://registry.npmjs.org/emittery/-/emittery-0.7.2.tgz"; 2839 sha512 = "A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ=="; 2840 - }; 2841 - }; 2842 - "emoji-regex-7.0.3" = { 2843 - name = "emoji-regex"; 2844 - packageName = "emoji-regex"; 2845 - version = "7.0.3"; 2846 - src = fetchurl { 2847 - url = "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz"; 2848 - sha512 = "CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA=="; 2849 }; 2850 }; 2851 "emoji-regex-8.0.0" = { ··· 3001 sha512 = "qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw=="; 3002 }; 3003 }; 3004 - "eslint-7.13.0" = { 3005 name = "eslint"; 3006 packageName = "eslint"; 3007 - version = "7.13.0"; 3008 src = fetchurl { 3009 - url = "https://registry.npmjs.org/eslint/-/eslint-7.13.0.tgz"; 3010 - sha512 = "uCORMuOO8tUzJmsdRtrvcGq5qposf7Rw0LwkTJkoDbOycVQtQjmnhZSuLQnozLE4TmAzlMVV45eCHmQ1OpDKUQ=="; 3011 }; 3012 }; 3013 - "eslint-7.14.0" = { 3014 name = "eslint"; 3015 packageName = "eslint"; 3016 - version = "7.14.0"; 3017 src = fetchurl { 3018 - url = "https://registry.npmjs.org/eslint/-/eslint-7.14.0.tgz"; 3019 - sha512 = "5YubdnPXrlrYAFCKybPuHIAH++PINe1pmKNc5wQRB9HSbqIK1ywAnntE3Wwua4giKu0bjligf1gLF6qxMGOYRA=="; 3020 }; 3021 }; 3022 "eslint-config-google-0.14.0" = { ··· 3028 sha512 = "WsbX4WbjuMvTdeVL6+J3rK1RGhCTqjsFjX7UMSMgZiyxxaNLkoJENbrGExzERFeoTpGw3F3FypTiWAP9ZXzkEw=="; 3029 }; 3030 }; 3031 - "eslint-plugin-jest-24.1.3" = { 3032 name = "eslint-plugin-jest"; 3033 packageName = "eslint-plugin-jest"; 3034 - version = "24.1.3"; 3035 src = fetchurl { 3036 - url = "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-24.1.3.tgz"; 3037 - sha512 = "dNGGjzuEzCE3d5EPZQ/QGtmlMotqnYWD/QpCZ1UuZlrMAdhG5rldh0N0haCvhGnUkSeuORS5VNROwF9Hrgn3Lg=="; 3038 }; 3039 }; 3040 "eslint-scope-5.1.1" = { ··· 3073 sha512 = "QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ=="; 3074 }; 3075 }; 3076 - "espree-7.3.0" = { 3077 name = "espree"; 3078 packageName = "espree"; 3079 - version = "7.3.0"; 3080 src = fetchurl { 3081 - url = "https://registry.npmjs.org/espree/-/espree-7.3.0.tgz"; 3082 - sha512 = "dksIWsvKCixn1yrEXO8UosNSxaDoSYpq9reEjZSbHLpT5hpaCAKTLBwq0RHtLrIr+c0ByiYzWT8KTMRzoRCNlw=="; 3083 }; 3084 }; 3085 "esprima-4.0.1" = { ··· 3091 sha512 = "eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="; 3092 }; 3093 }; 3094 - "esquery-1.3.1" = { 3095 name = "esquery"; 3096 packageName = "esquery"; 3097 - version = "1.3.1"; 3098 src = fetchurl { 3099 - url = "https://registry.npmjs.org/esquery/-/esquery-1.3.1.tgz"; 3100 - sha512 = "olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ=="; 3101 }; 3102 }; 3103 "esrecurse-4.3.0" = { ··· 3163 sha512 = "sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A=="; 3164 }; 3165 }; 3166 "execa-1.0.0" = { 3167 name = "execa"; 3168 packageName = "execa"; ··· 3280 sha512 = "f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="; 3281 }; 3282 }; 3283 - "fast-glob-3.2.4" = { 3284 name = "fast-glob"; 3285 packageName = "fast-glob"; 3286 - version = "3.2.4"; 3287 src = fetchurl { 3288 - url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.4.tgz"; 3289 - sha512 = "kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ=="; 3290 }; 3291 }; 3292 "fast-json-stable-stringify-2.1.0" = { ··· 3316 sha512 = "Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA=="; 3317 }; 3318 }; 3319 - "fastq-1.9.0" = { 3320 name = "fastq"; 3321 packageName = "fastq"; 3322 - version = "1.9.0"; 3323 src = fetchurl { 3324 - url = "https://registry.npmjs.org/fastq/-/fastq-1.9.0.tgz"; 3325 - sha512 = "i7FVWL8HhVY+CTkwFxkN2mk3h+787ixS5S63eb78diVRc1MCssarHq3W5cj0av7YDSwmaV928RNag+U1etRQ7w=="; 3326 }; 3327 }; 3328 "fb-watchman-2.0.1" = { ··· 3343 sha512 = "aN3pcx/DSmtyoovUudctc8+6Hl4T+hI9GBBHLjA76jdZl7+b1sgh5g4k+u/GL3dTy1/pnYzKp69FpJ0OicE3Wg=="; 3344 }; 3345 }; 3346 - "file-entry-cache-5.0.1" = { 3347 name = "file-entry-cache"; 3348 packageName = "file-entry-cache"; 3349 - version = "5.0.1"; 3350 src = fetchurl { 3351 - url = "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz"; 3352 - sha512 = "bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g=="; 3353 }; 3354 }; 3355 "file-uri-to-path-1.0.0" = { ··· 3397 sha512 = "PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw=="; 3398 }; 3399 }; 3400 - "flat-cache-2.0.1" = { 3401 name = "flat-cache"; 3402 packageName = "flat-cache"; 3403 - version = "2.0.1"; 3404 src = fetchurl { 3405 - url = "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz"; 3406 - sha512 = "LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA=="; 3407 }; 3408 }; 3409 - "flatted-2.0.2" = { 3410 name = "flatted"; 3411 packageName = "flatted"; 3412 - version = "2.0.2"; 3413 src = fetchurl { 3414 - url = "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz"; 3415 - sha512 = "r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA=="; 3416 }; 3417 }; 3418 "fn.name-1.1.0" = { ··· 3424 sha512 = "GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw=="; 3425 }; 3426 }; 3427 - "follow-redirects-1.13.0" = { 3428 name = "follow-redirects"; 3429 packageName = "follow-redirects"; 3430 - version = "1.13.0"; 3431 src = fetchurl { 3432 - url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.0.tgz"; 3433 - sha512 = "aq6gF1BEKje4a9i9+5jimNFIpq4Q1WiwBToeRK5NvZBd/TRsmW8BsJfOEGkr76TbOyPVD3OVDN910EcUNtRYEA=="; 3434 }; 3435 }; 3436 "for-in-1.0.2" = { ··· 3487 sha512 = "y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow=="; 3488 }; 3489 }; 3490 - "fs-extra-9.0.1" = { 3491 name = "fs-extra"; 3492 packageName = "fs-extra"; 3493 - version = "9.0.1"; 3494 src = fetchurl { 3495 - url = "https://registry.npmjs.org/fs-extra/-/fs-extra-9.0.1.tgz"; 3496 - sha512 = "h2iAoN838FqAFJY2/qVpzFXy+EBxfVE220PalAqQLDVsFOHLJrZvut5puAbCdNv6WJk+B8ihI+k0c7JK5erwqQ=="; 3497 }; 3498 }; 3499 "fs-readdir-recursive-1.1.0" = { ··· 3514 sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f"; 3515 }; 3516 }; 3517 - "fsevents-1.2.13" = { 3518 - name = "fsevents"; 3519 - packageName = "fsevents"; 3520 - version = "1.2.13"; 3521 - src = fetchurl { 3522 - url = "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz"; 3523 - sha512 = "oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw=="; 3524 - }; 3525 - }; 3526 - "fsevents-2.1.3" = { 3527 name = "fsevents"; 3528 packageName = "fsevents"; 3529 - version = "2.1.3"; 3530 src = fetchurl { 3531 - url = "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz"; 3532 - sha512 = "Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ=="; 3533 - }; 3534 - }; 3535 - "fsevents-2.2.1" = { 3536 - name = "fsevents"; 3537 - packageName = "fsevents"; 3538 - version = "2.2.1"; 3539 - src = fetchurl { 3540 - url = "https://registry.npmjs.org/fsevents/-/fsevents-2.2.1.tgz"; 3541 - sha512 = "bTLYHSeC0UH/EFXS9KqWnXuOl/wHK5Z/d+ghd5AsFMYN7wIGkUCOJyzy88+wJKkZPGON8u4Z9f6U4FdgURE9qA=="; 3542 }; 3543 }; 3544 "function-bind-1.1.1" = { ··· 3586 sha512 = "DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="; 3587 }; 3588 }; 3589 - "get-intrinsic-1.0.1" = { 3590 name = "get-intrinsic"; 3591 packageName = "get-intrinsic"; 3592 - version = "1.0.1"; 3593 src = fetchurl { 3594 - url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.0.1.tgz"; 3595 - sha512 = "ZnWP+AmS1VUaLgTRy47+zKtjTxz+0xMpx3I52i+aalBK1QP19ggLF3Db89KJX7kjfOfP2eoa01qc++GwPgufPg=="; 3596 }; 3597 }; 3598 "get-package-type-0.1.0" = { ··· 3685 sha512 = "FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ=="; 3686 }; 3687 }; 3688 "glob-stream-6.1.0" = { 3689 name = "glob-stream"; 3690 packageName = "glob-stream"; ··· 3712 sha512 = "BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg=="; 3713 }; 3714 }; 3715 - "globby-11.0.1" = { 3716 name = "globby"; 3717 packageName = "globby"; 3718 - version = "11.0.1"; 3719 src = fetchurl { 3720 - url = "https://registry.npmjs.org/globby/-/globby-11.0.1.tgz"; 3721 - sha512 = "iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ=="; 3722 }; 3723 }; 3724 "glossy-0.1.7" = { ··· 3730 sha1 = "769b5984a96f6066ab9ea758224825ee6c210f0b"; 3731 }; 3732 }; 3733 - "graceful-fs-4.2.4" = { 3734 name = "graceful-fs"; 3735 packageName = "graceful-fs"; 3736 - version = "4.2.4"; 3737 src = fetchurl { 3738 - url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz"; 3739 - sha512 = "WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw=="; 3740 }; 3741 }; 3742 "growly-1.3.0" = { ··· 3748 sha1 = "f10748cbe76af964b7c96c93c6bcc28af120c081"; 3749 }; 3750 }; 3751 - "handlebars-4.7.6" = { 3752 name = "handlebars"; 3753 packageName = "handlebars"; 3754 - version = "4.7.6"; 3755 src = fetchurl { 3756 - url = "https://registry.npmjs.org/handlebars/-/handlebars-4.7.6.tgz"; 3757 - sha512 = "1f2BACcBfiwAfStCKZNrUCgqNZkGsAT7UM3kkYtXuLo0KnaVfjKOyf7PRzB6++aK9STyT1Pd2ZCPe3EGOXleXA=="; 3758 }; 3759 }; 3760 "har-schema-2.0.0" = { ··· 3802 sha512 = "EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="; 3803 }; 3804 }; 3805 - "has-symbols-1.0.1" = { 3806 name = "has-symbols"; 3807 packageName = "has-symbols"; 3808 - version = "1.0.1"; 3809 src = fetchurl { 3810 - url = "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz"; 3811 - sha512 = "PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg=="; 3812 }; 3813 }; 3814 "has-unicode-2.0.1" = { ··· 3865 sha1 = "8f2d508d0600b4a456da2f086556e7e5c056a3c6"; 3866 }; 3867 }; 3868 - "highlight.js-10.3.2" = { 3869 - name = "highlight.js"; 3870 - packageName = "highlight.js"; 3871 - version = "10.3.2"; 3872 - src = fetchurl { 3873 - url = "https://registry.npmjs.org/highlight.js/-/highlight.js-10.3.2.tgz"; 3874 - sha512 = "3jRT7OUYsVsKvukNKZCtnvRcFyCJqSEIuIMsEybAXRiFSwpt65qjPd/Pr+UOdYt7WJlt+lj3+ypUsHiySBp/Jw=="; 3875 - }; 3876 - }; 3877 "hosted-git-info-2.8.8" = { 3878 name = "hosted-git-info"; 3879 packageName = "hosted-git-info"; ··· 3937 sha512 = "SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw=="; 3938 }; 3939 }; 3940 - "humanize-duration-3.24.0" = { 3941 name = "humanize-duration"; 3942 packageName = "humanize-duration"; 3943 - version = "3.24.0"; 3944 src = fetchurl { 3945 - url = "https://registry.npmjs.org/humanize-duration/-/humanize-duration-3.24.0.tgz"; 3946 - sha512 = "B3udnqisaDeRsvUSb+5n2hjxhABI9jotB+i1IEhgHhguTeM5LxIUKoVIu7UpeyaPOygr/Fnv7UhOi45kYYG+tg=="; 3947 }; 3948 }; 3949 "iconv-lite-0.4.24" = { ··· 3982 sha512 = "BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw=="; 3983 }; 3984 }; 3985 - "import-fresh-3.2.2" = { 3986 name = "import-fresh"; 3987 packageName = "import-fresh"; 3988 - version = "3.2.2"; 3989 src = fetchurl { 3990 - url = "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.2.tgz"; 3991 - sha512 = "cTPNrlvJT6twpYy+YmKUKrTSjWFs3bjYjAhCwm+z4EOCubZxAuO+hHpRN64TqjEaYSHs7tJAE0w1CKMGmsG/lw=="; 3992 }; 3993 }; 3994 "import-local-3.0.2" = { ··· 4027 sha512 = "k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="; 4028 }; 4029 }; 4030 - "ini-1.3.5" = { 4031 name = "ini"; 4032 packageName = "ini"; 4033 - version = "1.3.5"; 4034 src = fetchurl { 4035 - url = "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz"; 4036 - sha512 = "RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw=="; 4037 }; 4038 }; 4039 "interpret-1.4.0" = { ··· 4133 src = fetchurl { 4134 url = "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz"; 4135 sha512 = "YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w=="; 4136 - }; 4137 - }; 4138 - "is-core-module-2.1.0" = { 4139 - name = "is-core-module"; 4140 - packageName = "is-core-module"; 4141 - version = "2.1.0"; 4142 - src = fetchurl { 4143 - url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.1.0.tgz"; 4144 - sha512 = "YcV7BgVMRFRua2FqQzKtTDMz8iCuLEyGKjr70q8Zm1yy2qKcurbFEd79PAdHV77oL3NrAaOVQIbMmiHQCHB7ZA=="; 4145 }; 4146 }; 4147 "is-core-module-2.2.0" = { ··· 4232 src = fetchurl { 4233 url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz"; 4234 sha1 = "ef9e31386f031a7f0d643af82fde50c457ef00cb"; 4235 - }; 4236 - }; 4237 - "is-fullwidth-code-point-2.0.0" = { 4238 - name = "is-fullwidth-code-point"; 4239 - packageName = "is-fullwidth-code-point"; 4240 - version = "2.0.0"; 4241 - src = fetchurl { 4242 - url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz"; 4243 - sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f"; 4244 }; 4245 }; 4246 "is-fullwidth-code-point-3.0.0" = { ··· 4738 sha512 = "RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="; 4739 }; 4740 }; 4741 - "js-yaml-3.14.0" = { 4742 name = "js-yaml"; 4743 packageName = "js-yaml"; 4744 - version = "3.14.0"; 4745 src = fetchurl { 4746 - url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.0.tgz"; 4747 - sha512 = "/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A=="; 4748 }; 4749 }; 4750 "jsbn-0.1.1" = { ··· 4765 sha512 = "lYMm3wYdgPhrl7pDcRmvzPhhrGVBeVhPIqeHjzeiHN3DFmD1RBpbExbi8vU7BJdH8VAZYovR8DMt0PNNDM7k8w=="; 4766 }; 4767 }; 4768 "jsesc-0.5.0" = { 4769 name = "jsesc"; 4770 packageName = "jsesc"; ··· 4810 sha512 = "xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="; 4811 }; 4812 }; 4813 "json-stable-stringify-without-jsonify-1.0.1" = { 4814 name = "json-stable-stringify-without-jsonify"; 4815 packageName = "json-stable-stringify-without-jsonify"; ··· 4828 sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"; 4829 }; 4830 }; 4831 - "json5-2.1.3" = { 4832 name = "json5"; 4833 packageName = "json5"; 4834 - version = "2.1.3"; 4835 src = fetchurl { 4836 - url = "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz"; 4837 - sha512 = "KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA=="; 4838 }; 4839 }; 4840 "jsonfile-6.1.0" = { ··· 4963 sha512 = "t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g=="; 4964 }; 4965 }; 4966 - "lodash-4.17.20" = { 4967 name = "lodash"; 4968 packageName = "lodash"; 4969 - version = "4.17.20"; 4970 src = fetchurl { 4971 - url = "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz"; 4972 - sha512 = "PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="; 4973 }; 4974 }; 4975 "lodash.sortby-4.7.0" = { ··· 4990 sha512 = "N0qPlqfypFx7UHNn4B3lzS/b0uLqt2hmuoa+PpuXNYgozdJYAyauF5Ky0BWVjrxDlMWiT3qN4zPq3vVAfZy7Yg=="; 4991 }; 4992 }; 4993 "lunr-2.3.9" = { 4994 name = "lunr"; 4995 packageName = "lunr"; ··· 5044 sha1 = "ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"; 5045 }; 5046 }; 5047 - "marked-1.2.3" = { 5048 name = "marked"; 5049 packageName = "marked"; 5050 - version = "1.2.3"; 5051 src = fetchurl { 5052 - url = "https://registry.npmjs.org/marked/-/marked-1.2.3.tgz"; 5053 - sha512 = "RQuL2i6I6Gn+9n81IDNGbL0VHnta4a+8ZhqvryXEniTb/hQNtf3i26hi1XWUhzb9BgVyWHKR3UO8MaHtKoYibw=="; 5054 }; 5055 }; 5056 "merge-stream-2.0.0" = { ··· 5098 sha512 = "x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg=="; 5099 }; 5100 }; 5101 - "mime-db-1.44.0" = { 5102 name = "mime-db"; 5103 packageName = "mime-db"; 5104 - version = "1.44.0"; 5105 src = fetchurl { 5106 - url = "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz"; 5107 - sha512 = "/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg=="; 5108 }; 5109 }; 5110 - "mime-types-2.1.27" = { 5111 name = "mime-types"; 5112 packageName = "mime-types"; 5113 - version = "2.1.27"; 5114 src = fetchurl { 5115 - url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz"; 5116 - sha512 = "JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w=="; 5117 }; 5118 }; 5119 "mimic-fn-2.1.0" = { ··· 5179 sha512 = "gbTtiEu8P/GSMh1lAa0YYNr8XIfDzFgnWtetw3Hfz9nw6YXySHNYOZF/uUTgyp8GHvFnNw/EG7VhOkD6zfVb6A=="; 5180 }; 5181 }; 5182 - "mkdirp-0.5.5" = { 5183 - name = "mkdirp"; 5184 - packageName = "mkdirp"; 5185 - version = "0.5.5"; 5186 - src = fetchurl { 5187 - url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz"; 5188 - sha512 = "NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ=="; 5189 - }; 5190 - }; 5191 "mkdirp-classic-0.5.3" = { 5192 name = "mkdirp-classic"; 5193 packageName = "mkdirp-classic"; ··· 5215 sha512 = "Iv893r+jWlo5GkNcPOfCGwW8M49IixwHiKLFFYTociEymSibUVCORVEjPXWPGzSxhn7BdlUeHicbRmWiv0Crkg=="; 5216 }; 5217 }; 5218 - "mqtt-packet-6.6.0" = { 5219 name = "mqtt-packet"; 5220 packageName = "mqtt-packet"; 5221 - version = "6.6.0"; 5222 src = fetchurl { 5223 - url = "https://registry.npmjs.org/mqtt-packet/-/mqtt-packet-6.6.0.tgz"; 5224 - sha512 = "LvghnKMFC70hKWMVykmhJarlO5e7lT3t9s9A2qPCUx+lazL3Mq55U+eCV0eLi7/nRRQYvEUWo/2tTo89EjnCJQ=="; 5225 }; 5226 }; 5227 "ms-2.0.0" = { ··· 5251 sha512 = "sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="; 5252 }; 5253 }; 5254 "nan-2.14.2" = { 5255 name = "nan"; 5256 packageName = "nan"; ··· 5314 sha512 = "1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ=="; 5315 }; 5316 }; 5317 - "node-abi-2.19.1" = { 5318 name = "node-abi"; 5319 packageName = "node-abi"; 5320 - version = "2.19.1"; 5321 src = fetchurl { 5322 - url = "https://registry.npmjs.org/node-abi/-/node-abi-2.19.1.tgz"; 5323 - sha512 = "HbtmIuByq44yhAzK7b9j/FelKlHYISKQn0mtvcBrU5QBkhoCMp5bu8Hv5AI34DcKfOAcJBcOEMwLlwO62FFu9A=="; 5324 }; 5325 }; 5326 "node-int64-0.4.0" = { ··· 5341 sha1 = "8d9dbe28964a4ac5712e9131642107c71e90ec40"; 5342 }; 5343 }; 5344 - "node-notifier-8.0.0" = { 5345 name = "node-notifier"; 5346 packageName = "node-notifier"; 5347 - version = "8.0.0"; 5348 src = fetchurl { 5349 - url = "https://registry.npmjs.org/node-notifier/-/node-notifier-8.0.0.tgz"; 5350 - sha512 = "46z7DUmcjoYdaWyXouuFNNfUo6eFa94t23c53c+lG/9Cvauk4a98rAUp9672X5dxGdQmLpPzTxzu8f/OeEPaFA=="; 5351 }; 5352 }; 5353 - "node-releases-1.1.66" = { 5354 name = "node-releases"; 5355 packageName = "node-releases"; 5356 - version = "1.1.66"; 5357 src = fetchurl { 5358 - url = "https://registry.npmjs.org/node-releases/-/node-releases-1.1.66.tgz"; 5359 - sha512 = "JHEQ1iWPGK+38VLB2H9ef2otU4l8s3yAMt9Xf934r6+ojCYDMHPMqvCc9TnzfeFSP1QEOeU6YZEd3+De0LTCgg=="; 5360 }; 5361 }; 5362 "noop-logger-0.1.1" = { ··· 5548 sha512 = "kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg=="; 5549 }; 5550 }; 5551 "optionator-0.8.3" = { 5552 name = "optionator"; 5553 packageName = "optionator"; ··· 5575 sha1 = "77c0cb37c41525d64166d990ffad7ec6a0e1363e"; 5576 }; 5577 }; 5578 - "p-each-series-2.1.0" = { 5579 - name = "p-each-series"; 5580 - packageName = "p-each-series"; 5581 - version = "2.1.0"; 5582 - src = fetchurl { 5583 - url = "https://registry.npmjs.org/p-each-series/-/p-each-series-2.1.0.tgz"; 5584 - sha512 = "ZuRs1miPT4HrjFa+9fRfOFXxGJfORgelKV9f9nNOWw2gl6gVsRaVDOQP0+MI0G0wGKns1Yacsu0GjOFbTK0JFQ=="; 5585 - }; 5586 - }; 5587 "p-each-series-2.2.0" = { 5588 name = "p-each-series"; 5589 packageName = "p-each-series"; ··· 5638 sha512 = "GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g=="; 5639 }; 5640 }; 5641 - "parse-json-5.1.0" = { 5642 name = "parse-json"; 5643 packageName = "parse-json"; 5644 - version = "5.1.0"; 5645 src = fetchurl { 5646 - url = "https://registry.npmjs.org/parse-json/-/parse-json-5.1.0.tgz"; 5647 - sha512 = "+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ=="; 5648 }; 5649 }; 5650 "parse5-5.1.1" = { ··· 5656 sha512 = "ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug=="; 5657 }; 5658 }; 5659 "parseurl-1.3.3" = { 5660 name = "parseurl"; 5661 packageName = "parseurl"; ··· 5791 sha1 = "01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"; 5792 }; 5793 }; 5794 - "prebuild-install-5.3.6" = { 5795 name = "prebuild-install"; 5796 packageName = "prebuild-install"; 5797 - version = "5.3.6"; 5798 src = fetchurl { 5799 - url = "https://registry.npmjs.org/prebuild-install/-/prebuild-install-5.3.6.tgz"; 5800 - sha512 = "s8Aai8++QQGi4sSbs/M1Qku62PFK49Jm1CbgXklGz4nmHveDq0wzJkg7Na5QbnO1uNH8K7iqx2EQ/mV0MZEmOg=="; 5801 }; 5802 }; 5803 "prelude-ls-1.1.2" = { ··· 5908 sha512 = "N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA=="; 5909 }; 5910 }; 5911 "range-parser-1.2.1" = { 5912 name = "range-parser"; 5913 packageName = "range-parser"; ··· 5933 src = fetchurl { 5934 url = "https://registry.npmjs.org/react-is/-/react-is-17.0.1.tgz"; 5935 sha512 = "NAnt2iGDXohE5LI7uBnLnqvLQMtzhkiAOLXTmv+qnF9Ky7xAPcX8Up/xWIhxvLVGJvuLiNc4xQLtuqDRzb4fSA=="; 5936 }; 5937 }; 5938 "read-pkg-5.2.0" = { ··· 6070 sha512 = "OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A=="; 6071 }; 6072 }; 6073 - "regjsparser-0.6.4" = { 6074 name = "regjsparser"; 6075 packageName = "regjsparser"; 6076 - version = "0.6.4"; 6077 src = fetchurl { 6078 - url = "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.4.tgz"; 6079 - sha512 = "64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw=="; 6080 }; 6081 }; 6082 "reinterval-1.1.0" = { ··· 6151 sha1 = "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"; 6152 }; 6153 }; 6154 "require-main-filename-2.0.0" = { 6155 name = "require-main-filename"; 6156 packageName = "require-main-filename"; ··· 6160 sha512 = "NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg=="; 6161 }; 6162 }; 6163 - "resolve-1.19.0" = { 6164 name = "resolve"; 6165 packageName = "resolve"; 6166 - version = "1.19.0"; 6167 src = fetchurl { 6168 - url = "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz"; 6169 - sha512 = "rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg=="; 6170 }; 6171 }; 6172 "resolve-cwd-3.0.0" = { ··· 6223 sha512 = "U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw=="; 6224 }; 6225 }; 6226 - "rimraf-2.6.3" = { 6227 - name = "rimraf"; 6228 - packageName = "rimraf"; 6229 - version = "2.6.3"; 6230 - src = fetchurl { 6231 - url = "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz"; 6232 - sha512 = "mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA=="; 6233 - }; 6234 - }; 6235 "rimraf-3.0.2" = { 6236 name = "rimraf"; 6237 packageName = "rimraf"; ··· 6250 sha512 = "nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA=="; 6251 }; 6252 }; 6253 - "run-parallel-1.1.10" = { 6254 name = "run-parallel"; 6255 packageName = "run-parallel"; 6256 - version = "1.1.10"; 6257 src = fetchurl { 6258 - url = "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.10.tgz"; 6259 - sha512 = "zb/1OuZ6flOlH6tQyMPUrE3x3Ulxjlo9WIVXR4yVYi4H9UXQaeIsPbLn2R3O3vQCnDKkAl2qHiuocKKX4Tz/Sw=="; 6260 }; 6261 }; 6262 "safe-buffer-5.1.2" = { ··· 6340 sha512 = "+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A=="; 6341 }; 6342 }; 6343 - "semver-7.3.2" = { 6344 name = "semver"; 6345 packageName = "semver"; 6346 - version = "7.3.2"; 6347 src = fetchurl { 6348 - url = "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz"; 6349 - sha512 = "OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ=="; 6350 }; 6351 }; 6352 "send-0.17.1" = { ··· 6358 sha512 = "BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg=="; 6359 }; 6360 }; 6361 - "serialport-9.0.2" = { 6362 name = "serialport"; 6363 packageName = "serialport"; 6364 - version = "9.0.2"; 6365 src = fetchurl { 6366 - url = "https://registry.npmjs.org/serialport/-/serialport-9.0.2.tgz"; 6367 - sha512 = "N++EVrc2F3kUJ6aCE6BLxHwTrelFAZM3LFw4lo8TV0fDtfrwTc3+aoDpSsvfQg3DxrRf3shCtA6WYEH4g8kapw=="; 6368 }; 6369 }; 6370 "serve-static-1.14.1" = { ··· 6457 sha512 = "vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww=="; 6458 }; 6459 }; 6460 "signal-exit-3.0.3" = { 6461 name = "signal-exit"; 6462 packageName = "signal-exit"; ··· 6520 sha512 = "g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q=="; 6521 }; 6522 }; 6523 - "slice-ansi-2.1.0" = { 6524 name = "slice-ansi"; 6525 packageName = "slice-ansi"; 6526 - version = "2.1.0"; 6527 src = fetchurl { 6528 - url = "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz"; 6529 - sha512 = "Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ=="; 6530 }; 6531 }; 6532 "slip-1.0.2" = { ··· 6610 sha512 = "Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw=="; 6611 }; 6612 }; 6613 - "source-map-url-0.4.0" = { 6614 name = "source-map-url"; 6615 packageName = "source-map-url"; 6616 - version = "0.4.0"; 6617 src = fetchurl { 6618 - url = "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz"; 6619 - sha1 = "3e935d7ddd73631b97659956d55128e87b5084a3"; 6620 }; 6621 }; 6622 "spdx-correct-3.1.1" = { ··· 6646 sha512 = "cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q=="; 6647 }; 6648 }; 6649 - "spdx-license-ids-3.0.6" = { 6650 name = "spdx-license-ids"; 6651 packageName = "spdx-license-ids"; 6652 - version = "3.0.6"; 6653 src = fetchurl { 6654 - url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.6.tgz"; 6655 - sha512 = "+orQK83kyMva3WyPf59k1+Y525csj5JejicWut55zeTWANuN17qSiSLUXWtzHeNWORSvT7GLDJ/E/XiIWoXBTw=="; 6656 }; 6657 }; 6658 "split-string-3.1.0" = { ··· 6754 sha512 = "PKyXUd0LK0ePjSOnWn34V2uD6acUWev9uy0Ft05k0E8xRW+SKcA0F7eMr7h5xlzfn+4O3N+55rduYyet3Jk+jw=="; 6755 }; 6756 }; 6757 "string-width-1.0.2" = { 6758 name = "string-width"; 6759 packageName = "string-width"; ··· 6763 sha1 = "118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"; 6764 }; 6765 }; 6766 - "string-width-3.1.0" = { 6767 - name = "string-width"; 6768 - packageName = "string-width"; 6769 - version = "3.1.0"; 6770 - src = fetchurl { 6771 - url = "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz"; 6772 - sha512 = "vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w=="; 6773 - }; 6774 - }; 6775 - "string-width-4.2.0" = { 6776 name = "string-width"; 6777 packageName = "string-width"; 6778 - version = "4.2.0"; 6779 src = fetchurl { 6780 - url = "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz"; 6781 - sha512 = "zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg=="; 6782 }; 6783 }; 6784 "string_decoder-1.1.1" = { ··· 6806 src = fetchurl { 6807 url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz"; 6808 sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"; 6809 - }; 6810 - }; 6811 - "strip-ansi-5.2.0" = { 6812 - name = "strip-ansi"; 6813 - packageName = "strip-ansi"; 6814 - version = "5.2.0"; 6815 - src = fetchurl { 6816 - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz"; 6817 - sha512 = "DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA=="; 6818 }; 6819 }; 6820 "strip-ansi-6.0.0" = { ··· 6907 sha512 = "9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw=="; 6908 }; 6909 }; 6910 - "table-5.4.6" = { 6911 name = "table"; 6912 packageName = "table"; 6913 - version = "5.4.6"; 6914 src = fetchurl { 6915 - url = "https://registry.npmjs.org/table/-/table-5.4.6.tgz"; 6916 - sha512 = "wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug=="; 6917 }; 6918 }; 6919 "tar-fs-2.1.1" = { ··· 6925 sha512 = "V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng=="; 6926 }; 6927 }; 6928 - "tar-stream-2.1.4" = { 6929 name = "tar-stream"; 6930 packageName = "tar-stream"; 6931 - version = "2.1.4"; 6932 src = fetchurl { 6933 - url = "https://registry.npmjs.org/tar-stream/-/tar-stream-2.1.4.tgz"; 6934 - sha512 = "o3pS2zlG4gxr67GmFYBLlq+dM8gyRGUOvsrHclSkvtVtQbjV0s/+ZE8OpICbaj8clrX3tjeHngYGP7rweaBnuw=="; 6935 }; 6936 }; 6937 "terminal-link-2.1.1" = { ··· 7087 sha512 = "yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg=="; 7088 }; 7089 }; 7090 "tr46-2.0.2" = { 7091 name = "tr46"; 7092 packageName = "tr46"; ··· 7114 sha512 = "Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="; 7115 }; 7116 }; 7117 - "tsutils-3.17.1" = { 7118 name = "tsutils"; 7119 packageName = "tsutils"; 7120 - version = "3.17.1"; 7121 src = fetchurl { 7122 - url = "https://registry.npmjs.org/tsutils/-/tsutils-3.17.1.tgz"; 7123 - sha512 = "kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g=="; 7124 }; 7125 }; 7126 "tunnel-agent-0.6.0" = { ··· 7150 sha512 = "+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg=="; 7151 }; 7152 }; 7153 - "type-2.1.0" = { 7154 name = "type"; 7155 packageName = "type"; 7156 - version = "2.1.0"; 7157 src = fetchurl { 7158 - url = "https://registry.npmjs.org/type/-/type-2.1.0.tgz"; 7159 - sha512 = "G9absDWvhAWCV2gmF1zKud3OyC61nZDwWvBL2DApaVFogI07CprggiQAOOjvp2NRjYWFzPyu7vwtDrQFq8jeSA=="; 7160 }; 7161 }; 7162 "type-check-0.3.2" = { ··· 7195 sha512 = "OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ=="; 7196 }; 7197 }; 7198 "type-fest-0.6.0" = { 7199 name = "type-fest"; 7200 packageName = "type-fest"; ··· 7231 sha512 = "zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q=="; 7232 }; 7233 }; 7234 - "typedoc-0.19.2" = { 7235 name = "typedoc"; 7236 packageName = "typedoc"; 7237 - version = "0.19.2"; 7238 src = fetchurl { 7239 - url = "https://registry.npmjs.org/typedoc/-/typedoc-0.19.2.tgz"; 7240 - sha512 = "oDEg1BLEzi1qvgdQXc658EYgJ5qJLVSeZ0hQ57Eq4JXy6Vj2VX4RVo18qYxRWz75ifAaYuYNBUCnbhjd37TfOg=="; 7241 }; 7242 }; 7243 - "typedoc-default-themes-0.11.4" = { 7244 name = "typedoc-default-themes"; 7245 packageName = "typedoc-default-themes"; 7246 - version = "0.11.4"; 7247 src = fetchurl { 7248 - url = "https://registry.npmjs.org/typedoc-default-themes/-/typedoc-default-themes-0.11.4.tgz"; 7249 - sha512 = "Y4Lf+qIb9NTydrexlazAM46SSLrmrQRqWiD52593g53SsmUFioAsMWt8m834J6qsp+7wHRjxCXSZeiiW5cMUdw=="; 7250 }; 7251 }; 7252 - "typedoc-plugin-markdown-3.0.11" = { 7253 name = "typedoc-plugin-markdown"; 7254 packageName = "typedoc-plugin-markdown"; 7255 - version = "3.0.11"; 7256 src = fetchurl { 7257 - url = "https://registry.npmjs.org/typedoc-plugin-markdown/-/typedoc-plugin-markdown-3.0.11.tgz"; 7258 - sha512 = "/BE/PqnIVbQJ525czM+T3CVaA1gVN9X1Le100z8TV/Lze8LZVkuAUiHRIgw9BKYFm9IQaB88W55k4EV6uUVwYQ=="; 7259 }; 7260 }; 7261 "typedoc-plugin-no-inherit-1.2.0" = { ··· 7276 sha512 = "xHq9DzkoQywS7FyPneMm2/Hr9GRoCpjSQXkVN0W6SCJKP7fguqg2tasgh+8l5/mW6YSYvqCqEbkSYLbuD4Y6gA=="; 7277 }; 7278 }; 7279 - "typescript-4.0.5" = { 7280 name = "typescript"; 7281 packageName = "typescript"; 7282 - version = "4.0.5"; 7283 src = fetchurl { 7284 - url = "https://registry.npmjs.org/typescript/-/typescript-4.0.5.tgz"; 7285 - sha512 = "ywmr/VrTVCmNTJ6iV2LwIrfG1P+lv6luD8sUJs+2eI9NLGigaN+nUQc13iHqisq7bra9lnmUSYqbJvegraBOPQ=="; 7286 }; 7287 }; 7288 - "uglify-js-3.11.6" = { 7289 name = "uglify-js"; 7290 packageName = "uglify-js"; 7291 - version = "3.11.6"; 7292 src = fetchurl { 7293 - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.11.6.tgz"; 7294 - sha512 = "oASI1FOJ7BBFkSCNDZ446EgkSuHkOZBuqRFrwXIKWCoXw8ZXQETooTQjkAcBS03Acab7ubCKsXnwuV2svy061g=="; 7295 }; 7296 }; 7297 "unc-path-regex-0.1.2" = { ··· 7357 sha512 = "2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A=="; 7358 }; 7359 }; 7360 - "universalify-1.0.0" = { 7361 name = "universalify"; 7362 packageName = "universalify"; 7363 - version = "1.0.0"; 7364 src = fetchurl { 7365 - url = "https://registry.npmjs.org/universalify/-/universalify-1.0.0.tgz"; 7366 - sha512 = "rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug=="; 7367 }; 7368 }; 7369 "universalify-2.0.0" = { ··· 7411 sha512 = "aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg=="; 7412 }; 7413 }; 7414 - "uri-js-4.4.0" = { 7415 name = "uri-js"; 7416 packageName = "uri-js"; 7417 - version = "4.4.0"; 7418 src = fetchurl { 7419 - url = "https://registry.npmjs.org/uri-js/-/uri-js-4.4.0.tgz"; 7420 - sha512 = "B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g=="; 7421 }; 7422 }; 7423 "urix-0.1.0" = { ··· 7456 sha512 = "HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="; 7457 }; 7458 }; 7459 - "uuid-8.3.1" = { 7460 name = "uuid"; 7461 packageName = "uuid"; 7462 - version = "8.3.1"; 7463 src = fetchurl { 7464 - url = "https://registry.npmjs.org/uuid/-/uuid-8.3.1.tgz"; 7465 - sha512 = "FOmRr+FmWEIG8uhZv6C2bTgEVXsHk08kE7mPlrBbEe+c3r9pjceVPgupIfNIhc4yx55H69OXANrUaSuu9eInKg=="; 7466 }; 7467 }; 7468 "v8-compile-cache-2.2.0" = { ··· 7474 sha512 = "gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q=="; 7475 }; 7476 }; 7477 - "v8-to-istanbul-7.0.0" = { 7478 name = "v8-to-istanbul"; 7479 packageName = "v8-to-istanbul"; 7480 - version = "7.0.0"; 7481 src = fetchurl { 7482 - url = "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-7.0.0.tgz"; 7483 - sha512 = "fLL2rFuQpMtm9r8hrAV2apXX/WqHJ6+IC4/eQVdMDGBUgH/YMV4Gv3duk3kjmyg6uiQWBAA9nJwue4iJUOkHeA=="; 7484 }; 7485 }; 7486 "validate-npm-package-license-3.0.4" = { ··· 7499 src = fetchurl { 7500 url = "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz"; 7501 sha1 = "3a105ca17053af55d6e270c1f8288682e18da400"; 7502 }; 7503 }; 7504 "w3c-hr-time-1.0.2" = { ··· 7573 sha512 = "vwTUFf6V4zhcPkWp/4CQPr1TW9Ml6SF4lVyaIMBdJw5i6qUUJ1QWM4Z6YYVkfka0OUIzVo/0aNtGVGk256IKWw=="; 7574 }; 7575 }; 7576 "which-1.3.1" = { 7577 name = "which"; 7578 packageName = "which"; ··· 7681 sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"; 7682 }; 7683 }; 7684 - "write-1.0.3" = { 7685 - name = "write"; 7686 - packageName = "write"; 7687 - version = "1.0.3"; 7688 - src = fetchurl { 7689 - url = "https://registry.npmjs.org/write/-/write-1.0.3.tgz"; 7690 - sha512 = "/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig=="; 7691 - }; 7692 - }; 7693 "write-file-atomic-3.0.3" = { 7694 name = "write-file-atomic"; 7695 packageName = "write-file-atomic"; ··· 7699 sha512 = "AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q=="; 7700 }; 7701 }; 7702 - "ws-7.4.0" = { 7703 name = "ws"; 7704 packageName = "ws"; 7705 - version = "7.4.0"; 7706 src = fetchurl { 7707 - url = "https://registry.npmjs.org/ws/-/ws-7.4.0.tgz"; 7708 - sha512 = "kyFwXuV/5ymf+IXhS6f0+eAFvydbaBW3zjpT6hUdAh/hbVjTIB5EHBGi0bPoCLSK2wcuz3BrEkB9LrYv1Nm4NQ=="; 7709 }; 7710 }; 7711 "xml-name-validator-3.0.0" = { ··· 7735 sha512 = "LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="; 7736 }; 7737 }; 7738 - "y18n-4.0.0" = { 7739 name = "y18n"; 7740 packageName = "y18n"; 7741 version = "4.0.0"; 7742 src = fetchurl { 7743 - url = "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz"; 7744 - sha512 = "r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w=="; 7745 }; 7746 }; 7747 "yargs-15.4.1" = { ··· 7762 sha512 = "o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ=="; 7763 }; 7764 }; 7765 - "zigbee-herdsman-0.13.37" = { 7766 name = "zigbee-herdsman"; 7767 packageName = "zigbee-herdsman"; 7768 - version = "0.13.37"; 7769 src = fetchurl { 7770 - url = "https://registry.npmjs.org/zigbee-herdsman/-/zigbee-herdsman-0.13.37.tgz"; 7771 - sha512 = "eK2EK2mqT80ueHvEicKmXGyw+VezoK+7NcHX9WjjeQL6bdOpaLCuDGZY0sOh86Lmodyvdd0ZxY7MwA6z/Ko2PA=="; 7772 }; 7773 }; 7774 - "zigbee-herdsman-converters-13.0.7" = { 7775 name = "zigbee-herdsman-converters"; 7776 packageName = "zigbee-herdsman-converters"; 7777 - version = "13.0.7"; 7778 src = fetchurl { 7779 - url = "https://registry.npmjs.org/zigbee-herdsman-converters/-/zigbee-herdsman-converters-13.0.7.tgz"; 7780 - sha512 = "aHqcbkQmoSkBth4s94//wJm2UO+0YFQkIndRBbz1XAIdNeHDhUVA6ZT1B1DgJZEbF/HRW8ZZLC+biSF6h/1HvQ=="; 7781 }; 7782 }; 7783 - "zigbee2mqtt-frontend-0.2.100" = { 7784 name = "zigbee2mqtt-frontend"; 7785 packageName = "zigbee2mqtt-frontend"; 7786 - version = "0.2.100"; 7787 src = fetchurl { 7788 - url = "https://registry.npmjs.org/zigbee2mqtt-frontend/-/zigbee2mqtt-frontend-0.2.100.tgz"; 7789 - sha512 = "/WASdNtWYAqts8RvC3j6HkdnZifg2KEocGS1eIl1G7Gghoj/80TiF5TVYtU3YG9M40vgMIIMvIwrmc8UOmdJhg=="; 7790 }; 7791 }; 7792 }; 7793 args = { 7794 name = "zigbee2mqtt"; 7795 packageName = "zigbee2mqtt"; 7796 - version = "1.16.2"; 7797 src = ./.; 7798 dependencies = [ 7799 sources."@dabh/diagnostics-2.0.2" ··· 7803 sources."balanced-match-1.0.0" 7804 sources."base64-js-1.5.1" 7805 sources."bindings-1.5.0" 7806 - (sources."bl-4.0.3" // { 7807 dependencies = [ 7808 sources."readable-stream-3.6.0" 7809 ]; ··· 7815 sources."color-3.0.0" 7816 sources."color-convert-1.9.3" 7817 sources."color-name-1.1.3" 7818 - sources."color-string-1.5.4" 7819 sources."colors-1.4.0" 7820 sources."colorspace-1.1.2" 7821 sources."commist-1.1.0" ··· 7823 sources."concat-stream-1.6.2" 7824 sources."core-util-is-1.0.2" 7825 sources."d-1.0.1" 7826 - sources."debounce-1.2.0" 7827 sources."debug-2.6.9" 7828 sources."depd-1.1.2" 7829 sources."destroy-1.0.4" 7830 sources."duplexify-3.7.1" ··· 7847 sources."event-emitter-0.3.5" 7848 (sources."ext-1.4.0" // { 7849 dependencies = [ 7850 - sources."type-2.1.0" 7851 ]; 7852 }) 7853 sources."extend-3.0.2" ··· 7867 sources."glossy-0.1.7" 7868 sources."help-me-1.1.0" 7869 sources."http-errors-1.7.3" 7870 - sources."humanize-duration-3.24.0" 7871 sources."ieee754-1.2.1" 7872 sources."inflight-1.0.6" 7873 sources."inherits-2.0.4" ··· 7881 sources."is-unc-path-1.0.0" 7882 sources."is-windows-1.0.2" 7883 sources."isarray-1.0.0" 7884 - sources."js-yaml-3.14.0" 7885 sources."json-schema-traverse-0.4.1" 7886 sources."json-stable-stringify-without-jsonify-1.0.1" 7887 sources."kuler-2.0.0" 7888 sources."leven-2.1.0" 7889 (sources."logform-2.2.0" // { 7890 dependencies = [ 7891 - sources."ms-2.1.2" 7892 ]; 7893 }) 7894 sources."mime-1.6.0" 7895 sources."minimatch-3.0.4" 7896 sources."minimist-1.2.5" ··· 7902 sources."ms-2.1.2" 7903 ]; 7904 }) 7905 - (sources."mqtt-packet-6.6.0" // { 7906 dependencies = [ 7907 sources."debug-4.3.1" 7908 sources."ms-2.1.2" ··· 7933 sources."remove-trailing-separator-1.1.0" 7934 sources."rimraf-3.0.2" 7935 sources."safe-buffer-5.1.2" 7936 - sources."semver-7.3.2" 7937 (sources."send-0.17.1" // { 7938 dependencies = [ 7939 sources."ms-2.1.1" ··· 7964 sources."unique-stream-2.3.1" 7965 sources."unix-dgram-2.0.3" 7966 sources."unpipe-1.0.0" 7967 - sources."uri-js-4.4.0" 7968 sources."util-deprecate-1.0.2" 7969 (sources."winston-3.3.3" // { 7970 dependencies = [ ··· 7974 sources."winston-syslog-2.4.4" 7975 sources."winston-transport-4.4.0" 7976 sources."wrappy-1.0.2" 7977 - sources."ws-7.4.0" 7978 sources."xtend-4.0.2" 7979 - (sources."zigbee-herdsman-0.13.37" // { 7980 dependencies = [ 7981 - sources."@babel/cli-7.12.1" 7982 - sources."@babel/code-frame-7.10.4" 7983 - sources."@babel/compat-data-7.12.5" 7984 - sources."@babel/core-7.12.3" 7985 - sources."@babel/generator-7.12.5" 7986 - sources."@babel/helper-annotate-as-pure-7.10.4" 7987 - sources."@babel/helper-builder-binary-assignment-operator-visitor-7.10.4" 7988 - sources."@babel/helper-compilation-targets-7.12.5" 7989 - sources."@babel/helper-create-class-features-plugin-7.12.1" 7990 - sources."@babel/helper-create-regexp-features-plugin-7.12.1" 7991 - sources."@babel/helper-define-map-7.10.5" 7992 - sources."@babel/helper-explode-assignable-expression-7.12.1" 7993 - sources."@babel/helper-function-name-7.10.4" 7994 - sources."@babel/helper-get-function-arity-7.10.4" 7995 - sources."@babel/helper-hoist-variables-7.10.4" 7996 - sources."@babel/helper-member-expression-to-functions-7.12.1" 7997 - sources."@babel/helper-module-imports-7.12.5" 7998 - sources."@babel/helper-module-transforms-7.12.1" 7999 - sources."@babel/helper-optimise-call-expression-7.10.4" 8000 - sources."@babel/helper-plugin-utils-7.10.4" 8001 - sources."@babel/helper-regex-7.10.5" 8002 - sources."@babel/helper-remap-async-to-generator-7.12.1" 8003 - sources."@babel/helper-replace-supers-7.12.5" 8004 - sources."@babel/helper-simple-access-7.12.1" 8005 sources."@babel/helper-skip-transparent-expression-wrappers-7.12.1" 8006 - sources."@babel/helper-split-export-declaration-7.11.0" 8007 - sources."@babel/helper-validator-identifier-7.10.4" 8008 - sources."@babel/helper-validator-option-7.12.1" 8009 - sources."@babel/helper-wrap-function-7.12.3" 8010 - sources."@babel/helpers-7.12.5" 8011 - sources."@babel/highlight-7.10.4" 8012 - sources."@babel/parser-7.12.5" 8013 - sources."@babel/plugin-proposal-async-generator-functions-7.12.1" 8014 - sources."@babel/plugin-proposal-class-properties-7.12.1" 8015 - sources."@babel/plugin-proposal-dynamic-import-7.12.1" 8016 - sources."@babel/plugin-proposal-export-namespace-from-7.12.1" 8017 - sources."@babel/plugin-proposal-json-strings-7.12.1" 8018 - sources."@babel/plugin-proposal-logical-assignment-operators-7.12.1" 8019 - sources."@babel/plugin-proposal-nullish-coalescing-operator-7.12.1" 8020 - sources."@babel/plugin-proposal-numeric-separator-7.12.5" 8021 - sources."@babel/plugin-proposal-object-rest-spread-7.12.1" 8022 - sources."@babel/plugin-proposal-optional-catch-binding-7.12.1" 8023 - sources."@babel/plugin-proposal-optional-chaining-7.12.1" 8024 - sources."@babel/plugin-proposal-private-methods-7.12.1" 8025 - sources."@babel/plugin-proposal-unicode-property-regex-7.12.1" 8026 sources."@babel/plugin-syntax-async-generators-7.8.4" 8027 sources."@babel/plugin-syntax-bigint-7.8.3" 8028 - sources."@babel/plugin-syntax-class-properties-7.12.1" 8029 sources."@babel/plugin-syntax-dynamic-import-7.8.3" 8030 sources."@babel/plugin-syntax-export-namespace-from-7.8.3" 8031 sources."@babel/plugin-syntax-import-meta-7.10.4" ··· 8036 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" 8037 sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" 8038 sources."@babel/plugin-syntax-optional-chaining-7.8.3" 8039 - sources."@babel/plugin-syntax-top-level-await-7.12.1" 8040 - sources."@babel/plugin-syntax-typescript-7.12.1" 8041 - sources."@babel/plugin-transform-arrow-functions-7.12.1" 8042 - sources."@babel/plugin-transform-async-to-generator-7.12.1" 8043 - sources."@babel/plugin-transform-block-scoped-functions-7.12.1" 8044 - sources."@babel/plugin-transform-block-scoping-7.12.1" 8045 - sources."@babel/plugin-transform-classes-7.12.1" 8046 - sources."@babel/plugin-transform-computed-properties-7.12.1" 8047 - sources."@babel/plugin-transform-destructuring-7.12.1" 8048 - sources."@babel/plugin-transform-dotall-regex-7.12.1" 8049 - sources."@babel/plugin-transform-duplicate-keys-7.12.1" 8050 - sources."@babel/plugin-transform-exponentiation-operator-7.12.1" 8051 - sources."@babel/plugin-transform-for-of-7.12.1" 8052 - sources."@babel/plugin-transform-function-name-7.12.1" 8053 - sources."@babel/plugin-transform-literals-7.12.1" 8054 - sources."@babel/plugin-transform-member-expression-literals-7.12.1" 8055 - sources."@babel/plugin-transform-modules-amd-7.12.1" 8056 - sources."@babel/plugin-transform-modules-commonjs-7.12.1" 8057 - sources."@babel/plugin-transform-modules-systemjs-7.12.1" 8058 - sources."@babel/plugin-transform-modules-umd-7.12.1" 8059 - sources."@babel/plugin-transform-named-capturing-groups-regex-7.12.1" 8060 - sources."@babel/plugin-transform-new-target-7.12.1" 8061 - sources."@babel/plugin-transform-object-super-7.12.1" 8062 - sources."@babel/plugin-transform-parameters-7.12.1" 8063 - sources."@babel/plugin-transform-property-literals-7.12.1" 8064 - sources."@babel/plugin-transform-regenerator-7.12.1" 8065 - sources."@babel/plugin-transform-reserved-words-7.12.1" 8066 - sources."@babel/plugin-transform-shorthand-properties-7.12.1" 8067 - sources."@babel/plugin-transform-spread-7.12.1" 8068 - sources."@babel/plugin-transform-sticky-regex-7.12.1" 8069 - sources."@babel/plugin-transform-template-literals-7.12.1" 8070 - sources."@babel/plugin-transform-typeof-symbol-7.12.1" 8071 - sources."@babel/plugin-transform-typescript-7.12.1" 8072 - sources."@babel/plugin-transform-unicode-escapes-7.12.1" 8073 - sources."@babel/plugin-transform-unicode-regex-7.12.1" 8074 - sources."@babel/preset-env-7.12.1" 8075 sources."@babel/preset-modules-0.1.4" 8076 - sources."@babel/preset-typescript-7.12.1" 8077 - sources."@babel/runtime-7.12.5" 8078 - sources."@babel/template-7.10.4" 8079 - sources."@babel/traverse-7.12.5" 8080 - sources."@babel/types-7.12.6" 8081 sources."@bcoe/v8-coverage-0.2.3" 8082 sources."@cnakazawa/watch-1.0.4" 8083 - (sources."@eslint/eslintrc-0.2.1" // { 8084 dependencies = [ 8085 sources."globals-12.4.0" 8086 sources."ignore-4.0.6" ··· 8088 ]; 8089 }) 8090 sources."@istanbuljs/load-nyc-config-1.1.0" 8091 - sources."@istanbuljs/schema-0.1.2" 8092 (sources."@jest/console-26.6.2" // { 8093 dependencies = [ 8094 sources."ansi-styles-4.3.0" ··· 8112 sources."has-flag-4.0.0" 8113 sources."is-number-7.0.0" 8114 sources."micromatch-4.0.2" 8115 - sources."rimraf-3.0.2" 8116 sources."slash-3.0.0" 8117 sources."strip-ansi-6.0.0" 8118 sources."supports-color-7.2.0" ··· 8168 sources."supports-color-7.2.0" 8169 ]; 8170 }) 8171 - (sources."@nicolo-ribaudo/chokidar-2-2.1.8" // { 8172 - dependencies = [ 8173 - sources."chokidar-2.1.8" 8174 - ]; 8175 - }) 8176 - sources."@nodelib/fs.scandir-2.1.3" 8177 - sources."@nodelib/fs.stat-2.0.3" 8178 - sources."@nodelib/fs.walk-1.2.4" 8179 - sources."@serialport/binding-abstract-9.0.2" 8180 - sources."@serialport/binding-mock-9.0.2" 8181 - sources."@serialport/bindings-9.0.2" 8182 - sources."@serialport/parser-byte-length-9.0.1" 8183 - sources."@serialport/parser-cctalk-9.0.1" 8184 - sources."@serialport/parser-delimiter-9.0.1" 8185 - sources."@serialport/parser-readline-9.0.1" 8186 - sources."@serialport/parser-ready-9.0.1" 8187 - sources."@serialport/parser-regex-9.0.1" 8188 - sources."@serialport/stream-9.0.2" 8189 - sources."@sinonjs/commons-1.8.1" 8190 sources."@sinonjs/fake-timers-6.0.1" 8191 sources."@types/babel__core-7.1.12" 8192 sources."@types/babel__generator-7.6.2" 8193 sources."@types/babel__template-7.4.0" 8194 - sources."@types/babel__traverse-7.0.15" 8195 sources."@types/debounce-1.2.0" 8196 sources."@types/debug-4.1.5" 8197 - sources."@types/graceful-fs-4.1.4" 8198 sources."@types/istanbul-lib-coverage-2.0.3" 8199 sources."@types/istanbul-lib-report-3.0.0" 8200 sources."@types/istanbul-reports-3.0.0" 8201 - sources."@types/jest-26.0.15" 8202 - sources."@types/json-schema-7.0.6" 8203 sources."@types/nedb-1.8.11" 8204 - sources."@types/node-14.14.7" 8205 sources."@types/normalize-package-data-2.4.0" 8206 - sources."@types/prettier-2.1.5" 8207 sources."@types/serialport-8.0.1" 8208 sources."@types/stack-utils-2.0.0" 8209 - sources."@types/yargs-15.0.9" 8210 - sources."@types/yargs-parser-15.0.0" 8211 - (sources."@typescript-eslint/eslint-plugin-4.7.0" // { 8212 dependencies = [ 8213 - sources."semver-7.3.2" 8214 ]; 8215 }) 8216 - sources."@typescript-eslint/experimental-utils-4.7.0" 8217 - sources."@typescript-eslint/parser-4.7.0" 8218 - sources."@typescript-eslint/scope-manager-4.7.0" 8219 - sources."@typescript-eslint/types-4.7.0" 8220 - (sources."@typescript-eslint/typescript-estree-4.7.0" // { 8221 dependencies = [ 8222 - sources."semver-7.3.2" 8223 ]; 8224 }) 8225 - sources."@typescript-eslint/visitor-keys-4.7.0" 8226 sources."abab-2.0.5" 8227 sources."acorn-7.4.1" 8228 sources."acorn-globals-6.0.0" ··· 8253 sources."asn1-0.2.4" 8254 sources."assert-plus-1.0.0" 8255 sources."assign-symbols-1.0.0" 8256 - sources."astral-regex-1.0.0" 8257 sources."async-each-1.0.3" 8258 sources."asynckit-0.4.0" 8259 sources."at-least-node-1.0.0" ··· 8274 sources."babel-plugin-dynamic-import-node-2.3.3" 8275 sources."babel-plugin-istanbul-6.0.0" 8276 sources."babel-plugin-jest-hoist-26.6.2" 8277 - sources."babel-preset-current-node-syntax-1.0.0" 8278 sources."babel-preset-jest-26.6.2" 8279 sources."balanced-match-1.0.0" 8280 (sources."base-0.11.2" // { ··· 8291 sources."bcrypt-pbkdf-1.0.2" 8292 sources."binary-extensions-1.13.1" 8293 sources."bindings-1.5.0" 8294 - (sources."bl-4.0.3" // { 8295 dependencies = [ 8296 sources."readable-stream-3.6.0" 8297 ]; ··· 8303 ]; 8304 }) 8305 sources."browser-process-hrtime-1.0.0" 8306 - sources."browserslist-4.14.7" 8307 sources."bser-2.1.1" 8308 sources."buffer-5.7.1" 8309 sources."buffer-from-1.1.1" 8310 sources."cache-base-1.0.1" 8311 - sources."call-bind-1.0.0" 8312 sources."callsites-3.1.0" 8313 sources."camelcase-5.3.1" 8314 - sources."caniuse-lite-1.0.30001157" 8315 sources."capture-exit-2.0.0" 8316 sources."caseless-0.12.0" 8317 sources."chalk-2.4.2" 8318 sources."char-regex-1.0.2" 8319 - (sources."chokidar-3.4.3" // { 8320 dependencies = [ 8321 sources."anymatch-3.1.1" 8322 - sources."binary-extensions-2.1.0" 8323 sources."braces-3.0.2" 8324 sources."fill-range-7.0.1" 8325 - sources."fsevents-2.1.3" 8326 sources."glob-parent-5.1.1" 8327 sources."is-binary-path-2.1.0" 8328 sources."is-number-7.0.0" ··· 8341 (sources."cliui-6.0.0" // { 8342 dependencies = [ 8343 sources."ansi-regex-5.0.0" 8344 - sources."emoji-regex-8.0.0" 8345 sources."is-fullwidth-code-point-3.0.0" 8346 - sources."string-width-4.2.0" 8347 sources."strip-ansi-6.0.0" 8348 ]; 8349 }) ··· 8353 sources."collection-visit-1.0.0" 8354 sources."color-convert-1.9.3" 8355 sources."color-name-1.1.3" 8356 - sources."colorette-1.2.1" 8357 sources."combined-stream-1.0.8" 8358 sources."commander-4.1.1" 8359 sources."component-emitter-1.3.0" ··· 8361 sources."console-control-strings-1.1.0" 8362 sources."convert-source-map-1.7.0" 8363 sources."copy-descriptor-0.1.1" 8364 - (sources."core-js-compat-3.7.0" // { 8365 dependencies = [ 8366 sources."semver-7.0.0" 8367 ]; ··· 8377 sources."dashdash-1.14.1" 8378 sources."data-urls-2.0.0" 8379 sources."debounce-1.2.0" 8380 - sources."debug-4.2.0" 8381 sources."decamelize-1.2.0" 8382 sources."decimal.js-10.2.1" 8383 sources."decode-uri-component-0.2.0" ··· 8406 ]; 8407 }) 8408 sources."ecc-jsbn-0.1.2" 8409 - sources."electron-to-chromium-1.3.596" 8410 sources."emittery-0.7.2" 8411 - sources."emoji-regex-7.0.3" 8412 sources."end-of-stream-1.4.4" 8413 sources."enquirer-2.3.6" 8414 sources."error-ex-1.3.2" ··· 8423 sources."type-check-0.3.2" 8424 ]; 8425 }) 8426 - (sources."eslint-7.13.0" // { 8427 dependencies = [ 8428 sources."ansi-regex-5.0.0" 8429 sources."ansi-styles-4.3.0" 8430 sources."chalk-4.1.0" ··· 8436 sources."has-flag-4.0.0" 8437 sources."ignore-4.0.6" 8438 sources."path-key-3.1.1" 8439 - sources."semver-7.3.2" 8440 sources."shebang-command-2.0.0" 8441 sources."shebang-regex-3.0.0" 8442 sources."strip-ansi-6.0.0" ··· 8452 ]; 8453 }) 8454 sources."eslint-visitor-keys-2.0.0" 8455 - (sources."espree-7.3.0" // { 8456 dependencies = [ 8457 sources."eslint-visitor-keys-1.3.0" 8458 ]; 8459 }) 8460 sources."esprima-4.0.1" 8461 - (sources."esquery-1.3.1" // { 8462 dependencies = [ 8463 sources."estraverse-5.2.0" 8464 ]; ··· 8506 }) 8507 sources."extsprintf-1.3.0" 8508 sources."fast-deep-equal-3.1.3" 8509 - (sources."fast-glob-3.2.4" // { 8510 dependencies = [ 8511 sources."braces-3.0.2" 8512 sources."fill-range-7.0.1" ··· 8518 }) 8519 sources."fast-json-stable-stringify-2.1.0" 8520 sources."fast-levenshtein-2.0.6" 8521 - sources."fastq-1.9.0" 8522 sources."fb-watchman-2.0.1" 8523 - sources."file-entry-cache-5.0.1" 8524 sources."file-uri-to-path-1.0.0" 8525 (sources."fill-range-4.0.0" // { 8526 dependencies = [ ··· 8528 ]; 8529 }) 8530 sources."find-up-4.1.0" 8531 - sources."flat-cache-2.0.1" 8532 - sources."flatted-2.0.2" 8533 sources."for-in-1.0.2" 8534 sources."forever-agent-0.6.1" 8535 sources."form-data-2.3.3" 8536 sources."fragment-cache-0.2.1" 8537 sources."fs-constants-1.0.0" 8538 - sources."fs-extra-9.0.1" 8539 sources."fs-readdir-recursive-1.1.0" 8540 sources."fs.realpath-1.0.0" 8541 - sources."fsevents-1.2.13" 8542 sources."function-bind-1.1.1" 8543 sources."functional-red-black-tree-1.0.1" 8544 sources."gauge-2.7.4" 8545 sources."gensync-1.0.0-beta.2" 8546 sources."get-caller-file-2.0.5" 8547 - sources."get-intrinsic-1.0.1" 8548 sources."get-package-type-0.1.0" 8549 sources."get-stream-4.1.0" 8550 sources."get-value-2.0.6" ··· 8557 ]; 8558 }) 8559 sources."globals-11.12.0" 8560 - (sources."globby-11.0.1" // { 8561 dependencies = [ 8562 sources."slash-3.0.0" 8563 ]; 8564 }) 8565 - sources."graceful-fs-4.2.4" 8566 sources."growly-1.3.0" 8567 - (sources."handlebars-4.7.6" // { 8568 dependencies = [ 8569 sources."source-map-0.6.1" 8570 ]; ··· 8573 sources."har-validator-5.1.5" 8574 sources."has-1.0.3" 8575 sources."has-flag-3.0.0" 8576 - sources."has-symbols-1.0.1" 8577 sources."has-unicode-2.0.1" 8578 sources."has-value-1.0.0" 8579 (sources."has-values-1.0.0" // { ··· 8581 sources."kind-of-4.0.0" 8582 ]; 8583 }) 8584 - sources."highlight.js-10.3.2" 8585 sources."hosted-git-info-2.8.8" 8586 sources."html-encoding-sniffer-2.0.1" 8587 sources."html-escaper-2.0.2" ··· 8590 sources."iconv-lite-0.4.24" 8591 sources."ieee754-1.2.1" 8592 sources."ignore-5.1.8" 8593 - (sources."import-fresh-3.2.2" // { 8594 dependencies = [ 8595 sources."resolve-from-4.0.0" 8596 ]; ··· 8599 sources."imurmurhash-0.1.4" 8600 sources."inflight-1.0.6" 8601 sources."inherits-2.0.4" 8602 - sources."ini-1.3.5" 8603 sources."interpret-1.4.0" 8604 sources."ip-regex-2.1.0" 8605 (sources."is-accessor-descriptor-0.1.6" // { ··· 8611 sources."is-binary-path-1.0.1" 8612 sources."is-buffer-1.1.6" 8613 sources."is-ci-2.0.0" 8614 - sources."is-core-module-2.1.0" 8615 (sources."is-data-descriptor-0.1.4" // { 8616 dependencies = [ 8617 sources."kind-of-3.2.2" ··· 8731 sources."anymatch-3.1.1" 8732 sources."braces-3.0.2" 8733 sources."fill-range-7.0.1" 8734 - sources."fsevents-2.2.1" 8735 sources."is-number-7.0.0" 8736 sources."micromatch-4.0.2" 8737 sources."to-regex-range-5.0.1" ··· 8818 sources."color-convert-2.0.1" 8819 sources."color-name-1.1.4" 8820 sources."has-flag-4.0.0" 8821 - sources."semver-7.3.2" 8822 sources."supports-color-7.2.0" 8823 ]; 8824 }) ··· 8865 ]; 8866 }) 8867 sources."js-tokens-4.0.0" 8868 - sources."js-yaml-3.14.0" 8869 sources."jsbn-0.1.1" 8870 sources."jsdom-16.4.0" 8871 sources."jsesc-2.5.2" ··· 8874 sources."json-schema-traverse-0.4.1" 8875 sources."json-stable-stringify-without-jsonify-1.0.1" 8876 sources."json-stringify-safe-5.0.1" 8877 - sources."json5-2.1.3" 8878 - (sources."jsonfile-6.1.0" // { 8879 - dependencies = [ 8880 - sources."universalify-2.0.0" 8881 - ]; 8882 - }) 8883 sources."jsprim-1.4.1" 8884 sources."kind-of-6.0.3" 8885 sources."kleur-3.0.3" ··· 8887 sources."levn-0.4.1" 8888 sources."lines-and-columns-1.1.6" 8889 sources."locate-path-5.0.0" 8890 - sources."lodash-4.17.20" 8891 sources."lodash.sortby-4.7.0" 8892 sources."lunr-2.3.9" 8893 sources."make-dir-2.1.0" 8894 sources."makeerror-1.0.11" 8895 sources."map-cache-0.2.2" 8896 sources."map-visit-1.0.0" 8897 - sources."marked-1.2.3" 8898 sources."merge-stream-2.0.0" 8899 sources."merge2-1.4.1" 8900 sources."micromatch-3.1.10" 8901 - sources."mime-db-1.44.0" 8902 - sources."mime-types-2.1.27" 8903 sources."mimic-fn-2.1.0" 8904 sources."mimic-response-2.1.0" 8905 sources."minimatch-3.0.4" 8906 sources."minimist-1.2.5" 8907 sources."mixin-deep-2.0.1" 8908 - sources."mkdirp-0.5.5" 8909 sources."mkdirp-classic-0.5.3" 8910 sources."ms-2.1.2" 8911 sources."nan-2.14.2" ··· 8914 sources."natural-compare-1.4.0" 8915 sources."neo-async-2.6.2" 8916 sources."nice-try-1.0.5" 8917 - sources."node-abi-2.19.1" 8918 sources."node-int64-0.4.0" 8919 sources."node-modules-regexp-1.0.0" 8920 - (sources."node-notifier-8.0.0" // { 8921 dependencies = [ 8922 - sources."semver-7.3.2" 8923 sources."which-2.0.2" 8924 ]; 8925 }) 8926 - sources."node-releases-1.1.66" 8927 sources."noop-logger-0.1.1" 8928 sources."normalize-package-data-2.5.0" 8929 sources."normalize-path-3.0.0" ··· 8945 sources."object.pick-1.3.0" 8946 sources."once-1.4.0" 8947 sources."onetime-5.1.2" 8948 sources."optionator-0.9.1" 8949 - sources."p-each-series-2.1.0" 8950 sources."p-finally-1.0.0" 8951 sources."p-limit-2.3.0" 8952 sources."p-locate-4.1.0" 8953 sources."p-try-2.2.0" 8954 sources."parent-module-1.0.1" 8955 - sources."parse-json-5.1.0" 8956 sources."parse5-5.1.1" 8957 sources."pascalcase-0.1.1" 8958 sources."path-dirname-1.0.2" ··· 8967 sources."pirates-4.0.1" 8968 sources."pkg-dir-4.2.0" 8969 sources."posix-character-classes-0.1.1" 8970 - sources."prebuild-install-5.3.6" 8971 sources."prelude-ls-1.2.1" 8972 (sources."pretty-format-26.6.2" // { 8973 dependencies = [ ··· 8984 sources."pump-3.0.0" 8985 sources."punycode-2.1.1" 8986 sources."qs-6.5.2" 8987 sources."rc-1.2.8" 8988 sources."react-is-17.0.1" 8989 (sources."read-pkg-5.2.0" // { ··· 9003 sources."regexpp-3.1.0" 9004 sources."regexpu-core-4.7.1" 9005 sources."regjsgen-0.5.2" 9006 - (sources."regjsparser-0.6.4" // { 9007 dependencies = [ 9008 sources."jsesc-0.5.0" 9009 ]; ··· 9024 ]; 9025 }) 9026 sources."require-directory-2.1.1" 9027 sources."require-main-filename-2.0.0" 9028 - sources."resolve-1.19.0" 9029 sources."resolve-cwd-3.0.0" 9030 sources."resolve-from-5.0.0" 9031 sources."resolve-url-0.2.1" 9032 sources."ret-0.1.15" 9033 sources."reusify-1.0.4" 9034 - sources."rimraf-2.6.3" 9035 sources."rsvp-4.8.5" 9036 - sources."run-parallel-1.1.10" 9037 sources."safe-buffer-5.1.2" 9038 sources."safe-regex-1.1.0" 9039 sources."safer-buffer-2.1.2" 9040 sources."sane-4.1.0" 9041 sources."saxes-5.0.1" 9042 sources."semver-5.7.1" 9043 - sources."serialport-9.0.2" 9044 sources."set-blocking-2.0.0" 9045 (sources."set-value-2.0.1" // { 9046 dependencies = [ ··· 9051 sources."shebang-regex-1.0.0" 9052 sources."shelljs-0.8.4" 9053 sources."shellwords-0.1.1" 9054 sources."signal-exit-3.0.3" 9055 sources."simple-concat-1.0.1" 9056 sources."simple-get-3.1.0" 9057 sources."sisteransi-1.0.5" 9058 sources."slash-2.0.0" 9059 - (sources."slice-ansi-2.1.0" // { 9060 dependencies = [ 9061 - sources."is-fullwidth-code-point-2.0.0" 9062 ]; 9063 }) 9064 sources."slip-1.0.2" ··· 9090 sources."source-map-0.6.1" 9091 ]; 9092 }) 9093 - sources."source-map-url-0.4.0" 9094 sources."spdx-correct-3.1.1" 9095 sources."spdx-exceptions-2.3.0" 9096 sources."spdx-expression-parse-3.0.1" 9097 - sources."spdx-license-ids-3.0.6" 9098 sources."split-string-3.1.0" 9099 sources."sprintf-js-1.0.3" 9100 sources."sshpk-1.16.1" ··· 9130 ]; 9131 }) 9132 sources."symbol-tree-3.2.4" 9133 - (sources."table-5.4.6" // { 9134 dependencies = [ 9135 - sources."ansi-regex-4.1.0" 9136 - sources."is-fullwidth-code-point-2.0.0" 9137 - sources."string-width-3.1.0" 9138 - sources."strip-ansi-5.2.0" 9139 ]; 9140 }) 9141 sources."tar-fs-2.1.1" 9142 - (sources."tar-stream-2.1.4" // { 9143 dependencies = [ 9144 sources."readable-stream-3.6.0" 9145 ]; ··· 9160 sources."tough-cookie-3.0.1" 9161 sources."tr46-2.0.2" 9162 sources."tslib-1.14.1" 9163 - sources."tsutils-3.17.1" 9164 sources."tunnel-agent-0.6.0" 9165 sources."tweetnacl-0.14.5" 9166 sources."type-check-0.4.0" 9167 sources."type-detect-4.0.8" 9168 sources."type-fest-0.8.1" 9169 sources."typedarray-to-buffer-3.1.5" 9170 - (sources."typedoc-0.19.2" // { 9171 - dependencies = [ 9172 - sources."semver-7.3.2" 9173 - ]; 9174 - }) 9175 - sources."typedoc-default-themes-0.11.4" 9176 - sources."typedoc-plugin-markdown-3.0.11" 9177 sources."typedoc-plugin-no-inherit-1.2.0" 9178 sources."typedoc-plugin-sourcefile-url-1.0.6" 9179 - sources."typescript-4.0.5" 9180 - sources."uglify-js-3.11.6" 9181 sources."unicode-canonical-property-names-ecmascript-1.0.4" 9182 sources."unicode-match-property-ecmascript-1.0.4" 9183 sources."unicode-match-property-value-ecmascript-1.2.0" 9184 sources."unicode-property-aliases-ecmascript-1.1.0" 9185 sources."union-value-1.0.1" 9186 - sources."universalify-1.0.0" 9187 (sources."unset-value-1.0.0" // { 9188 dependencies = [ 9189 (sources."has-value-0.3.1" // { ··· 9195 ]; 9196 }) 9197 sources."upath-1.2.0" 9198 - sources."uri-js-4.4.0" 9199 sources."urix-0.1.0" 9200 sources."use-3.1.1" 9201 sources."util-deprecate-1.0.2" 9202 - sources."uuid-8.3.1" 9203 sources."v8-compile-cache-2.2.0" 9204 - (sources."v8-to-istanbul-7.0.0" // { 9205 dependencies = [ 9206 sources."source-map-0.7.3" 9207 ]; 9208 }) 9209 sources."validate-npm-package-license-3.0.4" 9210 sources."verror-1.10.0" 9211 sources."w3c-hr-time-1.0.2" 9212 sources."w3c-xmlserializer-2.0.0" 9213 sources."walker-1.0.7" ··· 9227 sources."ansi-styles-4.3.0" 9228 sources."color-convert-2.0.1" 9229 sources."color-name-1.1.4" 9230 - sources."emoji-regex-8.0.0" 9231 sources."is-fullwidth-code-point-3.0.0" 9232 - sources."string-width-4.2.0" 9233 sources."strip-ansi-6.0.0" 9234 ]; 9235 }) 9236 sources."wrappy-1.0.2" 9237 - sources."write-1.0.3" 9238 sources."write-file-atomic-3.0.3" 9239 - sources."ws-7.4.0" 9240 sources."xml-name-validator-3.0.0" 9241 sources."xmlchars-2.2.0" 9242 - sources."y18n-4.0.0" 9243 (sources."yargs-15.4.1" // { 9244 dependencies = [ 9245 sources."ansi-regex-5.0.0" 9246 - sources."emoji-regex-8.0.0" 9247 sources."is-fullwidth-code-point-3.0.0" 9248 - sources."string-width-4.2.0" 9249 sources."strip-ansi-6.0.0" 9250 ]; 9251 }) 9252 sources."yargs-parser-18.1.3" 9253 ]; 9254 }) 9255 - (sources."zigbee-herdsman-converters-13.0.7" // { 9256 dependencies = [ 9257 - sources."@babel/code-frame-7.10.4" 9258 - (sources."@babel/core-7.12.9" // { 9259 dependencies = [ 9260 - sources."semver-5.7.1" 9261 sources."source-map-0.5.7" 9262 ]; 9263 }) 9264 - (sources."@babel/generator-7.12.5" // { 9265 dependencies = [ 9266 sources."source-map-0.5.7" 9267 ]; 9268 }) 9269 - sources."@babel/helper-function-name-7.10.4" 9270 - sources."@babel/helper-get-function-arity-7.10.4" 9271 - sources."@babel/helper-member-expression-to-functions-7.12.7" 9272 - sources."@babel/helper-module-imports-7.12.5" 9273 - sources."@babel/helper-module-transforms-7.12.1" 9274 - sources."@babel/helper-optimise-call-expression-7.12.7" 9275 - sources."@babel/helper-plugin-utils-7.10.4" 9276 - sources."@babel/helper-replace-supers-7.12.5" 9277 - sources."@babel/helper-simple-access-7.12.1" 9278 - sources."@babel/helper-split-export-declaration-7.11.0" 9279 - sources."@babel/helper-validator-identifier-7.10.4" 9280 - sources."@babel/helpers-7.12.5" 9281 - (sources."@babel/highlight-7.10.4" // { 9282 dependencies = [ 9283 sources."chalk-2.4.2" 9284 ]; 9285 }) 9286 - sources."@babel/parser-7.12.7" 9287 sources."@babel/plugin-syntax-async-generators-7.8.4" 9288 sources."@babel/plugin-syntax-bigint-7.8.3" 9289 - sources."@babel/plugin-syntax-class-properties-7.12.1" 9290 sources."@babel/plugin-syntax-import-meta-7.10.4" 9291 sources."@babel/plugin-syntax-json-strings-7.8.3" 9292 sources."@babel/plugin-syntax-logical-assignment-operators-7.10.4" ··· 9295 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" 9296 sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" 9297 sources."@babel/plugin-syntax-optional-chaining-7.8.3" 9298 - sources."@babel/plugin-syntax-top-level-await-7.12.1" 9299 - sources."@babel/template-7.12.7" 9300 - (sources."@babel/traverse-7.12.9" // { 9301 dependencies = [ 9302 sources."globals-11.12.0" 9303 ]; 9304 }) 9305 - sources."@babel/types-7.12.7" 9306 sources."@bcoe/v8-coverage-0.2.3" 9307 sources."@cnakazawa/watch-1.0.4" 9308 - sources."@eslint/eslintrc-0.2.1" 9309 (sources."@istanbuljs/load-nyc-config-1.1.0" // { 9310 dependencies = [ 9311 sources."resolve-from-5.0.0" 9312 ]; 9313 }) 9314 - sources."@istanbuljs/schema-0.1.2" 9315 sources."@jest/console-26.6.2" 9316 - (sources."@jest/core-26.6.3" // { 9317 - dependencies = [ 9318 - sources."rimraf-3.0.2" 9319 - ]; 9320 - }) 9321 sources."@jest/environment-26.6.2" 9322 sources."@jest/fake-timers-26.6.2" 9323 sources."@jest/globals-26.6.2" ··· 9327 sources."@jest/test-sequencer-26.6.3" 9328 sources."@jest/transform-26.6.2" 9329 sources."@jest/types-26.6.2" 9330 - sources."@nodelib/fs.scandir-2.1.3" 9331 - sources."@nodelib/fs.stat-2.0.3" 9332 - sources."@nodelib/fs.walk-1.2.4" 9333 - sources."@sinonjs/commons-1.8.1" 9334 sources."@sinonjs/fake-timers-6.0.1" 9335 - sources."@types/babel__core-7.1.12" 9336 sources."@types/babel__generator-7.6.2" 9337 sources."@types/babel__template-7.4.0" 9338 - sources."@types/babel__traverse-7.0.16" 9339 - sources."@types/graceful-fs-4.1.4" 9340 sources."@types/istanbul-lib-coverage-2.0.3" 9341 sources."@types/istanbul-lib-report-3.0.0" 9342 sources."@types/istanbul-reports-3.0.0" 9343 - sources."@types/json-schema-7.0.6" 9344 - sources."@types/node-14.14.10" 9345 sources."@types/normalize-package-data-2.4.0" 9346 - sources."@types/prettier-2.1.5" 9347 sources."@types/stack-utils-2.0.0" 9348 - sources."@types/yargs-15.0.10" 9349 - sources."@types/yargs-parser-15.0.0" 9350 - sources."@typescript-eslint/experimental-utils-4.8.2" 9351 - sources."@typescript-eslint/scope-manager-4.8.2" 9352 - sources."@typescript-eslint/types-4.8.2" 9353 - sources."@typescript-eslint/typescript-estree-4.8.2" 9354 - sources."@typescript-eslint/visitor-keys-4.8.2" 9355 sources."abab-2.0.5" 9356 sources."acorn-7.4.1" 9357 sources."acorn-globals-6.0.0" ··· 9360 sources."agent-base-6.0.2" 9361 sources."ajv-6.12.6" 9362 sources."ansi-colors-4.1.1" 9363 - (sources."ansi-escapes-4.3.1" // { 9364 dependencies = [ 9365 - sources."type-fest-0.11.0" 9366 ]; 9367 }) 9368 sources."ansi-regex-5.0.0" ··· 9377 sources."asn1-0.2.4" 9378 sources."assert-plus-1.0.0" 9379 sources."assign-symbols-1.0.0" 9380 - sources."astral-regex-1.0.0" 9381 sources."asynckit-0.4.0" 9382 sources."atob-2.1.2" 9383 sources."aws-sign2-0.7.0" 9384 sources."aws4-1.11.0" 9385 - sources."axios-0.21.0" 9386 sources."babel-jest-26.6.3" 9387 sources."babel-plugin-istanbul-6.0.0" 9388 sources."babel-plugin-jest-hoist-26.6.2" 9389 - sources."babel-preset-current-node-syntax-1.0.0" 9390 sources."babel-preset-jest-26.6.2" 9391 sources."balanced-match-1.0.0" 9392 (sources."base-0.11.2" // { ··· 9399 }) 9400 sources."base64-js-1.5.1" 9401 sources."bcrypt-pbkdf-1.0.2" 9402 - sources."bl-4.0.3" 9403 sources."brace-expansion-1.1.11" 9404 sources."braces-3.0.2" 9405 sources."browser-process-hrtime-1.0.0" 9406 sources."bser-2.1.1" 9407 sources."buffer-5.7.1" 9408 sources."buffer-crc32-0.2.13" ··· 9410 sources."cache-base-1.0.1" 9411 sources."callsites-3.1.0" 9412 sources."camelcase-5.3.1" 9413 sources."capture-exit-2.0.0" 9414 sources."caseless-0.12.0" 9415 (sources."chalk-4.1.0" // { ··· 9429 sources."define-property-0.2.5" 9430 ]; 9431 }) 9432 - (sources."cliui-6.0.0" // { 9433 - dependencies = [ 9434 - sources."emoji-regex-8.0.0" 9435 - sources."is-fullwidth-code-point-3.0.0" 9436 - sources."string-width-4.2.0" 9437 - ]; 9438 - }) 9439 sources."co-4.6.0" 9440 sources."collect-v8-coverage-1.0.1" 9441 sources."collection-visit-1.0.0" 9442 sources."color-convert-1.9.3" 9443 sources."color-name-1.1.3" 9444 sources."combined-stream-1.0.8" 9445 sources."component-emitter-1.3.0" 9446 sources."concat-map-0.0.1" ··· 9484 ]; 9485 }) 9486 sources."ecc-jsbn-0.1.2" 9487 sources."emittery-0.7.2" 9488 - sources."emoji-regex-7.0.3" 9489 sources."end-of-stream-1.4.4" 9490 sources."enquirer-2.3.6" 9491 sources."error-ex-1.3.2" 9492 sources."escape-string-regexp-1.0.5" 9493 - (sources."escodegen-1.14.3" // { 9494 dependencies = [ 9495 sources."levn-0.3.0" 9496 sources."optionator-0.8.3" 9497 sources."prelude-ls-1.1.2" 9498 sources."type-check-0.3.2" 9499 ]; 9500 }) 9501 - sources."eslint-7.14.0" 9502 sources."eslint-config-google-0.14.0" 9503 - sources."eslint-plugin-jest-24.1.3" 9504 sources."eslint-scope-5.1.1" 9505 (sources."eslint-utils-2.1.0" // { 9506 dependencies = [ ··· 9508 ]; 9509 }) 9510 sources."eslint-visitor-keys-2.0.0" 9511 - (sources."espree-7.3.0" // { 9512 dependencies = [ 9513 sources."eslint-visitor-keys-1.3.0" 9514 ]; 9515 }) 9516 sources."esprima-4.0.1" 9517 - (sources."esquery-1.3.1" // { 9518 dependencies = [ 9519 sources."estraverse-5.2.0" 9520 ]; ··· 9526 }) 9527 sources."estraverse-4.3.0" 9528 sources."esutils-2.0.3" 9529 - sources."exec-sh-0.3.4" 9530 (sources."execa-1.0.0" // { 9531 dependencies = [ 9532 sources."cross-spawn-6.0.5" ··· 9570 }) 9571 sources."extsprintf-1.3.0" 9572 sources."fast-deep-equal-3.1.3" 9573 - sources."fast-glob-3.2.4" 9574 sources."fast-json-stable-stringify-2.1.0" 9575 sources."fast-levenshtein-2.0.6" 9576 - sources."fastq-1.9.0" 9577 sources."fb-watchman-2.0.1" 9578 - sources."file-entry-cache-5.0.1" 9579 sources."fill-range-7.0.1" 9580 sources."find-up-4.1.0" 9581 - sources."flat-cache-2.0.1" 9582 - sources."flatted-2.0.2" 9583 - sources."follow-redirects-1.13.0" 9584 sources."for-in-1.0.2" 9585 sources."forever-agent-0.6.1" 9586 sources."form-data-2.3.3" 9587 sources."fragment-cache-0.2.1" 9588 sources."fs-constants-1.0.0" 9589 sources."fs.realpath-1.0.0" 9590 - sources."fsevents-2.2.1" 9591 sources."function-bind-1.1.1" 9592 sources."functional-red-black-tree-1.0.1" 9593 sources."gensync-1.0.0-beta.2" ··· 9597 sources."get-value-2.0.6" 9598 sources."getpass-0.1.7" 9599 sources."glob-7.1.6" 9600 - sources."glob-parent-5.1.1" 9601 - sources."globals-12.4.0" 9602 - (sources."globby-11.0.1" // { 9603 dependencies = [ 9604 sources."ignore-5.1.8" 9605 ]; 9606 }) 9607 - sources."graceful-fs-4.2.4" 9608 sources."growly-1.3.0" 9609 sources."har-schema-2.0.0" 9610 sources."har-validator-5.1.5" ··· 9630 sources."iconv-lite-0.4.24" 9631 sources."ieee754-1.2.1" 9632 sources."ignore-4.0.6" 9633 - sources."import-fresh-3.2.2" 9634 sources."import-local-3.0.2" 9635 sources."imurmurhash-0.1.4" 9636 sources."inflight-1.0.6" 9637 sources."inherits-2.0.4" 9638 - sources."ip-regex-2.1.0" 9639 (sources."is-accessor-descriptor-0.1.6" // { 9640 dependencies = [ 9641 sources."kind-of-3.2.2" ··· 9658 sources."is-docker-2.1.1" 9659 sources."is-extendable-0.1.1" 9660 sources."is-extglob-2.1.1" 9661 - sources."is-fullwidth-code-point-2.0.0" 9662 sources."is-generator-fn-2.1.0" 9663 sources."is-glob-4.0.1" 9664 sources."is-number-7.0.0" ··· 9734 ]; 9735 }) 9736 sources."js-tokens-4.0.0" 9737 - sources."js-yaml-3.14.0" 9738 sources."jsbn-0.1.1" 9739 - sources."jsdom-16.4.0" 9740 sources."jsesc-2.5.2" 9741 sources."json-parse-even-better-errors-2.3.1" 9742 sources."json-schema-0.2.3" 9743 sources."json-schema-traverse-0.4.1" 9744 sources."json-stable-stringify-without-jsonify-1.0.1" 9745 sources."json-stringify-safe-5.0.1" 9746 - sources."json5-2.1.3" 9747 sources."jsprim-1.4.1" 9748 sources."kind-of-6.0.3" 9749 sources."kleur-3.0.3" ··· 9751 sources."levn-0.4.1" 9752 sources."lines-and-columns-1.1.6" 9753 sources."locate-path-5.0.0" 9754 - sources."lodash-4.17.20" 9755 - sources."lodash.sortby-4.7.0" 9756 (sources."make-dir-3.1.0" // { 9757 dependencies = [ 9758 sources."semver-6.3.0" ··· 9764 sources."merge-stream-2.0.0" 9765 sources."merge2-1.4.1" 9766 sources."micromatch-4.0.2" 9767 - sources."mime-db-1.44.0" 9768 - sources."mime-types-2.1.27" 9769 sources."mimic-fn-2.1.0" 9770 sources."minimatch-3.0.4" 9771 sources."minimist-1.2.5" ··· 9774 sources."is-extendable-1.0.1" 9775 ]; 9776 }) 9777 - sources."mkdirp-0.5.5" 9778 sources."ms-2.1.2" 9779 sources."nanomatch-1.2.13" 9780 sources."natural-compare-1.4.0" 9781 sources."nice-try-1.0.5" 9782 sources."node-int64-0.4.0" 9783 sources."node-modules-regexp-1.0.0" 9784 - sources."node-notifier-8.0.0" 9785 (sources."normalize-package-data-2.5.0" // { 9786 dependencies = [ 9787 sources."semver-5.7.1" ··· 9812 sources."p-locate-4.1.0" 9813 sources."p-try-2.2.0" 9814 sources."parent-module-1.0.1" 9815 - sources."parse-json-5.1.0" 9816 - sources."parse5-5.1.1" 9817 sources."pascalcase-0.1.1" 9818 sources."path-exists-4.0.0" 9819 sources."path-is-absolute-1.0.1" ··· 9839 sources."pump-3.0.0" 9840 sources."punycode-2.1.1" 9841 sources."qs-6.5.2" 9842 - sources."react-is-17.0.1" 9843 (sources."read-pkg-5.2.0" // { 9844 dependencies = [ 9845 sources."type-fest-0.6.0" ··· 9865 ]; 9866 }) 9867 sources."require-directory-2.1.1" 9868 sources."require-main-filename-2.0.0" 9869 - sources."resolve-1.19.0" 9870 (sources."resolve-cwd-3.0.0" // { 9871 dependencies = [ 9872 sources."resolve-from-5.0.0" ··· 9876 sources."resolve-url-0.2.1" 9877 sources."ret-0.1.15" 9878 sources."reusify-1.0.4" 9879 - sources."rimraf-2.6.3" 9880 sources."rsvp-4.8.5" 9881 - sources."run-parallel-1.1.10" 9882 sources."safe-buffer-5.2.1" 9883 sources."safe-regex-1.1.0" 9884 sources."safer-buffer-2.1.2" ··· 9906 ]; 9907 }) 9908 sources."saxes-5.0.1" 9909 - sources."semver-7.3.2" 9910 sources."set-blocking-2.0.0" 9911 (sources."set-value-2.0.1" // { 9912 dependencies = [ ··· 9919 sources."signal-exit-3.0.3" 9920 sources."sisteransi-1.0.5" 9921 sources."slash-3.0.0" 9922 - sources."slice-ansi-2.1.0" 9923 (sources."snapdragon-0.8.2" // { 9924 dependencies = [ 9925 sources."debug-2.6.9" ··· 9945 sources."source-map-0.6.1" 9946 sources."source-map-resolve-0.5.3" 9947 sources."source-map-support-0.5.19" 9948 - sources."source-map-url-0.4.0" 9949 sources."spdx-correct-3.1.1" 9950 sources."spdx-exceptions-2.3.0" 9951 sources."spdx-expression-parse-3.0.1" 9952 - sources."spdx-license-ids-3.0.6" 9953 sources."split-string-3.1.0" 9954 sources."sprintf-js-1.0.3" 9955 sources."sshpk-1.16.1" ··· 9964 ]; 9965 }) 9966 sources."stealthy-require-1.1.1" 9967 - sources."string-length-4.0.1" 9968 - (sources."string-width-3.1.0" // { 9969 - dependencies = [ 9970 - sources."ansi-regex-4.1.0" 9971 - sources."strip-ansi-5.2.0" 9972 - ]; 9973 - }) 9974 sources."string_decoder-1.3.0" 9975 sources."strip-ansi-6.0.0" 9976 sources."strip-bom-4.0.0" ··· 9985 ]; 9986 }) 9987 sources."symbol-tree-3.2.4" 9988 - sources."table-5.4.6" 9989 - sources."tar-stream-2.1.4" 9990 sources."terminal-link-2.1.1" 9991 sources."test-exclude-6.0.0" 9992 sources."text-table-0.2.0" ··· 10000 }) 10001 sources."to-regex-3.0.2" 10002 sources."to-regex-range-5.0.1" 10003 - sources."tough-cookie-3.0.1" 10004 sources."tr46-2.0.2" 10005 sources."tslib-1.14.1" 10006 - sources."tsutils-3.17.1" 10007 sources."tunnel-agent-0.6.0" 10008 sources."tweetnacl-0.14.5" 10009 sources."type-check-0.4.0" ··· 10011 sources."type-fest-0.8.1" 10012 sources."typedarray-to-buffer-3.1.5" 10013 sources."union-value-1.0.1" 10014 (sources."unset-value-1.0.0" // { 10015 dependencies = [ 10016 (sources."has-value-0.3.1" // { ··· 10021 sources."has-values-0.1.4" 10022 ]; 10023 }) 10024 - sources."uri-js-4.4.0" 10025 sources."urix-0.1.0" 10026 sources."use-3.1.1" 10027 sources."util-deprecate-1.0.2" 10028 - sources."uuid-8.3.1" 10029 - sources."v8-compile-cache-2.2.0" 10030 - (sources."v8-to-istanbul-7.0.0" // { 10031 dependencies = [ 10032 sources."source-map-0.7.3" 10033 ]; ··· 10040 sources."webidl-conversions-6.1.0" 10041 sources."whatwg-encoding-1.0.5" 10042 sources."whatwg-mimetype-2.3.0" 10043 - sources."whatwg-url-8.4.0" 10044 sources."which-2.0.2" 10045 sources."which-module-2.0.0" 10046 sources."word-wrap-1.2.3" ··· 10049 sources."ansi-styles-4.3.0" 10050 sources."color-convert-2.0.1" 10051 sources."color-name-1.1.4" 10052 - sources."emoji-regex-8.0.0" 10053 - sources."is-fullwidth-code-point-3.0.0" 10054 - sources."string-width-4.2.0" 10055 ]; 10056 }) 10057 sources."wrappy-1.0.2" 10058 - sources."write-1.0.3" 10059 sources."write-file-atomic-3.0.3" 10060 - sources."ws-7.4.0" 10061 sources."xml-name-validator-3.0.0" 10062 sources."xmlchars-2.2.0" 10063 - sources."y18n-4.0.0" 10064 - (sources."yargs-15.4.1" // { 10065 dependencies = [ 10066 sources."emoji-regex-8.0.0" 10067 - sources."is-fullwidth-code-point-3.0.0" 10068 - sources."string-width-4.2.0" 10069 ]; 10070 }) 10071 - sources."yargs-parser-18.1.3" 10072 ]; 10073 }) 10074 - sources."zigbee2mqtt-frontend-0.2.100" 10075 ]; 10076 buildInputs = globalBuildInputs; 10077 meta = { 10078 description = "Zigbee to MQTT bridge using Zigbee-herdsman"; 10079 - homepage = https://koenkk.github.io/zigbee2mqtt; 10080 license = "GPL-3.0"; 10081 }; 10082 production = true; ··· 10090 tarball = nodeEnv.buildNodeSourceDist args; 10091 package = nodeEnv.buildNodePackage args; 10092 shell = nodeEnv.buildNodeShell args; 10093 }
··· 1 + # This file has been generated by node2nix 1.9.0. Do not edit! 2 3 + {nodeEnv, fetchurl, fetchgit, nix-gitignore, stdenv, lib, globalBuildInputs ? []}: 4 5 let 6 sources = { 7 + "@babel/cli-7.13.0" = { 8 name = "_at_babel_slash_cli"; 9 packageName = "@babel/cli"; 10 + version = "7.13.0"; 11 src = fetchurl { 12 + url = "https://registry.npmjs.org/@babel/cli/-/cli-7.13.0.tgz"; 13 + sha512 = "y5AohgeVhU+wO5kU1WGMLdocFj83xCxVjsVFa2ilII8NEwmBZvx7Ambq621FbFIK68loYJ9p43nfoi6es+rzSA=="; 14 + }; 15 + }; 16 + "@babel/code-frame-7.12.11" = { 17 + name = "_at_babel_slash_code-frame"; 18 + packageName = "@babel/code-frame"; 19 + version = "7.12.11"; 20 + src = fetchurl { 21 + url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz"; 22 + sha512 = "Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw=="; 23 }; 24 }; 25 + "@babel/code-frame-7.12.13" = { 26 name = "_at_babel_slash_code-frame"; 27 packageName = "@babel/code-frame"; 28 + version = "7.12.13"; 29 + src = fetchurl { 30 + url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz"; 31 + sha512 = "HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g=="; 32 + }; 33 + }; 34 + "@babel/compat-data-7.13.12" = { 35 + name = "_at_babel_slash_compat-data"; 36 + packageName = "@babel/compat-data"; 37 + version = "7.13.12"; 38 src = fetchurl { 39 + url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.13.12.tgz"; 40 + sha512 = "3eJJ841uKxeV8dcN/2yGEUy+RfgQspPEgQat85umsE1rotuquQ2AbIub4S6j7c50a2d+4myc+zSlnXeIHrOnhQ=="; 41 }; 42 }; 43 + "@babel/compat-data-7.13.8" = { 44 name = "_at_babel_slash_compat-data"; 45 packageName = "@babel/compat-data"; 46 + version = "7.13.8"; 47 src = fetchurl { 48 + url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.13.8.tgz"; 49 + sha512 = "EaI33z19T4qN3xLXsGf48M2cDqa6ei9tPZlfLdb2HC+e/cFtREiRd8hdSqDbwdLB0/+gLwqJmCYASH0z2bUdog=="; 50 }; 51 }; 52 + "@babel/core-7.13.13" = { 53 name = "_at_babel_slash_core"; 54 packageName = "@babel/core"; 55 + version = "7.13.13"; 56 src = fetchurl { 57 + url = "https://registry.npmjs.org/@babel/core/-/core-7.13.13.tgz"; 58 + sha512 = "1xEs9jZAyKIouOoCmpsgk/I26PoKyvzQ2ixdRpRzfbcp1fL+ozw7TUgdDgwonbTovqRaTfRh50IXuw4QrWO0GA=="; 59 }; 60 }; 61 + "@babel/core-7.13.8" = { 62 name = "_at_babel_slash_core"; 63 packageName = "@babel/core"; 64 + version = "7.13.8"; 65 src = fetchurl { 66 + url = "https://registry.npmjs.org/@babel/core/-/core-7.13.8.tgz"; 67 + sha512 = "oYapIySGw1zGhEFRd6lzWNLWFX2s5dA/jm+Pw/+59ZdXtjyIuwlXbrId22Md0rgZVop+aVoqow2riXhBLNyuQg=="; 68 }; 69 }; 70 + "@babel/generator-7.13.9" = { 71 name = "_at_babel_slash_generator"; 72 packageName = "@babel/generator"; 73 + version = "7.13.9"; 74 src = fetchurl { 75 + url = "https://registry.npmjs.org/@babel/generator/-/generator-7.13.9.tgz"; 76 + sha512 = "mHOOmY0Axl/JCTkxTU6Lf5sWOg/v8nUa+Xkt4zMTftX0wqmb6Sh7J8gvcehBw7q0AhrhAR+FDacKjCZ2X8K+Sw=="; 77 }; 78 }; 79 + "@babel/helper-annotate-as-pure-7.12.13" = { 80 name = "_at_babel_slash_helper-annotate-as-pure"; 81 packageName = "@babel/helper-annotate-as-pure"; 82 + version = "7.12.13"; 83 src = fetchurl { 84 + url = "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.13.tgz"; 85 + sha512 = "7YXfX5wQ5aYM/BOlbSccHDbuXXFPxeoUmfWtz8le2yTkTZc+BxsiEnENFoi2SlmA8ewDkG2LgIMIVzzn2h8kfw=="; 86 }; 87 }; 88 + "@babel/helper-builder-binary-assignment-operator-visitor-7.12.13" = { 89 name = "_at_babel_slash_helper-builder-binary-assignment-operator-visitor"; 90 packageName = "@babel/helper-builder-binary-assignment-operator-visitor"; 91 + version = "7.12.13"; 92 src = fetchurl { 93 + url = "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.12.13.tgz"; 94 + sha512 = "CZOv9tGphhDRlVjVkAgm8Nhklm9RzSmWpX2my+t7Ua/KT616pEzXsQCjinzvkRvHWJ9itO4f296efroX23XCMA=="; 95 }; 96 }; 97 + "@babel/helper-compilation-targets-7.13.13" = { 98 name = "_at_babel_slash_helper-compilation-targets"; 99 packageName = "@babel/helper-compilation-targets"; 100 + version = "7.13.13"; 101 src = fetchurl { 102 + url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.13.tgz"; 103 + sha512 = "q1kcdHNZehBwD9jYPh3WyXcsFERi39X4I59I3NadciWtNDyZ6x+GboOxncFK0kXlKIv6BJm5acncehXWUjWQMQ=="; 104 }; 105 }; 106 + "@babel/helper-compilation-targets-7.13.8" = { 107 + name = "_at_babel_slash_helper-compilation-targets"; 108 + packageName = "@babel/helper-compilation-targets"; 109 + version = "7.13.8"; 110 + src = fetchurl { 111 + url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.8.tgz"; 112 + sha512 = "pBljUGC1y3xKLn1nrx2eAhurLMA8OqBtBP/JwG4U8skN7kf8/aqwwxpV1N6T0e7r6+7uNitIa/fUxPFagSXp3A=="; 113 + }; 114 + }; 115 + "@babel/helper-create-class-features-plugin-7.13.8" = { 116 name = "_at_babel_slash_helper-create-class-features-plugin"; 117 packageName = "@babel/helper-create-class-features-plugin"; 118 + version = "7.13.8"; 119 src = fetchurl { 120 + url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.13.8.tgz"; 121 + sha512 = "qioaRrKHQbn4hkRKDHbnuQ6kAxmmOF+kzKGnIfxPK4j2rckSJCpKzr/SSTlohSCiE3uAQpNDJ9FIh4baeE8W+w=="; 122 }; 123 }; 124 + "@babel/helper-create-regexp-features-plugin-7.12.17" = { 125 name = "_at_babel_slash_helper-create-regexp-features-plugin"; 126 packageName = "@babel/helper-create-regexp-features-plugin"; 127 + version = "7.12.17"; 128 src = fetchurl { 129 + url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.17.tgz"; 130 + sha512 = "p2VGmBu9oefLZ2nQpgnEnG0ZlRPvL8gAGvPUMQwUdaE8k49rOMuZpOwdQoy5qJf6K8jL3bcAMhVUlHAjIgJHUg=="; 131 }; 132 }; 133 + "@babel/helper-define-polyfill-provider-0.1.5" = { 134 + name = "_at_babel_slash_helper-define-polyfill-provider"; 135 + packageName = "@babel/helper-define-polyfill-provider"; 136 + version = "0.1.5"; 137 src = fetchurl { 138 + url = "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.1.5.tgz"; 139 + sha512 = "nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg=="; 140 }; 141 }; 142 + "@babel/helper-explode-assignable-expression-7.13.0" = { 143 name = "_at_babel_slash_helper-explode-assignable-expression"; 144 packageName = "@babel/helper-explode-assignable-expression"; 145 + version = "7.13.0"; 146 src = fetchurl { 147 + url = "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.13.0.tgz"; 148 + sha512 = "qS0peLTDP8kOisG1blKbaoBg/o9OSa1qoumMjTK5pM+KDTtpxpsiubnCGP34vK8BXGcb2M9eigwgvoJryrzwWA=="; 149 }; 150 }; 151 + "@babel/helper-function-name-7.12.13" = { 152 name = "_at_babel_slash_helper-function-name"; 153 packageName = "@babel/helper-function-name"; 154 + version = "7.12.13"; 155 src = fetchurl { 156 + url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz"; 157 + sha512 = "TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA=="; 158 }; 159 }; 160 + "@babel/helper-get-function-arity-7.12.13" = { 161 name = "_at_babel_slash_helper-get-function-arity"; 162 packageName = "@babel/helper-get-function-arity"; 163 + version = "7.12.13"; 164 src = fetchurl { 165 + url = "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz"; 166 + sha512 = "DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg=="; 167 }; 168 }; 169 + "@babel/helper-hoist-variables-7.13.0" = { 170 name = "_at_babel_slash_helper-hoist-variables"; 171 packageName = "@babel/helper-hoist-variables"; 172 + version = "7.13.0"; 173 src = fetchurl { 174 + url = "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.13.0.tgz"; 175 + sha512 = "0kBzvXiIKfsCA0y6cFEIJf4OdzfpRuNk4+YTeHZpGGc666SATFKTz6sRncwFnQk7/ugJ4dSrCj6iJuvW4Qwr2g=="; 176 }; 177 }; 178 + "@babel/helper-member-expression-to-functions-7.13.0" = { 179 name = "_at_babel_slash_helper-member-expression-to-functions"; 180 packageName = "@babel/helper-member-expression-to-functions"; 181 + version = "7.13.0"; 182 src = fetchurl { 183 + url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.0.tgz"; 184 + sha512 = "yvRf8Ivk62JwisqV1rFRMxiSMDGnN6KH1/mDMmIrij4jztpQNRoHqqMG3U6apYbGRPJpgPalhva9Yd06HlUxJQ=="; 185 }; 186 }; 187 + "@babel/helper-member-expression-to-functions-7.13.12" = { 188 name = "_at_babel_slash_helper-member-expression-to-functions"; 189 packageName = "@babel/helper-member-expression-to-functions"; 190 + version = "7.13.12"; 191 src = fetchurl { 192 + url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.12.tgz"; 193 + sha512 = "48ql1CLL59aKbU94Y88Xgb2VFy7a95ykGRbJJaaVv+LX5U8wFpLfiGXJJGUozsmA1oEh/o5Bp60Voq7ACyA/Sw=="; 194 }; 195 }; 196 + "@babel/helper-module-imports-7.12.13" = { 197 name = "_at_babel_slash_helper-module-imports"; 198 packageName = "@babel/helper-module-imports"; 199 + version = "7.12.13"; 200 src = fetchurl { 201 + url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.13.tgz"; 202 + sha512 = "NGmfvRp9Rqxy0uHSSVP+SRIW1q31a7Ji10cLBcqSDUngGentY4FRiHOFZFE1CLU5eiL0oE8reH7Tg1y99TDM/g=="; 203 }; 204 }; 205 + "@babel/helper-module-imports-7.13.12" = { 206 + name = "_at_babel_slash_helper-module-imports"; 207 + packageName = "@babel/helper-module-imports"; 208 + version = "7.13.12"; 209 + src = fetchurl { 210 + url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz"; 211 + sha512 = "4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA=="; 212 + }; 213 + }; 214 + "@babel/helper-module-transforms-7.13.0" = { 215 name = "_at_babel_slash_helper-module-transforms"; 216 packageName = "@babel/helper-module-transforms"; 217 + version = "7.13.0"; 218 src = fetchurl { 219 + url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.13.0.tgz"; 220 + sha512 = "Ls8/VBwH577+pw7Ku1QkUWIyRRNHpYlts7+qSqBBFCW3I8QteB9DxfcZ5YJpOwH6Ihe/wn8ch7fMGOP1OhEIvw=="; 221 }; 222 }; 223 + "@babel/helper-module-transforms-7.13.12" = { 224 + name = "_at_babel_slash_helper-module-transforms"; 225 + packageName = "@babel/helper-module-transforms"; 226 + version = "7.13.12"; 227 src = fetchurl { 228 + url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.13.12.tgz"; 229 + sha512 = "7zVQqMO3V+K4JOOj40kxiCrMf6xlQAkewBB0eu2b03OO/Q21ZutOzjpfD79A5gtE/2OWi1nv625MrDlGlkbknQ=="; 230 }; 231 }; 232 + "@babel/helper-optimise-call-expression-7.12.13" = { 233 name = "_at_babel_slash_helper-optimise-call-expression"; 234 packageName = "@babel/helper-optimise-call-expression"; 235 + version = "7.12.13"; 236 src = fetchurl { 237 + url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz"; 238 + sha512 = "BdWQhoVJkp6nVjB7nkFWcn43dkprYauqtk++Py2eaf/GRDFm5BxRqEIZCiHlZUGAVmtwKcsVL1dC68WmzeFmiA=="; 239 }; 240 }; 241 + "@babel/helper-plugin-utils-7.13.0" = { 242 name = "_at_babel_slash_helper-plugin-utils"; 243 packageName = "@babel/helper-plugin-utils"; 244 + version = "7.13.0"; 245 src = fetchurl { 246 + url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz"; 247 + sha512 = "ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ=="; 248 }; 249 }; 250 + "@babel/helper-remap-async-to-generator-7.13.0" = { 251 + name = "_at_babel_slash_helper-remap-async-to-generator"; 252 + packageName = "@babel/helper-remap-async-to-generator"; 253 + version = "7.13.0"; 254 src = fetchurl { 255 + url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.13.0.tgz"; 256 + sha512 = "pUQpFBE9JvC9lrQbpX0TmeNIy5s7GnZjna2lhhcHC7DzgBs6fWn722Y5cfwgrtrqc7NAJwMvOa0mKhq6XaE4jg=="; 257 }; 258 }; 259 + "@babel/helper-replace-supers-7.13.0" = { 260 + name = "_at_babel_slash_helper-replace-supers"; 261 + packageName = "@babel/helper-replace-supers"; 262 + version = "7.13.0"; 263 src = fetchurl { 264 + url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.13.0.tgz"; 265 + sha512 = "Segd5me1+Pz+rmN/NFBOplMbZG3SqRJOBlY+mA0SxAv6rjj7zJqr1AVr3SfzUVTLCv7ZLU5FycOM/SBGuLPbZw=="; 266 }; 267 }; 268 + "@babel/helper-replace-supers-7.13.12" = { 269 name = "_at_babel_slash_helper-replace-supers"; 270 packageName = "@babel/helper-replace-supers"; 271 + version = "7.13.12"; 272 + src = fetchurl { 273 + url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.13.12.tgz"; 274 + sha512 = "Gz1eiX+4yDO8mT+heB94aLVNCL+rbuT2xy4YfyNqu8F+OI6vMvJK891qGBTqL9Uc8wxEvRW92Id6G7sDen3fFw=="; 275 + }; 276 + }; 277 + "@babel/helper-simple-access-7.12.13" = { 278 + name = "_at_babel_slash_helper-simple-access"; 279 + packageName = "@babel/helper-simple-access"; 280 + version = "7.12.13"; 281 src = fetchurl { 282 + url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.13.tgz"; 283 + sha512 = "0ski5dyYIHEfwpWGx5GPWhH35j342JaflmCeQmsPWcrOQDtCN6C1zKAVRFVbK53lPW2c9TsuLLSUDf0tIGJ5hA=="; 284 }; 285 }; 286 + "@babel/helper-simple-access-7.13.12" = { 287 name = "_at_babel_slash_helper-simple-access"; 288 packageName = "@babel/helper-simple-access"; 289 + version = "7.13.12"; 290 src = fetchurl { 291 + url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.13.12.tgz"; 292 + sha512 = "7FEjbrx5SL9cWvXioDbnlYTppcZGuCY6ow3/D5vMggb2Ywgu4dMrpTJX0JdQAIcRRUElOIxF3yEooa9gUb9ZbA=="; 293 }; 294 }; 295 "@babel/helper-skip-transparent-expression-wrappers-7.12.1" = { ··· 301 sha512 = "Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA=="; 302 }; 303 }; 304 + "@babel/helper-split-export-declaration-7.12.13" = { 305 name = "_at_babel_slash_helper-split-export-declaration"; 306 packageName = "@babel/helper-split-export-declaration"; 307 + version = "7.12.13"; 308 src = fetchurl { 309 + url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz"; 310 + sha512 = "tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg=="; 311 }; 312 }; 313 + "@babel/helper-validator-identifier-7.12.11" = { 314 name = "_at_babel_slash_helper-validator-identifier"; 315 packageName = "@babel/helper-validator-identifier"; 316 + version = "7.12.11"; 317 src = fetchurl { 318 + url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz"; 319 + sha512 = "np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw=="; 320 }; 321 }; 322 + "@babel/helper-validator-option-7.12.17" = { 323 name = "_at_babel_slash_helper-validator-option"; 324 packageName = "@babel/helper-validator-option"; 325 + version = "7.12.17"; 326 src = fetchurl { 327 + url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz"; 328 + sha512 = "TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw=="; 329 }; 330 }; 331 + "@babel/helper-wrap-function-7.13.0" = { 332 name = "_at_babel_slash_helper-wrap-function"; 333 packageName = "@babel/helper-wrap-function"; 334 + version = "7.13.0"; 335 src = fetchurl { 336 + url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.13.0.tgz"; 337 + sha512 = "1UX9F7K3BS42fI6qd2A4BjKzgGjToscyZTdp1DjknHLCIvpgne6918io+aL5LXFcER/8QWiwpoY902pVEqgTXA=="; 338 }; 339 }; 340 + "@babel/helpers-7.13.0" = { 341 name = "_at_babel_slash_helpers"; 342 packageName = "@babel/helpers"; 343 + version = "7.13.0"; 344 src = fetchurl { 345 + url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.13.0.tgz"; 346 + sha512 = "aan1MeFPxFacZeSz6Ld7YZo5aPuqnKlD7+HZY75xQsueczFccP9A7V05+oe0XpLwHK3oLorPe9eaAUljL7WEaQ=="; 347 }; 348 }; 349 + "@babel/helpers-7.13.10" = { 350 + name = "_at_babel_slash_helpers"; 351 + packageName = "@babel/helpers"; 352 + version = "7.13.10"; 353 + src = fetchurl { 354 + url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.13.10.tgz"; 355 + sha512 = "4VO883+MWPDUVRF3PhiLBUFHoX/bsLTGFpFK/HqvvfBZz2D57u9XzPVNFVBTc0PW/CWR9BXTOKt8NF4DInUHcQ=="; 356 + }; 357 + }; 358 + "@babel/highlight-7.13.10" = { 359 name = "_at_babel_slash_highlight"; 360 packageName = "@babel/highlight"; 361 + version = "7.13.10"; 362 src = fetchurl { 363 + url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.13.10.tgz"; 364 + sha512 = "5aPpe5XQPzflQrFwL1/QoeHkP2MsA4JCntcXHRhEsdsfPVkvPi2w7Qix4iV7t5S/oC9OodGrggd8aco1g3SZFg=="; 365 }; 366 }; 367 + "@babel/highlight-7.13.8" = { 368 + name = "_at_babel_slash_highlight"; 369 + packageName = "@babel/highlight"; 370 + version = "7.13.8"; 371 + src = fetchurl { 372 + url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.13.8.tgz"; 373 + sha512 = "4vrIhfJyfNf+lCtXC2ck1rKSzDwciqF7IWFhXXrSOUC2O5DrVp+w4c6ed4AllTxhTkUP5x2tYj41VaxdVMMRDw=="; 374 + }; 375 + }; 376 + "@babel/parser-7.13.13" = { 377 name = "_at_babel_slash_parser"; 378 packageName = "@babel/parser"; 379 + version = "7.13.13"; 380 src = fetchurl { 381 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.13.13.tgz"; 382 + sha512 = "OhsyMrqygfk5v8HmWwOzlYjJrtLaFhF34MrfG/Z73DgYCI6ojNUTUp2TYbtnjo8PegeJp12eamsNettCQjKjVw=="; 383 }; 384 }; 385 + "@babel/parser-7.13.9" = { 386 name = "_at_babel_slash_parser"; 387 packageName = "@babel/parser"; 388 + version = "7.13.9"; 389 src = fetchurl { 390 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.13.9.tgz"; 391 + sha512 = "nEUfRiARCcaVo3ny3ZQjURjHQZUo/JkEw7rLlSZy/psWGnvwXFtPcr6jb7Yb41DVW5LTe6KRq9LGleRNsg1Frw=="; 392 }; 393 }; 394 + "@babel/plugin-proposal-async-generator-functions-7.13.8" = { 395 name = "_at_babel_slash_plugin-proposal-async-generator-functions"; 396 packageName = "@babel/plugin-proposal-async-generator-functions"; 397 + version = "7.13.8"; 398 src = fetchurl { 399 + url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.13.8.tgz"; 400 + sha512 = "rPBnhj+WgoSmgq+4gQUtXx/vOcU+UYtjy1AA/aeD61Hwj410fwYyqfUcRP3lR8ucgliVJL/G7sXcNUecC75IXA=="; 401 }; 402 }; 403 + "@babel/plugin-proposal-class-properties-7.13.0" = { 404 name = "_at_babel_slash_plugin-proposal-class-properties"; 405 packageName = "@babel/plugin-proposal-class-properties"; 406 + version = "7.13.0"; 407 src = fetchurl { 408 + url = "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.13.0.tgz"; 409 + sha512 = "KnTDjFNC1g+45ka0myZNvSBFLhNCLN+GeGYLDEA8Oq7MZ6yMgfLoIRh86GRT0FjtJhZw8JyUskP9uvj5pHM9Zg=="; 410 }; 411 }; 412 + "@babel/plugin-proposal-dynamic-import-7.13.8" = { 413 name = "_at_babel_slash_plugin-proposal-dynamic-import"; 414 packageName = "@babel/plugin-proposal-dynamic-import"; 415 + version = "7.13.8"; 416 src = fetchurl { 417 + url = "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.13.8.tgz"; 418 + sha512 = "ONWKj0H6+wIRCkZi9zSbZtE/r73uOhMVHh256ys0UzfM7I3d4n+spZNWjOnJv2gzopumP2Wxi186vI8N0Y2JyQ=="; 419 }; 420 }; 421 + "@babel/plugin-proposal-export-namespace-from-7.12.13" = { 422 name = "_at_babel_slash_plugin-proposal-export-namespace-from"; 423 packageName = "@babel/plugin-proposal-export-namespace-from"; 424 + version = "7.12.13"; 425 src = fetchurl { 426 + url = "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.13.tgz"; 427 + sha512 = "INAgtFo4OnLN3Y/j0VwAgw3HDXcDtX+C/erMvWzuV9v71r7urb6iyMXu7eM9IgLr1ElLlOkaHjJ0SbCmdOQ3Iw=="; 428 }; 429 }; 430 + "@babel/plugin-proposal-json-strings-7.13.8" = { 431 name = "_at_babel_slash_plugin-proposal-json-strings"; 432 packageName = "@babel/plugin-proposal-json-strings"; 433 + version = "7.13.8"; 434 src = fetchurl { 435 + url = "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.13.8.tgz"; 436 + sha512 = "w4zOPKUFPX1mgvTmL/fcEqy34hrQ1CRcGxdphBc6snDnnqJ47EZDIyop6IwXzAC8G916hsIuXB2ZMBCExC5k7Q=="; 437 }; 438 }; 439 + "@babel/plugin-proposal-logical-assignment-operators-7.13.8" = { 440 name = "_at_babel_slash_plugin-proposal-logical-assignment-operators"; 441 packageName = "@babel/plugin-proposal-logical-assignment-operators"; 442 + version = "7.13.8"; 443 src = fetchurl { 444 + url = "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.13.8.tgz"; 445 + sha512 = "aul6znYB4N4HGweImqKn59Su9RS8lbUIqxtXTOcAGtNIDczoEFv+l1EhmX8rUBp3G1jMjKJm8m0jXVp63ZpS4A=="; 446 }; 447 }; 448 + "@babel/plugin-proposal-nullish-coalescing-operator-7.13.8" = { 449 name = "_at_babel_slash_plugin-proposal-nullish-coalescing-operator"; 450 packageName = "@babel/plugin-proposal-nullish-coalescing-operator"; 451 + version = "7.13.8"; 452 src = fetchurl { 453 + url = "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.13.8.tgz"; 454 + sha512 = "iePlDPBn//UhxExyS9KyeYU7RM9WScAG+D3Hhno0PLJebAEpDZMocbDe64eqynhNAnwz/vZoL/q/QB2T1OH39A=="; 455 }; 456 }; 457 + "@babel/plugin-proposal-numeric-separator-7.12.13" = { 458 name = "_at_babel_slash_plugin-proposal-numeric-separator"; 459 packageName = "@babel/plugin-proposal-numeric-separator"; 460 + version = "7.12.13"; 461 src = fetchurl { 462 + url = "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.13.tgz"; 463 + sha512 = "O1jFia9R8BUCl3ZGB7eitaAPu62TXJRHn7rh+ojNERCFyqRwJMTmhz+tJ+k0CwI6CLjX/ee4qW74FSqlq9I35w=="; 464 }; 465 }; 466 + "@babel/plugin-proposal-object-rest-spread-7.13.8" = { 467 name = "_at_babel_slash_plugin-proposal-object-rest-spread"; 468 packageName = "@babel/plugin-proposal-object-rest-spread"; 469 + version = "7.13.8"; 470 src = fetchurl { 471 + url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.13.8.tgz"; 472 + sha512 = "DhB2EuB1Ih7S3/IRX5AFVgZ16k3EzfRbq97CxAVI1KSYcW+lexV8VZb7G7L8zuPVSdQMRn0kiBpf/Yzu9ZKH0g=="; 473 }; 474 }; 475 + "@babel/plugin-proposal-optional-catch-binding-7.13.8" = { 476 name = "_at_babel_slash_plugin-proposal-optional-catch-binding"; 477 packageName = "@babel/plugin-proposal-optional-catch-binding"; 478 + version = "7.13.8"; 479 src = fetchurl { 480 + url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.13.8.tgz"; 481 + sha512 = "0wS/4DUF1CuTmGo+NiaHfHcVSeSLj5S3e6RivPTg/2k3wOv3jO35tZ6/ZWsQhQMvdgI7CwphjQa/ccarLymHVA=="; 482 }; 483 }; 484 + "@babel/plugin-proposal-optional-chaining-7.13.8" = { 485 name = "_at_babel_slash_plugin-proposal-optional-chaining"; 486 packageName = "@babel/plugin-proposal-optional-chaining"; 487 + version = "7.13.8"; 488 src = fetchurl { 489 + url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.13.8.tgz"; 490 + sha512 = "hpbBwbTgd7Cz1QryvwJZRo1U0k1q8uyBmeXOSQUjdg/A2TASkhR/rz7AyqZ/kS8kbpsNA80rOYbxySBJAqmhhQ=="; 491 }; 492 }; 493 + "@babel/plugin-proposal-private-methods-7.13.0" = { 494 name = "_at_babel_slash_plugin-proposal-private-methods"; 495 packageName = "@babel/plugin-proposal-private-methods"; 496 + version = "7.13.0"; 497 src = fetchurl { 498 + url = "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.13.0.tgz"; 499 + sha512 = "MXyyKQd9inhx1kDYPkFRVOBXQ20ES8Pto3T7UZ92xj2mY0EVD8oAVzeyYuVfy/mxAdTSIayOvg+aVzcHV2bn6Q=="; 500 }; 501 }; 502 + "@babel/plugin-proposal-unicode-property-regex-7.12.13" = { 503 name = "_at_babel_slash_plugin-proposal-unicode-property-regex"; 504 packageName = "@babel/plugin-proposal-unicode-property-regex"; 505 + version = "7.12.13"; 506 src = fetchurl { 507 + url = "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.13.tgz"; 508 + sha512 = "XyJmZidNfofEkqFV5VC/bLabGmO5QzenPO/YOfGuEbgU+2sSwMmio3YLb4WtBgcmmdwZHyVyv8on77IUjQ5Gvg=="; 509 }; 510 }; 511 "@babel/plugin-syntax-async-generators-7.8.4" = { ··· 526 sha512 = "wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg=="; 527 }; 528 }; 529 + "@babel/plugin-syntax-class-properties-7.12.13" = { 530 name = "_at_babel_slash_plugin-syntax-class-properties"; 531 packageName = "@babel/plugin-syntax-class-properties"; 532 + version = "7.12.13"; 533 src = fetchurl { 534 + url = "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz"; 535 + sha512 = "fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA=="; 536 }; 537 }; 538 "@babel/plugin-syntax-dynamic-import-7.8.3" = { ··· 625 sha512 = "KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg=="; 626 }; 627 }; 628 + "@babel/plugin-syntax-top-level-await-7.12.13" = { 629 name = "_at_babel_slash_plugin-syntax-top-level-await"; 630 packageName = "@babel/plugin-syntax-top-level-await"; 631 + version = "7.12.13"; 632 src = fetchurl { 633 + url = "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.13.tgz"; 634 + sha512 = "A81F9pDwyS7yM//KwbCSDqy3Uj4NMIurtplxphWxoYtNPov7cJsDkAFNNyVlIZ3jwGycVsurZ+LtOA8gZ376iQ=="; 635 }; 636 }; 637 + "@babel/plugin-syntax-typescript-7.12.13" = { 638 name = "_at_babel_slash_plugin-syntax-typescript"; 639 packageName = "@babel/plugin-syntax-typescript"; 640 + version = "7.12.13"; 641 src = fetchurl { 642 + url = "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.12.13.tgz"; 643 + sha512 = "cHP3u1JiUiG2LFDKbXnwVad81GvfyIOmCD6HIEId6ojrY0Drfy2q1jw7BwN7dE84+kTnBjLkXoL3IEy/3JPu2w=="; 644 }; 645 }; 646 + "@babel/plugin-transform-arrow-functions-7.13.0" = { 647 name = "_at_babel_slash_plugin-transform-arrow-functions"; 648 packageName = "@babel/plugin-transform-arrow-functions"; 649 + version = "7.13.0"; 650 src = fetchurl { 651 + url = "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.13.0.tgz"; 652 + sha512 = "96lgJagobeVmazXFaDrbmCLQxBysKu7U6Do3mLsx27gf5Dk85ezysrs2BZUpXD703U/Su1xTBDxxar2oa4jAGg=="; 653 }; 654 }; 655 + "@babel/plugin-transform-async-to-generator-7.13.0" = { 656 name = "_at_babel_slash_plugin-transform-async-to-generator"; 657 packageName = "@babel/plugin-transform-async-to-generator"; 658 + version = "7.13.0"; 659 src = fetchurl { 660 + url = "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.13.0.tgz"; 661 + sha512 = "3j6E004Dx0K3eGmhxVJxwwI89CTJrce7lg3UrtFuDAVQ/2+SJ/h/aSFOeE6/n0WB1GsOffsJp6MnPQNQ8nmwhg=="; 662 }; 663 }; 664 + "@babel/plugin-transform-block-scoped-functions-7.12.13" = { 665 name = "_at_babel_slash_plugin-transform-block-scoped-functions"; 666 packageName = "@babel/plugin-transform-block-scoped-functions"; 667 + version = "7.12.13"; 668 src = fetchurl { 669 + url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.13.tgz"; 670 + sha512 = "zNyFqbc3kI/fVpqwfqkg6RvBgFpC4J18aKKMmv7KdQ/1GgREapSJAykLMVNwfRGO3BtHj3YQZl8kxCXPcVMVeg=="; 671 }; 672 }; 673 + "@babel/plugin-transform-block-scoping-7.12.13" = { 674 name = "_at_babel_slash_plugin-transform-block-scoping"; 675 packageName = "@babel/plugin-transform-block-scoping"; 676 + version = "7.12.13"; 677 src = fetchurl { 678 + url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.13.tgz"; 679 + sha512 = "Pxwe0iqWJX4fOOM2kEZeUuAxHMWb9nK+9oh5d11bsLoB0xMg+mkDpt0eYuDZB7ETrY9bbcVlKUGTOGWy7BHsMQ=="; 680 }; 681 }; 682 + "@babel/plugin-transform-classes-7.13.0" = { 683 name = "_at_babel_slash_plugin-transform-classes"; 684 packageName = "@babel/plugin-transform-classes"; 685 + version = "7.13.0"; 686 src = fetchurl { 687 + url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.13.0.tgz"; 688 + sha512 = "9BtHCPUARyVH1oXGcSJD3YpsqRLROJx5ZNP6tN5vnk17N0SVf9WCtf8Nuh1CFmgByKKAIMstitKduoCmsaDK5g=="; 689 }; 690 }; 691 + "@babel/plugin-transform-computed-properties-7.13.0" = { 692 name = "_at_babel_slash_plugin-transform-computed-properties"; 693 packageName = "@babel/plugin-transform-computed-properties"; 694 + version = "7.13.0"; 695 src = fetchurl { 696 + url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.13.0.tgz"; 697 + sha512 = "RRqTYTeZkZAz8WbieLTvKUEUxZlUTdmL5KGMyZj7FnMfLNKV4+r5549aORG/mgojRmFlQMJDUupwAMiF2Q7OUg=="; 698 }; 699 }; 700 + "@babel/plugin-transform-destructuring-7.13.0" = { 701 name = "_at_babel_slash_plugin-transform-destructuring"; 702 packageName = "@babel/plugin-transform-destructuring"; 703 + version = "7.13.0"; 704 src = fetchurl { 705 + url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.13.0.tgz"; 706 + sha512 = "zym5em7tePoNT9s964c0/KU3JPPnuq7VhIxPRefJ4/s82cD+q1mgKfuGRDMCPL0HTyKz4dISuQlCusfgCJ86HA=="; 707 }; 708 }; 709 + "@babel/plugin-transform-dotall-regex-7.12.13" = { 710 name = "_at_babel_slash_plugin-transform-dotall-regex"; 711 packageName = "@babel/plugin-transform-dotall-regex"; 712 + version = "7.12.13"; 713 src = fetchurl { 714 + url = "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.13.tgz"; 715 + sha512 = "foDrozE65ZFdUC2OfgeOCrEPTxdB3yjqxpXh8CH+ipd9CHd4s/iq81kcUpyH8ACGNEPdFqbtzfgzbT/ZGlbDeQ=="; 716 }; 717 }; 718 + "@babel/plugin-transform-duplicate-keys-7.12.13" = { 719 name = "_at_babel_slash_plugin-transform-duplicate-keys"; 720 packageName = "@babel/plugin-transform-duplicate-keys"; 721 + version = "7.12.13"; 722 src = fetchurl { 723 + url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.13.tgz"; 724 + sha512 = "NfADJiiHdhLBW3pulJlJI2NB0t4cci4WTZ8FtdIuNc2+8pslXdPtRRAEWqUY+m9kNOk2eRYbTAOipAxlrOcwwQ=="; 725 }; 726 }; 727 + "@babel/plugin-transform-exponentiation-operator-7.12.13" = { 728 name = "_at_babel_slash_plugin-transform-exponentiation-operator"; 729 packageName = "@babel/plugin-transform-exponentiation-operator"; 730 + version = "7.12.13"; 731 src = fetchurl { 732 + url = "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.13.tgz"; 733 + sha512 = "fbUelkM1apvqez/yYx1/oICVnGo2KM5s63mhGylrmXUxK/IAXSIf87QIxVfZldWf4QsOafY6vV3bX8aMHSvNrA=="; 734 }; 735 }; 736 + "@babel/plugin-transform-for-of-7.13.0" = { 737 name = "_at_babel_slash_plugin-transform-for-of"; 738 packageName = "@babel/plugin-transform-for-of"; 739 + version = "7.13.0"; 740 src = fetchurl { 741 + url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.13.0.tgz"; 742 + sha512 = "IHKT00mwUVYE0zzbkDgNRP6SRzvfGCYsOxIRz8KsiaaHCcT9BWIkO+H9QRJseHBLOGBZkHUdHiqj6r0POsdytg=="; 743 }; 744 }; 745 + "@babel/plugin-transform-function-name-7.12.13" = { 746 name = "_at_babel_slash_plugin-transform-function-name"; 747 packageName = "@babel/plugin-transform-function-name"; 748 + version = "7.12.13"; 749 src = fetchurl { 750 + url = "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.13.tgz"; 751 + sha512 = "6K7gZycG0cmIwwF7uMK/ZqeCikCGVBdyP2J5SKNCXO5EOHcqi+z7Jwf8AmyDNcBgxET8DrEtCt/mPKPyAzXyqQ=="; 752 }; 753 }; 754 + "@babel/plugin-transform-literals-7.12.13" = { 755 name = "_at_babel_slash_plugin-transform-literals"; 756 packageName = "@babel/plugin-transform-literals"; 757 + version = "7.12.13"; 758 src = fetchurl { 759 + url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.13.tgz"; 760 + sha512 = "FW+WPjSR7hiUxMcKqyNjP05tQ2kmBCdpEpZHY1ARm96tGQCCBvXKnpjILtDplUnJ/eHZ0lALLM+d2lMFSpYJrQ=="; 761 }; 762 }; 763 + "@babel/plugin-transform-member-expression-literals-7.12.13" = { 764 name = "_at_babel_slash_plugin-transform-member-expression-literals"; 765 packageName = "@babel/plugin-transform-member-expression-literals"; 766 + version = "7.12.13"; 767 src = fetchurl { 768 + url = "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.13.tgz"; 769 + sha512 = "kxLkOsg8yir4YeEPHLuO2tXP9R/gTjpuTOjshqSpELUN3ZAg2jfDnKUvzzJxObun38sw3wm4Uu69sX/zA7iRvg=="; 770 }; 771 }; 772 + "@babel/plugin-transform-modules-amd-7.13.0" = { 773 name = "_at_babel_slash_plugin-transform-modules-amd"; 774 packageName = "@babel/plugin-transform-modules-amd"; 775 + version = "7.13.0"; 776 src = fetchurl { 777 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.13.0.tgz"; 778 + sha512 = "EKy/E2NHhY/6Vw5d1k3rgoobftcNUmp9fGjb9XZwQLtTctsRBOTRO7RHHxfIky1ogMN5BxN7p9uMA3SzPfotMQ=="; 779 }; 780 }; 781 + "@babel/plugin-transform-modules-commonjs-7.13.8" = { 782 name = "_at_babel_slash_plugin-transform-modules-commonjs"; 783 packageName = "@babel/plugin-transform-modules-commonjs"; 784 + version = "7.13.8"; 785 src = fetchurl { 786 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.13.8.tgz"; 787 + sha512 = "9QiOx4MEGglfYZ4XOnU79OHr6vIWUakIj9b4mioN8eQIoEh+pf5p/zEB36JpDFWA12nNMiRf7bfoRvl9Rn79Bw=="; 788 }; 789 }; 790 + "@babel/plugin-transform-modules-systemjs-7.13.8" = { 791 name = "_at_babel_slash_plugin-transform-modules-systemjs"; 792 packageName = "@babel/plugin-transform-modules-systemjs"; 793 + version = "7.13.8"; 794 src = fetchurl { 795 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.13.8.tgz"; 796 + sha512 = "hwqctPYjhM6cWvVIlOIe27jCIBgHCsdH2xCJVAYQm7V5yTMoilbVMi9f6wKg0rpQAOn6ZG4AOyvCqFF/hUh6+A=="; 797 }; 798 }; 799 + "@babel/plugin-transform-modules-umd-7.13.0" = { 800 name = "_at_babel_slash_plugin-transform-modules-umd"; 801 packageName = "@babel/plugin-transform-modules-umd"; 802 + version = "7.13.0"; 803 src = fetchurl { 804 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.13.0.tgz"; 805 + sha512 = "D/ILzAh6uyvkWjKKyFE/W0FzWwasv6vPTSqPcjxFqn6QpX3u8DjRVliq4F2BamO2Wee/om06Vyy+vPkNrd4wxw=="; 806 }; 807 }; 808 + "@babel/plugin-transform-named-capturing-groups-regex-7.12.13" = { 809 name = "_at_babel_slash_plugin-transform-named-capturing-groups-regex"; 810 packageName = "@babel/plugin-transform-named-capturing-groups-regex"; 811 + version = "7.12.13"; 812 src = fetchurl { 813 + url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.13.tgz"; 814 + sha512 = "Xsm8P2hr5hAxyYblrfACXpQKdQbx4m2df9/ZZSQ8MAhsadw06+jW7s9zsSw6he+mJZXRlVMyEnVktJo4zjk1WA=="; 815 }; 816 }; 817 + "@babel/plugin-transform-new-target-7.12.13" = { 818 name = "_at_babel_slash_plugin-transform-new-target"; 819 packageName = "@babel/plugin-transform-new-target"; 820 + version = "7.12.13"; 821 src = fetchurl { 822 + url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.13.tgz"; 823 + sha512 = "/KY2hbLxrG5GTQ9zzZSc3xWiOy379pIETEhbtzwZcw9rvuaVV4Fqy7BYGYOWZnaoXIQYbbJ0ziXLa/sKcGCYEQ=="; 824 }; 825 }; 826 + "@babel/plugin-transform-object-super-7.12.13" = { 827 name = "_at_babel_slash_plugin-transform-object-super"; 828 packageName = "@babel/plugin-transform-object-super"; 829 + version = "7.12.13"; 830 src = fetchurl { 831 + url = "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.13.tgz"; 832 + sha512 = "JzYIcj3XtYspZDV8j9ulnoMPZZnF/Cj0LUxPOjR89BdBVx+zYJI9MdMIlUZjbXDX+6YVeS6I3e8op+qQ3BYBoQ=="; 833 }; 834 }; 835 + "@babel/plugin-transform-parameters-7.13.0" = { 836 name = "_at_babel_slash_plugin-transform-parameters"; 837 packageName = "@babel/plugin-transform-parameters"; 838 + version = "7.13.0"; 839 src = fetchurl { 840 + url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.13.0.tgz"; 841 + sha512 = "Jt8k/h/mIwE2JFEOb3lURoY5C85ETcYPnbuAJ96zRBzh1XHtQZfs62ChZ6EP22QlC8c7Xqr9q+e1SU5qttwwjw=="; 842 }; 843 }; 844 + "@babel/plugin-transform-property-literals-7.12.13" = { 845 name = "_at_babel_slash_plugin-transform-property-literals"; 846 packageName = "@babel/plugin-transform-property-literals"; 847 + version = "7.12.13"; 848 src = fetchurl { 849 + url = "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.13.tgz"; 850 + sha512 = "nqVigwVan+lR+g8Fj8Exl0UQX2kymtjcWfMOYM1vTYEKujeyv2SkMgazf2qNcK7l4SDiKyTA/nHCPqL4e2zo1A=="; 851 }; 852 }; 853 + "@babel/plugin-transform-regenerator-7.12.13" = { 854 name = "_at_babel_slash_plugin-transform-regenerator"; 855 packageName = "@babel/plugin-transform-regenerator"; 856 + version = "7.12.13"; 857 src = fetchurl { 858 + url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.13.tgz"; 859 + sha512 = "lxb2ZAvSLyJ2PEe47hoGWPmW22v7CtSl9jW8mingV4H2sEX/JOcrAj2nPuGWi56ERUm2bUpjKzONAuT6HCn2EA=="; 860 }; 861 }; 862 + "@babel/plugin-transform-reserved-words-7.12.13" = { 863 name = "_at_babel_slash_plugin-transform-reserved-words"; 864 packageName = "@babel/plugin-transform-reserved-words"; 865 + version = "7.12.13"; 866 src = fetchurl { 867 + url = "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.13.tgz"; 868 + sha512 = "xhUPzDXxZN1QfiOy/I5tyye+TRz6lA7z6xaT4CLOjPRMVg1ldRf0LHw0TDBpYL4vG78556WuHdyO9oi5UmzZBg=="; 869 }; 870 }; 871 + "@babel/plugin-transform-shorthand-properties-7.12.13" = { 872 name = "_at_babel_slash_plugin-transform-shorthand-properties"; 873 packageName = "@babel/plugin-transform-shorthand-properties"; 874 + version = "7.12.13"; 875 src = fetchurl { 876 + url = "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.13.tgz"; 877 + sha512 = "xpL49pqPnLtf0tVluuqvzWIgLEhuPpZzvs2yabUHSKRNlN7ScYU7aMlmavOeyXJZKgZKQRBlh8rHbKiJDraTSw=="; 878 }; 879 }; 880 + "@babel/plugin-transform-spread-7.13.0" = { 881 name = "_at_babel_slash_plugin-transform-spread"; 882 packageName = "@babel/plugin-transform-spread"; 883 + version = "7.13.0"; 884 src = fetchurl { 885 + url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.13.0.tgz"; 886 + sha512 = "V6vkiXijjzYeFmQTr3dBxPtZYLPcUfY34DebOU27jIl2M/Y8Egm52Hw82CSjjPqd54GTlJs5x+CR7HeNr24ckg=="; 887 }; 888 }; 889 + "@babel/plugin-transform-sticky-regex-7.12.13" = { 890 name = "_at_babel_slash_plugin-transform-sticky-regex"; 891 packageName = "@babel/plugin-transform-sticky-regex"; 892 + version = "7.12.13"; 893 src = fetchurl { 894 + url = "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.13.tgz"; 895 + sha512 = "Jc3JSaaWT8+fr7GRvQP02fKDsYk4K/lYwWq38r/UGfaxo89ajud321NH28KRQ7xy1Ybc0VUE5Pz8psjNNDUglg=="; 896 }; 897 }; 898 + "@babel/plugin-transform-template-literals-7.13.0" = { 899 name = "_at_babel_slash_plugin-transform-template-literals"; 900 packageName = "@babel/plugin-transform-template-literals"; 901 + version = "7.13.0"; 902 src = fetchurl { 903 + url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.13.0.tgz"; 904 + sha512 = "d67umW6nlfmr1iehCcBv69eSUSySk1EsIS8aTDX4Xo9qajAh6mYtcl4kJrBkGXuxZPEgVr7RVfAvNW6YQkd4Mw=="; 905 }; 906 }; 907 + "@babel/plugin-transform-typeof-symbol-7.12.13" = { 908 name = "_at_babel_slash_plugin-transform-typeof-symbol"; 909 packageName = "@babel/plugin-transform-typeof-symbol"; 910 + version = "7.12.13"; 911 src = fetchurl { 912 + url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.13.tgz"; 913 + sha512 = "eKv/LmUJpMnu4npgfvs3LiHhJua5fo/CysENxa45YCQXZwKnGCQKAg87bvoqSW1fFT+HA32l03Qxsm8ouTY3ZQ=="; 914 }; 915 }; 916 + "@babel/plugin-transform-typescript-7.13.0" = { 917 name = "_at_babel_slash_plugin-transform-typescript"; 918 packageName = "@babel/plugin-transform-typescript"; 919 + version = "7.13.0"; 920 src = fetchurl { 921 + url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.13.0.tgz"; 922 + sha512 = "elQEwluzaU8R8dbVuW2Q2Y8Nznf7hnjM7+DSCd14Lo5fF63C9qNLbwZYbmZrtV9/ySpSUpkRpQXvJb6xyu4hCQ=="; 923 }; 924 }; 925 + "@babel/plugin-transform-unicode-escapes-7.12.13" = { 926 name = "_at_babel_slash_plugin-transform-unicode-escapes"; 927 packageName = "@babel/plugin-transform-unicode-escapes"; 928 + version = "7.12.13"; 929 src = fetchurl { 930 + url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.13.tgz"; 931 + sha512 = "0bHEkdwJ/sN/ikBHfSmOXPypN/beiGqjo+o4/5K+vxEFNPRPdImhviPakMKG4x96l85emoa0Z6cDflsdBusZbw=="; 932 }; 933 }; 934 + "@babel/plugin-transform-unicode-regex-7.12.13" = { 935 name = "_at_babel_slash_plugin-transform-unicode-regex"; 936 packageName = "@babel/plugin-transform-unicode-regex"; 937 + version = "7.12.13"; 938 src = fetchurl { 939 + url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.13.tgz"; 940 + sha512 = "mDRzSNY7/zopwisPZ5kM9XKCfhchqIYwAKRERtEnhYscZB79VRekuRSoYbN0+KVe3y8+q1h6A4svXtP7N+UoCA=="; 941 }; 942 }; 943 + "@babel/preset-env-7.13.9" = { 944 name = "_at_babel_slash_preset-env"; 945 packageName = "@babel/preset-env"; 946 + version = "7.13.9"; 947 src = fetchurl { 948 + url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.13.9.tgz"; 949 + sha512 = "mcsHUlh2rIhViqMG823JpscLMesRt3QbMsv1+jhopXEb3W2wXvQ9QoiOlZI9ZbR3XqPtaFpZwEZKYqGJnGMZTQ=="; 950 }; 951 }; 952 "@babel/preset-modules-0.1.4" = { ··· 958 sha512 = "J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg=="; 959 }; 960 }; 961 + "@babel/preset-typescript-7.13.0" = { 962 name = "_at_babel_slash_preset-typescript"; 963 packageName = "@babel/preset-typescript"; 964 + version = "7.13.0"; 965 src = fetchurl { 966 + url = "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.13.0.tgz"; 967 + sha512 = "LXJwxrHy0N3f6gIJlYbLta1D9BDtHpQeqwzM0LIfjDlr6UE/D5Mc7W4iDiQzaE+ks0sTjT26ArcHWnJVt0QiHw=="; 968 }; 969 }; 970 + "@babel/runtime-7.13.9" = { 971 name = "_at_babel_slash_runtime"; 972 packageName = "@babel/runtime"; 973 + version = "7.13.9"; 974 src = fetchurl { 975 + url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.13.9.tgz"; 976 + sha512 = "aY2kU+xgJ3dJ1eU6FMB9EH8dIe8dmusF1xEku52joLvw6eAFN0AI+WxCLDnpev2LEejWBAy2sBvBOBAjI3zmvA=="; 977 }; 978 }; 979 + "@babel/template-7.12.13" = { 980 name = "_at_babel_slash_template"; 981 packageName = "@babel/template"; 982 + version = "7.12.13"; 983 src = fetchurl { 984 + url = "https://registry.npmjs.org/@babel/template/-/template-7.12.13.tgz"; 985 + sha512 = "/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA=="; 986 }; 987 }; 988 + "@babel/traverse-7.13.0" = { 989 name = "_at_babel_slash_traverse"; 990 packageName = "@babel/traverse"; 991 + version = "7.13.0"; 992 src = fetchurl { 993 + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.13.0.tgz"; 994 + sha512 = "xys5xi5JEhzC3RzEmSGrs/b3pJW/o87SypZ+G/PhaE7uqVQNv/jlmVIBXuoh5atqQ434LfXV+sf23Oxj0bchJQ=="; 995 }; 996 }; 997 + "@babel/traverse-7.13.13" = { 998 name = "_at_babel_slash_traverse"; 999 packageName = "@babel/traverse"; 1000 + version = "7.13.13"; 1001 src = fetchurl { 1002 + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.13.13.tgz"; 1003 + sha512 = "CblEcwmXKR6eP43oQGG++0QMTtCjAsa3frUuzHoiIJWpaIIi8dwMyEFUJoXRLxagGqCK+jALRwIO+o3R9p/uUg=="; 1004 }; 1005 }; 1006 + "@babel/types-7.13.0" = { 1007 name = "_at_babel_slash_types"; 1008 packageName = "@babel/types"; 1009 + version = "7.13.0"; 1010 src = fetchurl { 1011 + url = "https://registry.npmjs.org/@babel/types/-/types-7.13.0.tgz"; 1012 + sha512 = "hE+HE8rnG1Z6Wzo+MhaKE5lM5eMx71T4EHJgku2E3xIfaULhDcxiiRxUYgwX8qwP1BBSlag+TdGOt6JAidIZTA=="; 1013 }; 1014 }; 1015 + "@babel/types-7.13.13" = { 1016 name = "_at_babel_slash_types"; 1017 packageName = "@babel/types"; 1018 + version = "7.13.13"; 1019 src = fetchurl { 1020 + url = "https://registry.npmjs.org/@babel/types/-/types-7.13.13.tgz"; 1021 + sha512 = "kt+EpC6qDfIaqlP+DIbIJOclYy/A1YXs9dAf/ljbi+39Bcbc073H6jKVpXEr/EoIh5anGn5xq/yRVzKl+uIc9w=="; 1022 }; 1023 }; 1024 "@bcoe/v8-coverage-0.2.3" = { ··· 1048 sha512 = "+A1YivoVDNNVCdfozHSR8v/jyuuLTMXwjWuxPFlFlUapXoGc+Gj9mDlTDDfrwl7rXCl2tNZ0kE8sIBO6YOn96Q=="; 1049 }; 1050 }; 1051 + "@eslint/eslintrc-0.4.0" = { 1052 name = "_at_eslint_slash_eslintrc"; 1053 packageName = "@eslint/eslintrc"; 1054 + version = "0.4.0"; 1055 src = fetchurl { 1056 + url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.0.tgz"; 1057 + sha512 = "2ZPCc+uNbjV5ERJr+aKSPRwZgKd2z11x0EgLvb1PURmUrn9QNRXFqje0Ldq454PfAVyaJYyrDvvIKSFP4NnBog=="; 1058 }; 1059 }; 1060 "@istanbuljs/load-nyc-config-1.1.0" = { ··· 1066 sha512 = "VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ=="; 1067 }; 1068 }; 1069 + "@istanbuljs/schema-0.1.3" = { 1070 name = "_at_istanbuljs_slash_schema"; 1071 packageName = "@istanbuljs/schema"; 1072 + version = "0.1.3"; 1073 src = fetchurl { 1074 + url = "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz"; 1075 + sha512 = "ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA=="; 1076 }; 1077 }; 1078 "@jest/console-26.6.2" = { ··· 1174 sha512 = "fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ=="; 1175 }; 1176 }; 1177 + "@nicolo-ribaudo/chokidar-2-2.1.8-no-fsevents" = { 1178 name = "_at_nicolo-ribaudo_slash_chokidar-2"; 1179 packageName = "@nicolo-ribaudo/chokidar-2"; 1180 + version = "2.1.8-no-fsevents"; 1181 src = fetchurl { 1182 + url = "https://registry.npmjs.org/@nicolo-ribaudo/chokidar-2/-/chokidar-2-2.1.8-no-fsevents.tgz"; 1183 + sha512 = "+nb9vWloHNNMFHjGofEam3wopE3m1yuambrrd/fnPc+lFOMB9ROTqQlche9ByFWNkdNqfSgR/kkQtQ8DzEWt2w=="; 1184 }; 1185 }; 1186 + "@nodelib/fs.scandir-2.1.4" = { 1187 name = "_at_nodelib_slash_fs.scandir"; 1188 packageName = "@nodelib/fs.scandir"; 1189 + version = "2.1.4"; 1190 src = fetchurl { 1191 + url = "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz"; 1192 + sha512 = "33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA=="; 1193 }; 1194 }; 1195 + "@nodelib/fs.stat-2.0.4" = { 1196 name = "_at_nodelib_slash_fs.stat"; 1197 packageName = "@nodelib/fs.stat"; 1198 + version = "2.0.4"; 1199 src = fetchurl { 1200 + url = "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz"; 1201 + sha512 = "IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q=="; 1202 }; 1203 }; 1204 + "@nodelib/fs.walk-1.2.6" = { 1205 name = "_at_nodelib_slash_fs.walk"; 1206 packageName = "@nodelib/fs.walk"; 1207 + version = "1.2.6"; 1208 src = fetchurl { 1209 + url = "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz"; 1210 + sha512 = "8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow=="; 1211 }; 1212 }; 1213 + "@serialport/binding-abstract-9.0.7" = { 1214 name = "_at_serialport_slash_binding-abstract"; 1215 packageName = "@serialport/binding-abstract"; 1216 + version = "9.0.7"; 1217 src = fetchurl { 1218 + url = "https://registry.npmjs.org/@serialport/binding-abstract/-/binding-abstract-9.0.7.tgz"; 1219 + sha512 = "g1ncCMIG9rMsxo/28ObYmXZcHThlvtZygsCANmyMUuFS7SwXY4+PhcEnt2+ZcMkEDNRiOklT+ngtIVx5GGpt/A=="; 1220 }; 1221 }; 1222 + "@serialport/binding-mock-9.0.7" = { 1223 name = "_at_serialport_slash_binding-mock"; 1224 packageName = "@serialport/binding-mock"; 1225 + version = "9.0.7"; 1226 src = fetchurl { 1227 + url = "https://registry.npmjs.org/@serialport/binding-mock/-/binding-mock-9.0.7.tgz"; 1228 + sha512 = "aR8H+htZwwZZkVb1MdbnNvGWw8eXVRqQ2qPhkbKyx0N/LY5aVIgCgT98Kt1YylLsG7SzNG+Jbhd4wzwEuPVT5Q=="; 1229 }; 1230 }; 1231 + "@serialport/bindings-9.0.4" = { 1232 name = "_at_serialport_slash_bindings"; 1233 packageName = "@serialport/bindings"; 1234 + version = "9.0.4"; 1235 src = fetchurl { 1236 + url = "https://registry.npmjs.org/@serialport/bindings/-/bindings-9.0.4.tgz"; 1237 + sha512 = "6dlE1vm5c1xk667f1Zm7D+msbHJ9jdnUr9l8DResKpj2iCBzbCNsW+yCYq26WxzXWc1L2HUaS3/aL+k0wm5amg=="; 1238 }; 1239 }; 1240 + "@serialport/parser-byte-length-9.0.7" = { 1241 name = "_at_serialport_slash_parser-byte-length"; 1242 packageName = "@serialport/parser-byte-length"; 1243 + version = "9.0.7"; 1244 src = fetchurl { 1245 + url = "https://registry.npmjs.org/@serialport/parser-byte-length/-/parser-byte-length-9.0.7.tgz"; 1246 + sha512 = "evf7oOOSBMBn2AZZbgBFMRIyEzlsyQkhqaPm7IBCPTxMDXRf4tKkFYJHYZB0/6d1W4eI0meH079UqmSsh/uoDA=="; 1247 }; 1248 }; 1249 + "@serialport/parser-cctalk-9.0.7" = { 1250 name = "_at_serialport_slash_parser-cctalk"; 1251 packageName = "@serialport/parser-cctalk"; 1252 + version = "9.0.7"; 1253 src = fetchurl { 1254 + url = "https://registry.npmjs.org/@serialport/parser-cctalk/-/parser-cctalk-9.0.7.tgz"; 1255 + sha512 = "ert5jhMkeiTfr44TkbdySC09J8UwAsf/RxBucVN5Mz5enG509RggnkfFi4mfj3UCG2vZ7qsmM6gtZ62DshY02Q=="; 1256 }; 1257 }; 1258 + "@serialport/parser-delimiter-9.0.7" = { 1259 name = "_at_serialport_slash_parser-delimiter"; 1260 packageName = "@serialport/parser-delimiter"; 1261 + version = "9.0.7"; 1262 src = fetchurl { 1263 + url = "https://registry.npmjs.org/@serialport/parser-delimiter/-/parser-delimiter-9.0.7.tgz"; 1264 + sha512 = "Vb2NPeXPZ/28M4m5x4OAHFd8jRAeddNCgvL+Q+H/hqFPY1w47JcMLchC7pigRW8Cnt1fklmzfwdNQ8Fb+kMkxQ=="; 1265 + }; 1266 + }; 1267 + "@serialport/parser-inter-byte-timeout-9.0.7" = { 1268 + name = "_at_serialport_slash_parser-inter-byte-timeout"; 1269 + packageName = "@serialport/parser-inter-byte-timeout"; 1270 + version = "9.0.7"; 1271 + src = fetchurl { 1272 + url = "https://registry.npmjs.org/@serialport/parser-inter-byte-timeout/-/parser-inter-byte-timeout-9.0.7.tgz"; 1273 + sha512 = "lUZ3cwgUluBvJ1jf+0LQsqoiPYAokDO6+fRCw9HCfnrF/OS60Gm4rxuyo2uQIueqZkJ7NIFP+ibKsULrA47AEA=="; 1274 }; 1275 }; 1276 + "@serialport/parser-readline-9.0.7" = { 1277 name = "_at_serialport_slash_parser-readline"; 1278 packageName = "@serialport/parser-readline"; 1279 + version = "9.0.7"; 1280 src = fetchurl { 1281 + url = "https://registry.npmjs.org/@serialport/parser-readline/-/parser-readline-9.0.7.tgz"; 1282 + sha512 = "ydoLbgVQQPxWrwbe3Fhh4XnZexbkEQAC6M/qgRTzjnKvTjrD61CJNxLc3vyDaAPI9bJIhTiI7eTX3JB5jJv8Hg=="; 1283 }; 1284 }; 1285 + "@serialport/parser-ready-9.0.7" = { 1286 name = "_at_serialport_slash_parser-ready"; 1287 packageName = "@serialport/parser-ready"; 1288 + version = "9.0.7"; 1289 src = fetchurl { 1290 + url = "https://registry.npmjs.org/@serialport/parser-ready/-/parser-ready-9.0.7.tgz"; 1291 + sha512 = "3qYhI4cNUPAYqVYvdwV57Y+PVRl4dJf1fPBtMoWtwDgwopsAXTR93WCs49WuUq9JCyNW+8Hrfqv8x8eNAD5Dqg=="; 1292 }; 1293 }; 1294 + "@serialport/parser-regex-9.0.7" = { 1295 name = "_at_serialport_slash_parser-regex"; 1296 packageName = "@serialport/parser-regex"; 1297 + version = "9.0.7"; 1298 src = fetchurl { 1299 + url = "https://registry.npmjs.org/@serialport/parser-regex/-/parser-regex-9.0.7.tgz"; 1300 + sha512 = "5XF+FXbhqQ/5bVKM4NaGs1m+E9KjfmeCx/obwsKaUZognQF67jwoTfjJJWNP/21jKfxdl8XoCYjZjASl3XKRAw=="; 1301 }; 1302 }; 1303 + "@serialport/stream-9.0.7" = { 1304 name = "_at_serialport_slash_stream"; 1305 packageName = "@serialport/stream"; 1306 + version = "9.0.7"; 1307 src = fetchurl { 1308 + url = "https://registry.npmjs.org/@serialport/stream/-/stream-9.0.7.tgz"; 1309 + sha512 = "c/h7HPAeFiryD9iTGlaSvPqHFHSZ0NMQHxC4rcmKS2Vu3qJuEtkBdTLABwsMp7iWEiSnI4KC3s7bHapaXP06FQ=="; 1310 }; 1311 }; 1312 + "@sinonjs/commons-1.8.2" = { 1313 name = "_at_sinonjs_slash_commons"; 1314 packageName = "@sinonjs/commons"; 1315 + version = "1.8.2"; 1316 src = fetchurl { 1317 + url = "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.2.tgz"; 1318 + sha512 = "sruwd86RJHdsVf/AtBoijDmUqJp3B6hF/DGC23C+JaegnDHaZyewCjoVGTdg3J0uz3Zs7NnIT05OBOmML72lQw=="; 1319 }; 1320 }; 1321 "@sinonjs/fake-timers-6.0.1" = { ··· 1336 sha512 = "wMTHiiTiBAAPebqaPiPDLFA4LYPKr6Ph0Xq/6rq1Ur3v66HXyG+clfR9CNETkD7MQS8ZHvpQOtA53DLws5WAEQ=="; 1337 }; 1338 }; 1339 + "@types/babel__core-7.1.14" = { 1340 + name = "_at_types_slash_babel__core"; 1341 + packageName = "@types/babel__core"; 1342 + version = "7.1.14"; 1343 + src = fetchurl { 1344 + url = "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.14.tgz"; 1345 + sha512 = "zGZJzzBUVDo/eV6KgbE0f0ZI7dInEYvo12Rb70uNQDshC3SkRMb67ja0GgRHZgAX3Za6rhaWlvbDO8rrGyAb1g=="; 1346 + }; 1347 + }; 1348 "@types/babel__generator-7.6.2" = { 1349 name = "_at_types_slash_babel__generator"; 1350 packageName = "@types/babel__generator"; ··· 1363 sha512 = "NTPErx4/FiPCGScH7foPyr+/1Dkzkni+rHiYHHoTjvwou7AQzJkNeD60A9CXRy+ZEN2B1bggmkTMCDb+Mv5k+A=="; 1364 }; 1365 }; 1366 + "@types/babel__traverse-7.11.0" = { 1367 name = "_at_types_slash_babel__traverse"; 1368 packageName = "@types/babel__traverse"; 1369 + version = "7.11.0"; 1370 src = fetchurl { 1371 + url = "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.11.0.tgz"; 1372 + sha512 = "kSjgDMZONiIfSH1Nxcr5JIRMwUetDki63FSQfpTCz8ogF3Ulqm8+mr5f78dUYs6vMiB6gBusQqfQmBvHZj/lwg=="; 1373 }; 1374 }; 1375 + "@types/babel__traverse-7.11.1" = { 1376 name = "_at_types_slash_babel__traverse"; 1377 packageName = "@types/babel__traverse"; 1378 + version = "7.11.1"; 1379 src = fetchurl { 1380 + url = "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.11.1.tgz"; 1381 + sha512 = "Vs0hm0vPahPMYi9tDjtP66llufgO3ST16WXaSTtDGEl9cewAl3AibmxWw6TINOqHPT9z0uABKAYjT9jNSg4npw=="; 1382 }; 1383 }; 1384 "@types/debounce-1.2.0" = { ··· 1399 sha512 = "Q1y515GcOdTHgagaVFhHnIFQ38ygs/kmxdNpvpou+raI9UO3YZcHDngBSYKQklcKlvA7iuQlmIKbzvmxcOE9CQ=="; 1400 }; 1401 }; 1402 + "@types/graceful-fs-4.1.5" = { 1403 name = "_at_types_slash_graceful-fs"; 1404 packageName = "@types/graceful-fs"; 1405 + version = "4.1.5"; 1406 src = fetchurl { 1407 + url = "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz"; 1408 + sha512 = "anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw=="; 1409 }; 1410 }; 1411 "@types/istanbul-lib-coverage-2.0.3" = { ··· 1435 sha512 = "nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA=="; 1436 }; 1437 }; 1438 + "@types/jest-26.0.20" = { 1439 name = "_at_types_slash_jest"; 1440 packageName = "@types/jest"; 1441 + version = "26.0.20"; 1442 src = fetchurl { 1443 + url = "https://registry.npmjs.org/@types/jest/-/jest-26.0.20.tgz"; 1444 + sha512 = "9zi2Y+5USJRxd0FsahERhBwlcvFh6D2GLQnY2FH2BzK8J9s9omvNHIbvABwIluXa0fD8XVKMLTO0aOEuUfACAA=="; 1445 }; 1446 }; 1447 + "@types/json-schema-7.0.7" = { 1448 name = "_at_types_slash_json-schema"; 1449 packageName = "@types/json-schema"; 1450 + version = "7.0.7"; 1451 src = fetchurl { 1452 + url = "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.7.tgz"; 1453 + sha512 = "cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA=="; 1454 }; 1455 }; 1456 "@types/nedb-1.8.11" = { ··· 1462 sha512 = "qHQRLZ0e6l/XK/2Qb2v5N1ujmdttYkUvnRI4nPIifMy6vYwoAnER10xhX13isWjjQtNsrjNLinZgDDguzPmEKw=="; 1463 }; 1464 }; 1465 + "@types/node-14.14.31" = { 1466 name = "_at_types_slash_node"; 1467 packageName = "@types/node"; 1468 + version = "14.14.31"; 1469 src = fetchurl { 1470 + url = "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz"; 1471 + sha512 = "vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g=="; 1472 }; 1473 }; 1474 + "@types/node-14.14.37" = { 1475 name = "_at_types_slash_node"; 1476 packageName = "@types/node"; 1477 + version = "14.14.37"; 1478 src = fetchurl { 1479 + url = "https://registry.npmjs.org/@types/node/-/node-14.14.37.tgz"; 1480 + sha512 = "XYmBiy+ohOR4Lh5jE379fV2IU+6Jn4g5qASinhitfyO71b/sCo6MKsMLF5tc7Zf2CE8hViVQyYSobJNke8OvUw=="; 1481 }; 1482 }; 1483 "@types/normalize-package-data-2.4.0" = { ··· 1489 sha512 = "f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA=="; 1490 }; 1491 }; 1492 + "@types/prettier-2.2.2" = { 1493 + name = "_at_types_slash_prettier"; 1494 + packageName = "@types/prettier"; 1495 + version = "2.2.2"; 1496 + src = fetchurl { 1497 + url = "https://registry.npmjs.org/@types/prettier/-/prettier-2.2.2.tgz"; 1498 + sha512 = "i99hy7Ki19EqVOl77WplDrvgNugHnsSjECVR/wUrzw2TJXz1zlUfT2ngGckR6xN7yFYaijsMAqPkOLx9HgUqHg=="; 1499 + }; 1500 + }; 1501 + "@types/prettier-2.2.3" = { 1502 name = "_at_types_slash_prettier"; 1503 packageName = "@types/prettier"; 1504 + version = "2.2.3"; 1505 src = fetchurl { 1506 + url = "https://registry.npmjs.org/@types/prettier/-/prettier-2.2.3.tgz"; 1507 + sha512 = "PijRCG/K3s3w1We6ynUKdxEc5AcuuH3NBmMDP8uvKVp6X43UY7NQlTzczakXP3DJR0F4dfNQIGjU2cUeRYs2AA=="; 1508 }; 1509 }; 1510 "@types/serialport-8.0.1" = { ··· 1525 sha512 = "RJJrrySY7A8havqpGObOB4W92QXKJo63/jFLLgpvOtsGUqbQZ9Sbgl35KMm1DjC6j7AvmmU2bIno+3IyEaemaw=="; 1526 }; 1527 }; 1528 + "@types/yargs-15.0.13" = { 1529 name = "_at_types_slash_yargs"; 1530 packageName = "@types/yargs"; 1531 + version = "15.0.13"; 1532 src = fetchurl { 1533 + url = "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.13.tgz"; 1534 + sha512 = "kQ5JNTrbDv3Rp5X2n/iUu37IJBDU2gsZ5R/g1/KHOOEc5IKfUFjXT6DENPGduh08I/pamwtEq4oul7gUqKTQDQ=="; 1535 }; 1536 }; 1537 + "@types/yargs-parser-20.2.0" = { 1538 name = "_at_types_slash_yargs-parser"; 1539 packageName = "@types/yargs-parser"; 1540 + version = "20.2.0"; 1541 src = fetchurl { 1542 + url = "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-20.2.0.tgz"; 1543 + sha512 = "37RSHht+gzzgYeobbG+KWryeAW8J33Nhr69cjTqSYymXVZEN9NbRYWoYlRtDhHKPVT1FyNKwaTPC1NynKZpzRA=="; 1544 }; 1545 }; 1546 + "@typescript-eslint/eslint-plugin-4.16.1" = { 1547 name = "_at_typescript-eslint_slash_eslint-plugin"; 1548 packageName = "@typescript-eslint/eslint-plugin"; 1549 + version = "4.16.1"; 1550 src = fetchurl { 1551 + url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.16.1.tgz"; 1552 + sha512 = "SK777klBdlkUZpZLC1mPvyOWk9yAFCWmug13eAjVQ4/Q1LATE/NbcQL1xDHkptQkZOLnPmLUA1Y54m8dqYwnoQ=="; 1553 }; 1554 }; 1555 + "@typescript-eslint/experimental-utils-4.16.1" = { 1556 name = "_at_typescript-eslint_slash_experimental-utils"; 1557 packageName = "@typescript-eslint/experimental-utils"; 1558 + version = "4.16.1"; 1559 src = fetchurl { 1560 + url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.16.1.tgz"; 1561 + sha512 = "0Hm3LSlMYFK17jO4iY3un1Ve9x1zLNn4EM50Lia+0EV99NdbK+cn0er7HC7IvBA23mBg3P+8dUkMXy4leL33UQ=="; 1562 }; 1563 }; 1564 + "@typescript-eslint/experimental-utils-4.19.0" = { 1565 name = "_at_typescript-eslint_slash_experimental-utils"; 1566 packageName = "@typescript-eslint/experimental-utils"; 1567 + version = "4.19.0"; 1568 src = fetchurl { 1569 + url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.19.0.tgz"; 1570 + sha512 = "9/23F1nnyzbHKuoTqFN1iXwN3bvOm/PRIXSBR3qFAYotK/0LveEOHr5JT1WZSzcD6BESl8kPOG3OoDRKO84bHA=="; 1571 }; 1572 }; 1573 + "@typescript-eslint/parser-4.16.1" = { 1574 name = "_at_typescript-eslint_slash_parser"; 1575 packageName = "@typescript-eslint/parser"; 1576 + version = "4.16.1"; 1577 src = fetchurl { 1578 + url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.16.1.tgz"; 1579 + sha512 = "/c0LEZcDL5y8RyI1zLcmZMvJrsR6SM1uetskFkoh3dvqDKVXPsXI+wFB/CbVw7WkEyyTKobC1mUNp/5y6gRvXg=="; 1580 }; 1581 }; 1582 + "@typescript-eslint/scope-manager-4.16.1" = { 1583 name = "_at_typescript-eslint_slash_scope-manager"; 1584 packageName = "@typescript-eslint/scope-manager"; 1585 + version = "4.16.1"; 1586 src = fetchurl { 1587 + url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.16.1.tgz"; 1588 + sha512 = "6IlZv9JaurqV0jkEg923cV49aAn8V6+1H1DRfhRcvZUrptQ+UtSKHb5kwTayzOYTJJ/RsYZdcvhOEKiBLyc0Cw=="; 1589 }; 1590 }; 1591 + "@typescript-eslint/scope-manager-4.19.0" = { 1592 name = "_at_typescript-eslint_slash_scope-manager"; 1593 packageName = "@typescript-eslint/scope-manager"; 1594 + version = "4.19.0"; 1595 src = fetchurl { 1596 + url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.19.0.tgz"; 1597 + sha512 = "GGy4Ba/hLXwJXygkXqMzduqOMc+Na6LrJTZXJWVhRrSuZeXmu8TAnniQVKgj8uTRKe4igO2ysYzH+Np879G75g=="; 1598 }; 1599 }; 1600 + "@typescript-eslint/types-4.16.1" = { 1601 name = "_at_typescript-eslint_slash_types"; 1602 packageName = "@typescript-eslint/types"; 1603 + version = "4.16.1"; 1604 src = fetchurl { 1605 + url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.16.1.tgz"; 1606 + sha512 = "nnKqBwMgRlhzmJQF8tnFDZWfunXmJyuXj55xc8Kbfup4PbkzdoDXZvzN8//EiKR27J6vUSU8j4t37yUuYPiLqA=="; 1607 }; 1608 }; 1609 + "@typescript-eslint/types-4.19.0" = { 1610 name = "_at_typescript-eslint_slash_types"; 1611 packageName = "@typescript-eslint/types"; 1612 + version = "4.19.0"; 1613 src = fetchurl { 1614 + url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.19.0.tgz"; 1615 + sha512 = "A4iAlexVvd4IBsSTNxdvdepW0D4uR/fwxDrKUa+iEY9UWvGREu2ZyB8ylTENM1SH8F7bVC9ac9+si3LWNxcBuA=="; 1616 }; 1617 }; 1618 + "@typescript-eslint/typescript-estree-4.16.1" = { 1619 name = "_at_typescript-eslint_slash_typescript-estree"; 1620 packageName = "@typescript-eslint/typescript-estree"; 1621 + version = "4.16.1"; 1622 src = fetchurl { 1623 + url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.16.1.tgz"; 1624 + sha512 = "m8I/DKHa8YbeHt31T+UGd/l8Kwr0XCTCZL3H4HMvvLCT7HU9V7yYdinTOv1gf/zfqNeDcCgaFH2BMsS8x6NvJg=="; 1625 }; 1626 }; 1627 + "@typescript-eslint/typescript-estree-4.19.0" = { 1628 name = "_at_typescript-eslint_slash_typescript-estree"; 1629 packageName = "@typescript-eslint/typescript-estree"; 1630 + version = "4.19.0"; 1631 src = fetchurl { 1632 + url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.19.0.tgz"; 1633 + sha512 = "3xqArJ/A62smaQYRv2ZFyTA+XxGGWmlDYrsfZG68zJeNbeqRScnhf81rUVa6QG4UgzHnXw5VnMT5cg75dQGDkA=="; 1634 }; 1635 }; 1636 + "@typescript-eslint/visitor-keys-4.16.1" = { 1637 name = "_at_typescript-eslint_slash_visitor-keys"; 1638 packageName = "@typescript-eslint/visitor-keys"; 1639 + version = "4.16.1"; 1640 src = fetchurl { 1641 + url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.16.1.tgz"; 1642 + sha512 = "s/aIP1XcMkEqCNcPQtl60ogUYjSM8FU2mq1O7y5cFf3Xcob1z1iXWNB6cC43Op+NGRTFgGolri6s8z/efA9i1w=="; 1643 }; 1644 }; 1645 + "@typescript-eslint/visitor-keys-4.19.0" = { 1646 name = "_at_typescript-eslint_slash_visitor-keys"; 1647 packageName = "@typescript-eslint/visitor-keys"; 1648 + version = "4.19.0"; 1649 src = fetchurl { 1650 + url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.19.0.tgz"; 1651 + sha512 = "aGPS6kz//j7XLSlgpzU2SeTqHPsmRYxFztj2vPuMMFJXZudpRSehE3WCV+BaxwZFvfAqMoSd86TEuM0PQ59E/A=="; 1652 }; 1653 }; 1654 "abab-2.0.5" = { ··· 1667 src = fetchurl { 1668 url = "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz"; 1669 sha512 = "nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="; 1670 + }; 1671 + }; 1672 + "acorn-8.1.0" = { 1673 + name = "acorn"; 1674 + packageName = "acorn"; 1675 + version = "8.1.0"; 1676 + src = fetchurl { 1677 + url = "https://registry.npmjs.org/acorn/-/acorn-8.1.0.tgz"; 1678 + sha512 = "LWCF/Wn0nfHOmJ9rzQApGnxnvgfROzGilS8936rqN/lfcYkY9MYZzdMqN+2NJ4SlTc+m5HiSa+kNfDtI64dwUA=="; 1679 }; 1680 }; 1681 "acorn-globals-6.0.0" = { ··· 1723 sha512 = "j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="; 1724 }; 1725 }; 1726 + "ajv-7.1.1" = { 1727 + name = "ajv"; 1728 + packageName = "ajv"; 1729 + version = "7.1.1"; 1730 + src = fetchurl { 1731 + url = "https://registry.npmjs.org/ajv/-/ajv-7.1.1.tgz"; 1732 + sha512 = "ga/aqDYnUy/o7vbsRTFhhTsNeXiYb5JWDIcRIeZfwRNCefwjNTVYCGdGSUrEmiu3yDK3vFvNbgJxvrQW4JXrYQ=="; 1733 + }; 1734 + }; 1735 + "ajv-7.2.4" = { 1736 + name = "ajv"; 1737 + packageName = "ajv"; 1738 + version = "7.2.4"; 1739 + src = fetchurl { 1740 + url = "https://registry.npmjs.org/ajv/-/ajv-7.2.4.tgz"; 1741 + sha512 = "nBeQgg/ZZA3u3SYxyaDvpvDtgZ/EZPF547ARgZBrG9Bhu1vKDwAIjtIf+sDtJUKa2zOcEbmRLBRSyMraS/Oy1A=="; 1742 + }; 1743 + }; 1744 "ansi-colors-4.1.1" = { 1745 name = "ansi-colors"; 1746 packageName = "ansi-colors"; ··· 1759 sha512 = "JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA=="; 1760 }; 1761 }; 1762 + "ansi-escapes-4.3.2" = { 1763 + name = "ansi-escapes"; 1764 + packageName = "ansi-escapes"; 1765 + version = "4.3.2"; 1766 + src = fetchurl { 1767 + url = "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz"; 1768 + sha512 = "gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ=="; 1769 + }; 1770 + }; 1771 "ansi-regex-2.1.1" = { 1772 name = "ansi-regex"; 1773 packageName = "ansi-regex"; ··· 1775 src = fetchurl { 1776 url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz"; 1777 sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df"; 1778 }; 1779 }; 1780 "ansi-regex-5.0.0" = { ··· 1921 sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"; 1922 }; 1923 }; 1924 + "astral-regex-2.0.0" = { 1925 name = "astral-regex"; 1926 packageName = "astral-regex"; 1927 + version = "2.0.0"; 1928 src = fetchurl { 1929 + url = "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz"; 1930 + sha512 = "Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ=="; 1931 }; 1932 }; 1933 "async-3.2.0" = { ··· 1993 sha512 = "xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA=="; 1994 }; 1995 }; 1996 + "axios-0.21.1" = { 1997 name = "axios"; 1998 packageName = "axios"; 1999 + version = "0.21.1"; 2000 src = fetchurl { 2001 + url = "https://registry.npmjs.org/axios/-/axios-0.21.1.tgz"; 2002 + sha512 = "dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA=="; 2003 }; 2004 }; 2005 "babel-jest-26.6.3" = { ··· 2038 sha512 = "PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw=="; 2039 }; 2040 }; 2041 + "babel-plugin-polyfill-corejs2-0.1.10" = { 2042 + name = "babel-plugin-polyfill-corejs2"; 2043 + packageName = "babel-plugin-polyfill-corejs2"; 2044 + version = "0.1.10"; 2045 + src = fetchurl { 2046 + url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.1.10.tgz"; 2047 + sha512 = "DO95wD4g0A8KRaHKi0D51NdGXzvpqVLnLu5BTvDlpqUEpTmeEtypgC1xqesORaWmiUOQI14UHKlzNd9iZ2G3ZA=="; 2048 + }; 2049 + }; 2050 + "babel-plugin-polyfill-corejs3-0.1.7" = { 2051 + name = "babel-plugin-polyfill-corejs3"; 2052 + packageName = "babel-plugin-polyfill-corejs3"; 2053 + version = "0.1.7"; 2054 + src = fetchurl { 2055 + url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.1.7.tgz"; 2056 + sha512 = "u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw=="; 2057 + }; 2058 + }; 2059 + "babel-plugin-polyfill-regenerator-0.1.6" = { 2060 + name = "babel-plugin-polyfill-regenerator"; 2061 + packageName = "babel-plugin-polyfill-regenerator"; 2062 + version = "0.1.6"; 2063 + src = fetchurl { 2064 + url = "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.1.6.tgz"; 2065 + sha512 = "OUrYG9iKPKz8NxswXbRAdSwF0GhRdIEMTloQATJi4bDuFqrXaXcCUT/VGNrr8pBcjMh1RxZ7Xt9cytVJTJfvMg=="; 2066 + }; 2067 + }; 2068 + "babel-preset-current-node-syntax-1.0.1" = { 2069 name = "babel-preset-current-node-syntax"; 2070 packageName = "babel-preset-current-node-syntax"; 2071 + version = "1.0.1"; 2072 src = fetchurl { 2073 + url = "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz"; 2074 + sha512 = "M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ=="; 2075 }; 2076 }; 2077 "babel-preset-jest-26.6.2" = { ··· 2128 sha512 = "Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw=="; 2129 }; 2130 }; 2131 + "binary-extensions-2.2.0" = { 2132 name = "binary-extensions"; 2133 packageName = "binary-extensions"; 2134 + version = "2.2.0"; 2135 src = fetchurl { 2136 + url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz"; 2137 + sha512 = "jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA=="; 2138 }; 2139 }; 2140 "bindings-1.5.0" = { ··· 2146 sha512 = "p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ=="; 2147 }; 2148 }; 2149 + "bl-4.1.0" = { 2150 name = "bl"; 2151 packageName = "bl"; 2152 + version = "4.1.0"; 2153 src = fetchurl { 2154 + url = "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz"; 2155 + sha512 = "1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w=="; 2156 }; 2157 }; 2158 "brace-expansion-1.1.11" = { ··· 2191 sha512 = "9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow=="; 2192 }; 2193 }; 2194 + "browserslist-4.16.3" = { 2195 name = "browserslist"; 2196 packageName = "browserslist"; 2197 + version = "4.16.3"; 2198 src = fetchurl { 2199 + url = "https://registry.npmjs.org/browserslist/-/browserslist-4.16.3.tgz"; 2200 + sha512 = "vIyhWmIkULaq04Gt93txdh+j02yX/JzlyhLYbV3YQCn/zvES3JnY7TifHHvvr1w5hTDluNKMkV05cs4vy8Q7sw=="; 2201 }; 2202 }; 2203 "bser-2.1.1" = { ··· 2245 sha512 = "AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ=="; 2246 }; 2247 }; 2248 + "call-bind-1.0.2" = { 2249 name = "call-bind"; 2250 packageName = "call-bind"; 2251 + version = "1.0.2"; 2252 src = fetchurl { 2253 + url = "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz"; 2254 + sha512 = "7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA=="; 2255 }; 2256 }; 2257 "callback-stream-1.1.0" = { ··· 2290 sha512 = "c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg=="; 2291 }; 2292 }; 2293 + "caniuse-lite-1.0.30001194" = { 2294 name = "caniuse-lite"; 2295 packageName = "caniuse-lite"; 2296 + version = "1.0.30001194"; 2297 src = fetchurl { 2298 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001194.tgz"; 2299 + sha512 = "iDUOH+oFeBYk5XawYsPtsx/8fFpndAPUQJC7gBTfxHM8xw5nOZv7ceAD4frS1MKCLUac7QL5wdAJiFQlDRjXlA=="; 2300 + }; 2301 + }; 2302 + "caniuse-lite-1.0.30001204" = { 2303 + name = "caniuse-lite"; 2304 + packageName = "caniuse-lite"; 2305 + version = "1.0.30001204"; 2306 + src = fetchurl { 2307 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001204.tgz"; 2308 + sha512 = "JUdjWpcxfJ9IPamy2f5JaRDCaqJOxDzOSKtbdx4rH9VivMd1vIzoPumsJa9LoMIi4Fx2BV2KZOxWhNkBjaYivQ=="; 2309 }; 2310 }; 2311 "capture-exit-2.0.0" = { ··· 2353 sha512 = "kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw=="; 2354 }; 2355 }; 2356 + "chokidar-3.5.1" = { 2357 name = "chokidar"; 2358 packageName = "chokidar"; 2359 + version = "3.5.1"; 2360 src = fetchurl { 2361 + url = "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz"; 2362 + sha512 = "9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw=="; 2363 }; 2364 }; 2365 "chownr-1.1.4" = { ··· 2488 sha512 = "dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="; 2489 }; 2490 }; 2491 + "color-string-1.5.5" = { 2492 name = "color-string"; 2493 packageName = "color-string"; 2494 + version = "1.5.5"; 2495 src = fetchurl { 2496 + url = "https://registry.npmjs.org/color-string/-/color-string-1.5.5.tgz"; 2497 + sha512 = "jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg=="; 2498 }; 2499 }; 2500 + "colorette-1.2.2" = { 2501 name = "colorette"; 2502 packageName = "colorette"; 2503 + version = "1.2.2"; 2504 src = fetchurl { 2505 + url = "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz"; 2506 + sha512 = "MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w=="; 2507 }; 2508 }; 2509 "colors-1.4.0" = { ··· 2605 sha1 = "676f6eb3c39997c2ee1ac3a924fd6124748f578d"; 2606 }; 2607 }; 2608 + "core-js-compat-3.9.1" = { 2609 name = "core-js-compat"; 2610 packageName = "core-js-compat"; 2611 + version = "3.9.1"; 2612 src = fetchurl { 2613 + url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.9.1.tgz"; 2614 + sha512 = "jXAirMQxrkbiiLsCx9bQPJFA6llDadKMpYrBJQJ3/c4/vsPP/fAf29h24tviRlvwUL6AmY5CHLu2GvjuYviQqA=="; 2615 }; 2616 }; 2617 "core-util-is-1.0.2" = { ··· 2704 sha512 = "mYtLl1xfZLi1m4RtQYlZgJUNQjl4ZxVnHzIR8nLLgi4q1YT8o/WM+MK/f8yfcc9s5Ir5zRaPZyZU6xs1Syoocg=="; 2705 }; 2706 }; 2707 + "debounce-1.2.1" = { 2708 + name = "debounce"; 2709 + packageName = "debounce"; 2710 + version = "1.2.1"; 2711 + src = fetchurl { 2712 + url = "https://registry.npmjs.org/debounce/-/debounce-1.2.1.tgz"; 2713 + sha512 = "XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug=="; 2714 + }; 2715 + }; 2716 "debug-2.6.9" = { 2717 name = "debug"; 2718 packageName = "debug"; ··· 2720 src = fetchurl { 2721 url = "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"; 2722 sha512 = "bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="; 2723 }; 2724 }; 2725 "debug-4.3.1" = { ··· 2783 src = fetchurl { 2784 url = "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz"; 2785 sha1 = "b369d6fb5dbc13eecf524f91b070feedc357cf34"; 2786 + }; 2787 + }; 2788 + "deep-object-diff-1.1.0" = { 2789 + name = "deep-object-diff"; 2790 + packageName = "deep-object-diff"; 2791 + version = "1.1.0"; 2792 + src = fetchurl { 2793 + url = "https://registry.npmjs.org/deep-object-diff/-/deep-object-diff-1.1.0.tgz"; 2794 + sha512 = "b+QLs5vHgS+IoSNcUE4n9HP2NwcHj7aqnJWsjPtuG75Rh5TOaGt0OjAYInh77d5T16V5cRDC+Pw/6ZZZiETBGw=="; 2795 }; 2796 }; 2797 "deepmerge-4.2.2" = { ··· 2956 sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d"; 2957 }; 2958 }; 2959 + "electron-to-chromium-1.3.678" = { 2960 name = "electron-to-chromium"; 2961 packageName = "electron-to-chromium"; 2962 + version = "1.3.678"; 2963 src = fetchurl { 2964 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.678.tgz"; 2965 + sha512 = "E5ha1pE9+aWWrT2fUD5wdPBWUnYtKnEnloewbtVyrkAs79HvodOiNO4rMR94+hKbxgMFQG4fnPQACOc1cfMfBg=="; 2966 + }; 2967 + }; 2968 + "electron-to-chromium-1.3.701" = { 2969 + name = "electron-to-chromium"; 2970 + packageName = "electron-to-chromium"; 2971 + version = "1.3.701"; 2972 + src = fetchurl { 2973 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.701.tgz"; 2974 + sha512 = "Zd9ofdIMYHYhG1gvnejQDvC/kqSeXQvtXF0yRURGxgwGqDZm9F9Fm3dYFnm5gyuA7xpXfBlzVLN1sz0FjxpKfw=="; 2975 }; 2976 }; 2977 "emittery-0.7.2" = { ··· 2981 src = fetchurl { 2982 url = "https://registry.npmjs.org/emittery/-/emittery-0.7.2.tgz"; 2983 sha512 = "A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ=="; 2984 }; 2985 }; 2986 "emoji-regex-8.0.0" = { ··· 3136 sha512 = "qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw=="; 3137 }; 3138 }; 3139 + "escodegen-2.0.0" = { 3140 + name = "escodegen"; 3141 + packageName = "escodegen"; 3142 + version = "2.0.0"; 3143 + src = fetchurl { 3144 + url = "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz"; 3145 + sha512 = "mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw=="; 3146 + }; 3147 + }; 3148 + "eslint-7.21.0" = { 3149 name = "eslint"; 3150 packageName = "eslint"; 3151 + version = "7.21.0"; 3152 src = fetchurl { 3153 + url = "https://registry.npmjs.org/eslint/-/eslint-7.21.0.tgz"; 3154 + sha512 = "W2aJbXpMNofUp0ztQaF40fveSsJBjlSCSWpy//gzfTvwC+USs/nceBrKmlJOiM8r1bLwP2EuYkCqArn/6QTIgg=="; 3155 }; 3156 }; 3157 + "eslint-7.23.0" = { 3158 name = "eslint"; 3159 packageName = "eslint"; 3160 + version = "7.23.0"; 3161 src = fetchurl { 3162 + url = "https://registry.npmjs.org/eslint/-/eslint-7.23.0.tgz"; 3163 + sha512 = "kqvNVbdkjzpFy0XOszNwjkKzZ+6TcwCQ/h+ozlcIWwaimBBuhlQ4nN6kbiM2L+OjDcznkTJxzYfRFH92sx4a0Q=="; 3164 }; 3165 }; 3166 "eslint-config-google-0.14.0" = { ··· 3172 sha512 = "WsbX4WbjuMvTdeVL6+J3rK1RGhCTqjsFjX7UMSMgZiyxxaNLkoJENbrGExzERFeoTpGw3F3FypTiWAP9ZXzkEw=="; 3173 }; 3174 }; 3175 + "eslint-plugin-jest-24.3.2" = { 3176 name = "eslint-plugin-jest"; 3177 packageName = "eslint-plugin-jest"; 3178 + version = "24.3.2"; 3179 src = fetchurl { 3180 + url = "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-24.3.2.tgz"; 3181 + sha512 = "cicWDr+RvTAOKS3Q/k03+Z3odt3VCiWamNUHWd6QWbVQWcYJyYgUTu8x0mx9GfeDEimawU5kQC+nQ3MFxIM6bw=="; 3182 }; 3183 }; 3184 "eslint-scope-5.1.1" = { ··· 3217 sha512 = "QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ=="; 3218 }; 3219 }; 3220 + "espree-7.3.1" = { 3221 name = "espree"; 3222 packageName = "espree"; 3223 + version = "7.3.1"; 3224 src = fetchurl { 3225 + url = "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz"; 3226 + sha512 = "v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g=="; 3227 }; 3228 }; 3229 "esprima-4.0.1" = { ··· 3235 sha512 = "eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="; 3236 }; 3237 }; 3238 + "esquery-1.4.0" = { 3239 name = "esquery"; 3240 packageName = "esquery"; 3241 + version = "1.4.0"; 3242 src = fetchurl { 3243 + url = "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz"; 3244 + sha512 = "cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w=="; 3245 }; 3246 }; 3247 "esrecurse-4.3.0" = { ··· 3307 sha512 = "sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A=="; 3308 }; 3309 }; 3310 + "exec-sh-0.3.6" = { 3311 + name = "exec-sh"; 3312 + packageName = "exec-sh"; 3313 + version = "0.3.6"; 3314 + src = fetchurl { 3315 + url = "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.6.tgz"; 3316 + sha512 = "nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w=="; 3317 + }; 3318 + }; 3319 "execa-1.0.0" = { 3320 name = "execa"; 3321 packageName = "execa"; ··· 3433 sha512 = "f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="; 3434 }; 3435 }; 3436 + "fast-glob-3.2.5" = { 3437 name = "fast-glob"; 3438 packageName = "fast-glob"; 3439 + version = "3.2.5"; 3440 src = fetchurl { 3441 + url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.5.tgz"; 3442 + sha512 = "2DtFcgT68wiTTiwZ2hNdJfcHNke9XOfnwmBRWXhmeKM8rF0TGwmC/Qto3S7RoZKp5cilZbxzO5iTNTQsJ+EeDg=="; 3443 }; 3444 }; 3445 "fast-json-stable-stringify-2.1.0" = { ··· 3469 sha512 = "Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA=="; 3470 }; 3471 }; 3472 + "fastq-1.11.0" = { 3473 name = "fastq"; 3474 packageName = "fastq"; 3475 + version = "1.11.0"; 3476 src = fetchurl { 3477 + url = "https://registry.npmjs.org/fastq/-/fastq-1.11.0.tgz"; 3478 + sha512 = "7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g=="; 3479 }; 3480 }; 3481 "fb-watchman-2.0.1" = { ··· 3496 sha512 = "aN3pcx/DSmtyoovUudctc8+6Hl4T+hI9GBBHLjA76jdZl7+b1sgh5g4k+u/GL3dTy1/pnYzKp69FpJ0OicE3Wg=="; 3497 }; 3498 }; 3499 + "file-entry-cache-6.0.1" = { 3500 name = "file-entry-cache"; 3501 packageName = "file-entry-cache"; 3502 + version = "6.0.1"; 3503 src = fetchurl { 3504 + url = "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz"; 3505 + sha512 = "7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg=="; 3506 }; 3507 }; 3508 "file-uri-to-path-1.0.0" = { ··· 3550 sha512 = "PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw=="; 3551 }; 3552 }; 3553 + "flat-cache-3.0.4" = { 3554 name = "flat-cache"; 3555 packageName = "flat-cache"; 3556 + version = "3.0.4"; 3557 src = fetchurl { 3558 + url = "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz"; 3559 + sha512 = "dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg=="; 3560 }; 3561 }; 3562 + "flatted-3.1.1" = { 3563 name = "flatted"; 3564 packageName = "flatted"; 3565 + version = "3.1.1"; 3566 src = fetchurl { 3567 + url = "https://registry.npmjs.org/flatted/-/flatted-3.1.1.tgz"; 3568 + sha512 = "zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA=="; 3569 }; 3570 }; 3571 "fn.name-1.1.0" = { ··· 3577 sha512 = "GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw=="; 3578 }; 3579 }; 3580 + "follow-redirects-1.13.3" = { 3581 name = "follow-redirects"; 3582 packageName = "follow-redirects"; 3583 + version = "1.13.3"; 3584 src = fetchurl { 3585 + url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.3.tgz"; 3586 + sha512 = "DUgl6+HDzB0iEptNQEXLx/KhTmDb8tZUHSeLqpnjpknR70H0nC2t9N73BK6fN4hOvJ84pKlIQVQ4k5FFlBedKA=="; 3587 }; 3588 }; 3589 "for-in-1.0.2" = { ··· 3640 sha512 = "y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow=="; 3641 }; 3642 }; 3643 + "fs-extra-9.1.0" = { 3644 name = "fs-extra"; 3645 packageName = "fs-extra"; 3646 + version = "9.1.0"; 3647 src = fetchurl { 3648 + url = "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz"; 3649 + sha512 = "hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ=="; 3650 }; 3651 }; 3652 "fs-readdir-recursive-1.1.0" = { ··· 3667 sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f"; 3668 }; 3669 }; 3670 + "fsevents-2.3.2" = { 3671 name = "fsevents"; 3672 packageName = "fsevents"; 3673 + version = "2.3.2"; 3674 src = fetchurl { 3675 + url = "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz"; 3676 + sha512 = "xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA=="; 3677 }; 3678 }; 3679 "function-bind-1.1.1" = { ··· 3721 sha512 = "DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="; 3722 }; 3723 }; 3724 + "get-intrinsic-1.1.1" = { 3725 name = "get-intrinsic"; 3726 packageName = "get-intrinsic"; 3727 + version = "1.1.1"; 3728 src = fetchurl { 3729 + url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz"; 3730 + sha512 = "kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q=="; 3731 }; 3732 }; 3733 "get-package-type-0.1.0" = { ··· 3820 sha512 = "FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ=="; 3821 }; 3822 }; 3823 + "glob-parent-5.1.2" = { 3824 + name = "glob-parent"; 3825 + packageName = "glob-parent"; 3826 + version = "5.1.2"; 3827 + src = fetchurl { 3828 + url = "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz"; 3829 + sha512 = "AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="; 3830 + }; 3831 + }; 3832 "glob-stream-6.1.0" = { 3833 name = "glob-stream"; 3834 packageName = "glob-stream"; ··· 3856 sha512 = "BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg=="; 3857 }; 3858 }; 3859 + "globals-13.7.0" = { 3860 + name = "globals"; 3861 + packageName = "globals"; 3862 + version = "13.7.0"; 3863 + src = fetchurl { 3864 + url = "https://registry.npmjs.org/globals/-/globals-13.7.0.tgz"; 3865 + sha512 = "Aipsz6ZKRxa/xQkZhNg0qIWXT6x6rD46f6x/PCnBomlttdIyAPak4YD9jTmKpZ72uROSMU87qJtcgpgHaVchiA=="; 3866 + }; 3867 + }; 3868 + "globby-11.0.2" = { 3869 name = "globby"; 3870 packageName = "globby"; 3871 + version = "11.0.2"; 3872 + src = fetchurl { 3873 + url = "https://registry.npmjs.org/globby/-/globby-11.0.2.tgz"; 3874 + sha512 = "2ZThXDvvV8fYFRVIxnrMQBipZQDr7MxKAmQK1vujaj9/7eF0efG7BPUKJ7jP7G5SLF37xKDXvO4S/KKLj/Z0og=="; 3875 + }; 3876 + }; 3877 + "globby-11.0.3" = { 3878 + name = "globby"; 3879 + packageName = "globby"; 3880 + version = "11.0.3"; 3881 src = fetchurl { 3882 + url = "https://registry.npmjs.org/globby/-/globby-11.0.3.tgz"; 3883 + sha512 = "ffdmosjA807y7+lA1NM0jELARVmYul/715xiILEjo3hBLPTcirgQNnXECn5g3mtR8TOLCVbkfua1Hpen25/Xcg=="; 3884 }; 3885 }; 3886 "glossy-0.1.7" = { ··· 3892 sha1 = "769b5984a96f6066ab9ea758224825ee6c210f0b"; 3893 }; 3894 }; 3895 + "graceful-fs-4.2.6" = { 3896 name = "graceful-fs"; 3897 packageName = "graceful-fs"; 3898 + version = "4.2.6"; 3899 src = fetchurl { 3900 + url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz"; 3901 + sha512 = "nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ=="; 3902 }; 3903 }; 3904 "growly-1.3.0" = { ··· 3910 sha1 = "f10748cbe76af964b7c96c93c6bcc28af120c081"; 3911 }; 3912 }; 3913 + "handlebars-4.7.7" = { 3914 name = "handlebars"; 3915 packageName = "handlebars"; 3916 + version = "4.7.7"; 3917 src = fetchurl { 3918 + url = "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz"; 3919 + sha512 = "aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA=="; 3920 }; 3921 }; 3922 "har-schema-2.0.0" = { ··· 3964 sha512 = "EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="; 3965 }; 3966 }; 3967 + "has-symbols-1.0.2" = { 3968 name = "has-symbols"; 3969 packageName = "has-symbols"; 3970 + version = "1.0.2"; 3971 src = fetchurl { 3972 + url = "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz"; 3973 + sha512 = "chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw=="; 3974 }; 3975 }; 3976 "has-unicode-2.0.1" = { ··· 4027 sha1 = "8f2d508d0600b4a456da2f086556e7e5c056a3c6"; 4028 }; 4029 }; 4030 "hosted-git-info-2.8.8" = { 4031 name = "hosted-git-info"; 4032 packageName = "hosted-git-info"; ··· 4090 sha512 = "SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw=="; 4091 }; 4092 }; 4093 + "humanize-duration-3.25.1" = { 4094 name = "humanize-duration"; 4095 packageName = "humanize-duration"; 4096 + version = "3.25.1"; 4097 src = fetchurl { 4098 + url = "https://registry.npmjs.org/humanize-duration/-/humanize-duration-3.25.1.tgz"; 4099 + sha512 = "P+dRo48gpLgc2R9tMRgiDRNULPKCmqFYgguwqOO2C0fjO35TgdURDQDANSR1Nt92iHlbHGMxOTnsB8H8xnMa2Q=="; 4100 }; 4101 }; 4102 "iconv-lite-0.4.24" = { ··· 4135 sha512 = "BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw=="; 4136 }; 4137 }; 4138 + "import-fresh-3.3.0" = { 4139 name = "import-fresh"; 4140 packageName = "import-fresh"; 4141 + version = "3.3.0"; 4142 src = fetchurl { 4143 + url = "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz"; 4144 + sha512 = "veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw=="; 4145 }; 4146 }; 4147 "import-local-3.0.2" = { ··· 4180 sha512 = "k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="; 4181 }; 4182 }; 4183 + "ini-1.3.8" = { 4184 name = "ini"; 4185 packageName = "ini"; 4186 + version = "1.3.8"; 4187 src = fetchurl { 4188 + url = "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz"; 4189 + sha512 = "JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="; 4190 }; 4191 }; 4192 "interpret-1.4.0" = { ··· 4286 src = fetchurl { 4287 url = "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz"; 4288 sha512 = "YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w=="; 4289 }; 4290 }; 4291 "is-core-module-2.2.0" = { ··· 4376 src = fetchurl { 4377 url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz"; 4378 sha1 = "ef9e31386f031a7f0d643af82fde50c457ef00cb"; 4379 }; 4380 }; 4381 "is-fullwidth-code-point-3.0.0" = { ··· 4873 sha512 = "RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="; 4874 }; 4875 }; 4876 + "js-yaml-3.14.1" = { 4877 name = "js-yaml"; 4878 packageName = "js-yaml"; 4879 + version = "3.14.1"; 4880 src = fetchurl { 4881 + url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz"; 4882 + sha512 = "okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g=="; 4883 }; 4884 }; 4885 "jsbn-0.1.1" = { ··· 4900 sha512 = "lYMm3wYdgPhrl7pDcRmvzPhhrGVBeVhPIqeHjzeiHN3DFmD1RBpbExbi8vU7BJdH8VAZYovR8DMt0PNNDM7k8w=="; 4901 }; 4902 }; 4903 + "jsdom-16.5.1" = { 4904 + name = "jsdom"; 4905 + packageName = "jsdom"; 4906 + version = "16.5.1"; 4907 + src = fetchurl { 4908 + url = "https://registry.npmjs.org/jsdom/-/jsdom-16.5.1.tgz"; 4909 + sha512 = "pF73EOsJgwZekbDHEY5VO/yKXUkab/DuvrQB/ANVizbr6UAHJsDdHXuotZYwkJSGQl1JM+ivXaqY+XBDDL4TiA=="; 4910 + }; 4911 + }; 4912 "jsesc-0.5.0" = { 4913 name = "jsesc"; 4914 packageName = "jsesc"; ··· 4954 sha512 = "xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="; 4955 }; 4956 }; 4957 + "json-schema-traverse-1.0.0" = { 4958 + name = "json-schema-traverse"; 4959 + packageName = "json-schema-traverse"; 4960 + version = "1.0.0"; 4961 + src = fetchurl { 4962 + url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz"; 4963 + sha512 = "NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="; 4964 + }; 4965 + }; 4966 "json-stable-stringify-without-jsonify-1.0.1" = { 4967 name = "json-stable-stringify-without-jsonify"; 4968 packageName = "json-stable-stringify-without-jsonify"; ··· 4981 sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"; 4982 }; 4983 }; 4984 + "json5-2.2.0" = { 4985 name = "json5"; 4986 packageName = "json5"; 4987 + version = "2.2.0"; 4988 src = fetchurl { 4989 + url = "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz"; 4990 + sha512 = "f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA=="; 4991 }; 4992 }; 4993 "jsonfile-6.1.0" = { ··· 5116 sha512 = "t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g=="; 5117 }; 5118 }; 5119 + "lodash-4.17.21" = { 5120 name = "lodash"; 5121 packageName = "lodash"; 5122 + version = "4.17.21"; 5123 + src = fetchurl { 5124 + url = "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz"; 5125 + sha512 = "v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="; 5126 + }; 5127 + }; 5128 + "lodash.debounce-4.0.8" = { 5129 + name = "lodash.debounce"; 5130 + packageName = "lodash.debounce"; 5131 + version = "4.0.8"; 5132 src = fetchurl { 5133 + url = "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz"; 5134 + sha1 = "82d79bff30a67c4005ffd5e2515300ad9ca4d7af"; 5135 }; 5136 }; 5137 "lodash.sortby-4.7.0" = { ··· 5152 sha512 = "N0qPlqfypFx7UHNn4B3lzS/b0uLqt2hmuoa+PpuXNYgozdJYAyauF5Ky0BWVjrxDlMWiT3qN4zPq3vVAfZy7Yg=="; 5153 }; 5154 }; 5155 + "lru-cache-5.1.1" = { 5156 + name = "lru-cache"; 5157 + packageName = "lru-cache"; 5158 + version = "5.1.1"; 5159 + src = fetchurl { 5160 + url = "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz"; 5161 + sha512 = "KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w=="; 5162 + }; 5163 + }; 5164 + "lru-cache-6.0.0" = { 5165 + name = "lru-cache"; 5166 + packageName = "lru-cache"; 5167 + version = "6.0.0"; 5168 + src = fetchurl { 5169 + url = "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz"; 5170 + sha512 = "Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA=="; 5171 + }; 5172 + }; 5173 "lunr-2.3.9" = { 5174 name = "lunr"; 5175 packageName = "lunr"; ··· 5224 sha1 = "ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"; 5225 }; 5226 }; 5227 + "marked-2.0.1" = { 5228 name = "marked"; 5229 packageName = "marked"; 5230 + version = "2.0.1"; 5231 src = fetchurl { 5232 + url = "https://registry.npmjs.org/marked/-/marked-2.0.1.tgz"; 5233 + sha512 = "5+/fKgMv2hARmMW7DOpykr2iLhl0NgjyELk5yn92iE7z8Se1IS9n3UsFm86hFXIkvMBmVxki8+ckcpjBeyo/hw=="; 5234 }; 5235 }; 5236 "merge-stream-2.0.0" = { ··· 5278 sha512 = "x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg=="; 5279 }; 5280 }; 5281 + "mime-db-1.46.0" = { 5282 name = "mime-db"; 5283 packageName = "mime-db"; 5284 + version = "1.46.0"; 5285 src = fetchurl { 5286 + url = "https://registry.npmjs.org/mime-db/-/mime-db-1.46.0.tgz"; 5287 + sha512 = "svXaP8UQRZ5K7or+ZmfNhg2xX3yKDMUzqadsSqi4NCH/KomcH75MAMYAGVlvXn4+b/xOPhS3I2uHKRUzvjY7BQ=="; 5288 }; 5289 }; 5290 + "mime-types-2.1.29" = { 5291 name = "mime-types"; 5292 packageName = "mime-types"; 5293 + version = "2.1.29"; 5294 src = fetchurl { 5295 + url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.29.tgz"; 5296 + sha512 = "Y/jMt/S5sR9OaqteJtslsFZKWOIIqMACsJSiHghlCAyhf7jfVYjKBmLiX8OgpWeW+fjJ2b+Az69aPFPkUOY6xQ=="; 5297 }; 5298 }; 5299 "mimic-fn-2.1.0" = { ··· 5359 sha512 = "gbTtiEu8P/GSMh1lAa0YYNr8XIfDzFgnWtetw3Hfz9nw6YXySHNYOZF/uUTgyp8GHvFnNw/EG7VhOkD6zfVb6A=="; 5360 }; 5361 }; 5362 "mkdirp-classic-0.5.3" = { 5363 name = "mkdirp-classic"; 5364 packageName = "mkdirp-classic"; ··· 5386 sha512 = "Iv893r+jWlo5GkNcPOfCGwW8M49IixwHiKLFFYTociEymSibUVCORVEjPXWPGzSxhn7BdlUeHicbRmWiv0Crkg=="; 5387 }; 5388 }; 5389 + "mqtt-packet-6.9.0" = { 5390 name = "mqtt-packet"; 5391 packageName = "mqtt-packet"; 5392 + version = "6.9.0"; 5393 src = fetchurl { 5394 + url = "https://registry.npmjs.org/mqtt-packet/-/mqtt-packet-6.9.0.tgz"; 5395 + sha512 = "cngFSAXWSl5XHKJYUQiYQjtp75zhf1vygY00NnJdhQoXOH2v3aizmaaMIHI5n1N/TJEHSAbHryQhFr3gJ9VNvA=="; 5396 }; 5397 }; 5398 "ms-2.0.0" = { ··· 5422 sha512 = "sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="; 5423 }; 5424 }; 5425 + "ms-2.1.3" = { 5426 + name = "ms"; 5427 + packageName = "ms"; 5428 + version = "2.1.3"; 5429 + src = fetchurl { 5430 + url = "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz"; 5431 + sha512 = "6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="; 5432 + }; 5433 + }; 5434 "nan-2.14.2" = { 5435 name = "nan"; 5436 packageName = "nan"; ··· 5494 sha512 = "1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ=="; 5495 }; 5496 }; 5497 + "node-abi-2.20.0" = { 5498 name = "node-abi"; 5499 packageName = "node-abi"; 5500 + version = "2.20.0"; 5501 src = fetchurl { 5502 + url = "https://registry.npmjs.org/node-abi/-/node-abi-2.20.0.tgz"; 5503 + sha512 = "6ldtfVR5l3RS8D0aT+lj/uM2Vv/PGEkeWzt2tl8DFBsGY/IuVnAIHl+dG6C14NlWClVv7Rn2+ZDvox+35Hx2Kg=="; 5504 }; 5505 }; 5506 "node-int64-0.4.0" = { ··· 5521 sha1 = "8d9dbe28964a4ac5712e9131642107c71e90ec40"; 5522 }; 5523 }; 5524 + "node-notifier-8.0.1" = { 5525 name = "node-notifier"; 5526 packageName = "node-notifier"; 5527 + version = "8.0.1"; 5528 src = fetchurl { 5529 + url = "https://registry.npmjs.org/node-notifier/-/node-notifier-8.0.1.tgz"; 5530 + sha512 = "BvEXF+UmsnAfYfoapKM9nGxnP+Wn7P91YfXmrKnfcYCx6VBeoN5Ez5Ogck6I8Bi5k4RlpqRYaw75pAwzX9OphA=="; 5531 + }; 5532 + }; 5533 + "node-notifier-8.0.2" = { 5534 + name = "node-notifier"; 5535 + packageName = "node-notifier"; 5536 + version = "8.0.2"; 5537 + src = fetchurl { 5538 + url = "https://registry.npmjs.org/node-notifier/-/node-notifier-8.0.2.tgz"; 5539 + sha512 = "oJP/9NAdd9+x2Q+rfphB2RJCHjod70RcRLjosiPMMu5gjIfwVnOUGq2nbTjTUbmy0DJ/tFIVT30+Qe3nzl4TJg=="; 5540 }; 5541 }; 5542 + "node-releases-1.1.71" = { 5543 name = "node-releases"; 5544 packageName = "node-releases"; 5545 + version = "1.1.71"; 5546 src = fetchurl { 5547 + url = "https://registry.npmjs.org/node-releases/-/node-releases-1.1.71.tgz"; 5548 + sha512 = "zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg=="; 5549 }; 5550 }; 5551 "noop-logger-0.1.1" = { ··· 5737 sha512 = "kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg=="; 5738 }; 5739 }; 5740 + "onigasm-2.2.5" = { 5741 + name = "onigasm"; 5742 + packageName = "onigasm"; 5743 + version = "2.2.5"; 5744 + src = fetchurl { 5745 + url = "https://registry.npmjs.org/onigasm/-/onigasm-2.2.5.tgz"; 5746 + sha512 = "F+th54mPc0l1lp1ZcFMyL/jTs2Tlq4SqIHKIXGZOR/VkHkF9A7Fr5rRr5+ZG/lWeRsyrClLYRq7s/yFQ/XhWCA=="; 5747 + }; 5748 + }; 5749 "optionator-0.8.3" = { 5750 name = "optionator"; 5751 packageName = "optionator"; ··· 5773 sha1 = "77c0cb37c41525d64166d990ffad7ec6a0e1363e"; 5774 }; 5775 }; 5776 "p-each-series-2.2.0" = { 5777 name = "p-each-series"; 5778 packageName = "p-each-series"; ··· 5827 sha512 = "GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g=="; 5828 }; 5829 }; 5830 + "parse-json-5.2.0" = { 5831 name = "parse-json"; 5832 packageName = "parse-json"; 5833 + version = "5.2.0"; 5834 src = fetchurl { 5835 + url = "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz"; 5836 + sha512 = "ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg=="; 5837 }; 5838 }; 5839 "parse5-5.1.1" = { ··· 5845 sha512 = "ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug=="; 5846 }; 5847 }; 5848 + "parse5-6.0.1" = { 5849 + name = "parse5"; 5850 + packageName = "parse5"; 5851 + version = "6.0.1"; 5852 + src = fetchurl { 5853 + url = "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz"; 5854 + sha512 = "Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw=="; 5855 + }; 5856 + }; 5857 "parseurl-1.3.3" = { 5858 name = "parseurl"; 5859 packageName = "parseurl"; ··· 5989 sha1 = "01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"; 5990 }; 5991 }; 5992 + "prebuild-install-6.0.1" = { 5993 name = "prebuild-install"; 5994 packageName = "prebuild-install"; 5995 + version = "6.0.1"; 5996 src = fetchurl { 5997 + url = "https://registry.npmjs.org/prebuild-install/-/prebuild-install-6.0.1.tgz"; 5998 + sha512 = "7GOJrLuow8yeiyv75rmvZyeMGzl8mdEX5gY69d6a6bHWmiPevwqFw+tQavhK0EYMaSg3/KD24cWqeQv1EWsqDQ=="; 5999 }; 6000 }; 6001 "prelude-ls-1.1.2" = { ··· 6106 sha512 = "N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA=="; 6107 }; 6108 }; 6109 + "queue-microtask-1.2.2" = { 6110 + name = "queue-microtask"; 6111 + packageName = "queue-microtask"; 6112 + version = "1.2.2"; 6113 + src = fetchurl { 6114 + url = "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.2.tgz"; 6115 + sha512 = "dB15eXv3p2jDlbOiNLyMabYg1/sXvppd8DP2J3EOCQ0AkuSXCW2tP7mnVouVLJKgUMY6yP0kcQDVpLCN13h4Xg=="; 6116 + }; 6117 + }; 6118 + "queue-microtask-1.2.3" = { 6119 + name = "queue-microtask"; 6120 + packageName = "queue-microtask"; 6121 + version = "1.2.3"; 6122 + src = fetchurl { 6123 + url = "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz"; 6124 + sha512 = "NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A=="; 6125 + }; 6126 + }; 6127 "range-parser-1.2.1" = { 6128 name = "range-parser"; 6129 packageName = "range-parser"; ··· 6149 src = fetchurl { 6150 url = "https://registry.npmjs.org/react-is/-/react-is-17.0.1.tgz"; 6151 sha512 = "NAnt2iGDXohE5LI7uBnLnqvLQMtzhkiAOLXTmv+qnF9Ky7xAPcX8Up/xWIhxvLVGJvuLiNc4xQLtuqDRzb4fSA=="; 6152 + }; 6153 + }; 6154 + "react-is-17.0.2" = { 6155 + name = "react-is"; 6156 + packageName = "react-is"; 6157 + version = "17.0.2"; 6158 + src = fetchurl { 6159 + url = "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz"; 6160 + sha512 = "w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w=="; 6161 }; 6162 }; 6163 "read-pkg-5.2.0" = { ··· 6295 sha512 = "OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A=="; 6296 }; 6297 }; 6298 + "regjsparser-0.6.7" = { 6299 name = "regjsparser"; 6300 packageName = "regjsparser"; 6301 + version = "0.6.7"; 6302 src = fetchurl { 6303 + url = "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.7.tgz"; 6304 + sha512 = "ib77G0uxsA2ovgiYbCVGx4Pv3PSttAx2vIwidqQzbL2U5S4Q+j00HdSAneSBuyVcMvEnTXMjiGgB+DlXozVhpQ=="; 6305 }; 6306 }; 6307 "reinterval-1.1.0" = { ··· 6376 sha1 = "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"; 6377 }; 6378 }; 6379 + "require-from-string-2.0.2" = { 6380 + name = "require-from-string"; 6381 + packageName = "require-from-string"; 6382 + version = "2.0.2"; 6383 + src = fetchurl { 6384 + url = "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz"; 6385 + sha512 = "Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw=="; 6386 + }; 6387 + }; 6388 "require-main-filename-2.0.0" = { 6389 name = "require-main-filename"; 6390 packageName = "require-main-filename"; ··· 6394 sha512 = "NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg=="; 6395 }; 6396 }; 6397 + "resolve-1.20.0" = { 6398 name = "resolve"; 6399 packageName = "resolve"; 6400 + version = "1.20.0"; 6401 src = fetchurl { 6402 + url = "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz"; 6403 + sha512 = "wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A=="; 6404 }; 6405 }; 6406 "resolve-cwd-3.0.0" = { ··· 6457 sha512 = "U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw=="; 6458 }; 6459 }; 6460 "rimraf-3.0.2" = { 6461 name = "rimraf"; 6462 packageName = "rimraf"; ··· 6475 sha512 = "nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA=="; 6476 }; 6477 }; 6478 + "run-parallel-1.2.0" = { 6479 name = "run-parallel"; 6480 packageName = "run-parallel"; 6481 + version = "1.2.0"; 6482 src = fetchurl { 6483 + url = "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz"; 6484 + sha512 = "5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA=="; 6485 }; 6486 }; 6487 "safe-buffer-5.1.2" = { ··· 6565 sha512 = "+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A=="; 6566 }; 6567 }; 6568 + "semver-7.3.4" = { 6569 name = "semver"; 6570 packageName = "semver"; 6571 + version = "7.3.4"; 6572 src = fetchurl { 6573 + url = "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz"; 6574 + sha512 = "tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw=="; 6575 + }; 6576 + }; 6577 + "semver-7.3.5" = { 6578 + name = "semver"; 6579 + packageName = "semver"; 6580 + version = "7.3.5"; 6581 + src = fetchurl { 6582 + url = "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz"; 6583 + sha512 = "PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ=="; 6584 }; 6585 }; 6586 "send-0.17.1" = { ··· 6592 sha512 = "BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg=="; 6593 }; 6594 }; 6595 + "serialport-9.0.6" = { 6596 name = "serialport"; 6597 packageName = "serialport"; 6598 + version = "9.0.6"; 6599 src = fetchurl { 6600 + url = "https://registry.npmjs.org/serialport/-/serialport-9.0.6.tgz"; 6601 + sha512 = "T9eY4HFzQij0Hd/RsPcZySdeuAqzV5iGICHz8FXUSKVn2SvGT5zjfz/H+pRwI86k+3iFVOyddEyy8gbVNVbW7A=="; 6602 }; 6603 }; 6604 "serve-static-1.14.1" = { ··· 6691 sha512 = "vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww=="; 6692 }; 6693 }; 6694 + "shiki-0.9.2" = { 6695 + name = "shiki"; 6696 + packageName = "shiki"; 6697 + version = "0.9.2"; 6698 + src = fetchurl { 6699 + url = "https://registry.npmjs.org/shiki/-/shiki-0.9.2.tgz"; 6700 + sha512 = "BjUCxVbxMnvjs8jC4b+BQ808vwjJ9Q8NtLqPwXShZ307HdXiDFYP968ORSVfaTNNSWYDBYdMnVKJ0fYNsoZUBA=="; 6701 + }; 6702 + }; 6703 "signal-exit-3.0.3" = { 6704 name = "signal-exit"; 6705 packageName = "signal-exit"; ··· 6763 sha512 = "g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q=="; 6764 }; 6765 }; 6766 + "slice-ansi-4.0.0" = { 6767 name = "slice-ansi"; 6768 packageName = "slice-ansi"; 6769 + version = "4.0.0"; 6770 src = fetchurl { 6771 + url = "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz"; 6772 + sha512 = "qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ=="; 6773 }; 6774 }; 6775 "slip-1.0.2" = { ··· 6853 sha512 = "Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw=="; 6854 }; 6855 }; 6856 + "source-map-url-0.4.1" = { 6857 name = "source-map-url"; 6858 packageName = "source-map-url"; 6859 + version = "0.4.1"; 6860 src = fetchurl { 6861 + url = "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz"; 6862 + sha512 = "cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw=="; 6863 }; 6864 }; 6865 "spdx-correct-3.1.1" = { ··· 6889 sha512 = "cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q=="; 6890 }; 6891 }; 6892 + "spdx-license-ids-3.0.7" = { 6893 name = "spdx-license-ids"; 6894 packageName = "spdx-license-ids"; 6895 + version = "3.0.7"; 6896 src = fetchurl { 6897 + url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz"; 6898 + sha512 = "U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ=="; 6899 }; 6900 }; 6901 "split-string-3.1.0" = { ··· 6997 sha512 = "PKyXUd0LK0ePjSOnWn34V2uD6acUWev9uy0Ft05k0E8xRW+SKcA0F7eMr7h5xlzfn+4O3N+55rduYyet3Jk+jw=="; 6998 }; 6999 }; 7000 + "string-length-4.0.2" = { 7001 + name = "string-length"; 7002 + packageName = "string-length"; 7003 + version = "4.0.2"; 7004 + src = fetchurl { 7005 + url = "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz"; 7006 + sha512 = "+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ=="; 7007 + }; 7008 + }; 7009 "string-width-1.0.2" = { 7010 name = "string-width"; 7011 packageName = "string-width"; ··· 7015 sha1 = "118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"; 7016 }; 7017 }; 7018 + "string-width-4.2.2" = { 7019 name = "string-width"; 7020 packageName = "string-width"; 7021 + version = "4.2.2"; 7022 src = fetchurl { 7023 + url = "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz"; 7024 + sha512 = "XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA=="; 7025 }; 7026 }; 7027 "string_decoder-1.1.1" = { ··· 7049 src = fetchurl { 7050 url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz"; 7051 sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"; 7052 }; 7053 }; 7054 "strip-ansi-6.0.0" = { ··· 7141 sha512 = "9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw=="; 7142 }; 7143 }; 7144 + "table-6.0.7" = { 7145 name = "table"; 7146 packageName = "table"; 7147 + version = "6.0.7"; 7148 src = fetchurl { 7149 + url = "https://registry.npmjs.org/table/-/table-6.0.7.tgz"; 7150 + sha512 = "rxZevLGTUzWna/qBLObOe16kB2RTnnbhciwgPbMMlazz1yZGVEgnZK762xyVdVznhqxrfCeBMmMkgOOaPwjH7g=="; 7151 }; 7152 }; 7153 "tar-fs-2.1.1" = { ··· 7159 sha512 = "V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng=="; 7160 }; 7161 }; 7162 + "tar-stream-2.2.0" = { 7163 name = "tar-stream"; 7164 packageName = "tar-stream"; 7165 + version = "2.2.0"; 7166 src = fetchurl { 7167 + url = "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz"; 7168 + sha512 = "ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ=="; 7169 }; 7170 }; 7171 "terminal-link-2.1.1" = { ··· 7321 sha512 = "yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg=="; 7322 }; 7323 }; 7324 + "tough-cookie-4.0.0" = { 7325 + name = "tough-cookie"; 7326 + packageName = "tough-cookie"; 7327 + version = "4.0.0"; 7328 + src = fetchurl { 7329 + url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz"; 7330 + sha512 = "tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg=="; 7331 + }; 7332 + }; 7333 "tr46-2.0.2" = { 7334 name = "tr46"; 7335 packageName = "tr46"; ··· 7357 sha512 = "Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="; 7358 }; 7359 }; 7360 + "tsutils-3.20.0" = { 7361 name = "tsutils"; 7362 packageName = "tsutils"; 7363 + version = "3.20.0"; 7364 src = fetchurl { 7365 + url = "https://registry.npmjs.org/tsutils/-/tsutils-3.20.0.tgz"; 7366 + sha512 = "RYbuQuvkhuqVeXweWT3tJLKOEJ/UUw9GjNEZGWdrLLlM+611o1gwLHBpxoFJKKl25fLprp2eVthtKs5JOrNeXg=="; 7367 + }; 7368 + }; 7369 + "tsutils-3.21.0" = { 7370 + name = "tsutils"; 7371 + packageName = "tsutils"; 7372 + version = "3.21.0"; 7373 + src = fetchurl { 7374 + url = "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz"; 7375 + sha512 = "mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA=="; 7376 }; 7377 }; 7378 "tunnel-agent-0.6.0" = { ··· 7402 sha512 = "+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg=="; 7403 }; 7404 }; 7405 + "type-2.5.0" = { 7406 name = "type"; 7407 packageName = "type"; 7408 + version = "2.5.0"; 7409 src = fetchurl { 7410 + url = "https://registry.npmjs.org/type/-/type-2.5.0.tgz"; 7411 + sha512 = "180WMDQaIMm3+7hGXWf12GtdniDEy7nYcyFMKJn/eZz/6tSLXrUN9V0wKSbMjej0I1WHWbpREDEKHtqPQa9NNw=="; 7412 }; 7413 }; 7414 "type-check-0.3.2" = { ··· 7447 sha512 = "OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ=="; 7448 }; 7449 }; 7450 + "type-fest-0.20.2" = { 7451 + name = "type-fest"; 7452 + packageName = "type-fest"; 7453 + version = "0.20.2"; 7454 + src = fetchurl { 7455 + url = "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz"; 7456 + sha512 = "Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ=="; 7457 + }; 7458 + }; 7459 + "type-fest-0.21.3" = { 7460 + name = "type-fest"; 7461 + packageName = "type-fest"; 7462 + version = "0.21.3"; 7463 + src = fetchurl { 7464 + url = "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz"; 7465 + sha512 = "t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w=="; 7466 + }; 7467 + }; 7468 "type-fest-0.6.0" = { 7469 name = "type-fest"; 7470 packageName = "type-fest"; ··· 7501 sha512 = "zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q=="; 7502 }; 7503 }; 7504 + "typedoc-0.20.28" = { 7505 name = "typedoc"; 7506 packageName = "typedoc"; 7507 + version = "0.20.28"; 7508 src = fetchurl { 7509 + url = "https://registry.npmjs.org/typedoc/-/typedoc-0.20.28.tgz"; 7510 + sha512 = "8j0T8u9FuyDkoe+M/3cyoaGJSVgXCY9KwVoo7TLUnmQuzXwqH+wkScY530ZEdK6G39UZ2LFTYPIrL5eykWjx6A=="; 7511 }; 7512 }; 7513 + "typedoc-default-themes-0.12.7" = { 7514 name = "typedoc-default-themes"; 7515 packageName = "typedoc-default-themes"; 7516 + version = "0.12.7"; 7517 src = fetchurl { 7518 + url = "https://registry.npmjs.org/typedoc-default-themes/-/typedoc-default-themes-0.12.7.tgz"; 7519 + sha512 = "0XAuGEqID+gon1+fhi4LycOEFM+5Mvm2PjwaiVZNAzU7pn3G2DEpsoXnFOPlLDnHY6ZW0BY0nO7ur9fHOFkBLQ=="; 7520 }; 7521 }; 7522 + "typedoc-plugin-markdown-3.6.0" = { 7523 name = "typedoc-plugin-markdown"; 7524 packageName = "typedoc-plugin-markdown"; 7525 + version = "3.6.0"; 7526 src = fetchurl { 7527 + url = "https://registry.npmjs.org/typedoc-plugin-markdown/-/typedoc-plugin-markdown-3.6.0.tgz"; 7528 + sha512 = "fg4xby3awJVVxB8TdhHNsZQfiTC5x1XmauVwhKXc6hGeu1bzTnqrkmDT8NCjxfUgw64si8cUX1jBfBjAHthWpQ=="; 7529 }; 7530 }; 7531 "typedoc-plugin-no-inherit-1.2.0" = { ··· 7546 sha512 = "xHq9DzkoQywS7FyPneMm2/Hr9GRoCpjSQXkVN0W6SCJKP7fguqg2tasgh+8l5/mW6YSYvqCqEbkSYLbuD4Y6gA=="; 7547 }; 7548 }; 7549 + "typescript-4.2.2" = { 7550 name = "typescript"; 7551 packageName = "typescript"; 7552 + version = "4.2.2"; 7553 src = fetchurl { 7554 + url = "https://registry.npmjs.org/typescript/-/typescript-4.2.2.tgz"; 7555 + sha512 = "tbb+NVrLfnsJy3M59lsDgrzWIflR4d4TIUjz+heUnHZwdF7YsrMTKoRERiIvI2lvBG95dfpLxB21WZhys1bgaQ=="; 7556 }; 7557 }; 7558 + "uglify-js-3.13.0" = { 7559 name = "uglify-js"; 7560 packageName = "uglify-js"; 7561 + version = "3.13.0"; 7562 src = fetchurl { 7563 + url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.13.0.tgz"; 7564 + sha512 = "TWYSWa9T2pPN4DIJYbU9oAjQx+5qdV5RUDxwARg8fmJZrD/V27Zj0JngW5xg1DFz42G0uDYl2XhzF6alSzD62w=="; 7565 }; 7566 }; 7567 "unc-path-regex-0.1.2" = { ··· 7627 sha512 = "2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A=="; 7628 }; 7629 }; 7630 + "universalify-0.1.2" = { 7631 name = "universalify"; 7632 packageName = "universalify"; 7633 + version = "0.1.2"; 7634 src = fetchurl { 7635 + url = "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz"; 7636 + sha512 = "rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg=="; 7637 }; 7638 }; 7639 "universalify-2.0.0" = { ··· 7681 sha512 = "aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg=="; 7682 }; 7683 }; 7684 + "uri-js-4.4.1" = { 7685 name = "uri-js"; 7686 packageName = "uri-js"; 7687 + version = "4.4.1"; 7688 src = fetchurl { 7689 + url = "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz"; 7690 + sha512 = "7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg=="; 7691 }; 7692 }; 7693 "urix-0.1.0" = { ··· 7726 sha512 = "HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="; 7727 }; 7728 }; 7729 + "uuid-8.3.2" = { 7730 name = "uuid"; 7731 packageName = "uuid"; 7732 + version = "8.3.2"; 7733 src = fetchurl { 7734 + url = "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz"; 7735 + sha512 = "+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="; 7736 }; 7737 }; 7738 "v8-compile-cache-2.2.0" = { ··· 7744 sha512 = "gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q=="; 7745 }; 7746 }; 7747 + "v8-compile-cache-2.3.0" = { 7748 + name = "v8-compile-cache"; 7749 + packageName = "v8-compile-cache"; 7750 + version = "2.3.0"; 7751 + src = fetchurl { 7752 + url = "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz"; 7753 + sha512 = "l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA=="; 7754 + }; 7755 + }; 7756 + "v8-to-istanbul-7.1.0" = { 7757 name = "v8-to-istanbul"; 7758 packageName = "v8-to-istanbul"; 7759 + version = "7.1.0"; 7760 src = fetchurl { 7761 + url = "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-7.1.0.tgz"; 7762 + sha512 = "uXUVqNUCLa0AH1vuVxzi+MI4RfxEOKt9pBgKwHbgH7st8Kv2P1m+jvWNnektzBh5QShF3ODgKmUFCf38LnVz1g=="; 7763 }; 7764 }; 7765 "validate-npm-package-license-3.0.4" = { ··· 7778 src = fetchurl { 7779 url = "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz"; 7780 sha1 = "3a105ca17053af55d6e270c1f8288682e18da400"; 7781 + }; 7782 + }; 7783 + "vscode-textmate-5.2.0" = { 7784 + name = "vscode-textmate"; 7785 + packageName = "vscode-textmate"; 7786 + version = "5.2.0"; 7787 + src = fetchurl { 7788 + url = "https://registry.npmjs.org/vscode-textmate/-/vscode-textmate-5.2.0.tgz"; 7789 + sha512 = "Uw5ooOQxRASHgu6C7GVvUxisKXfSgW4oFlO+aa+PAkgmH89O3CXxEEzNRNtHSqtXFTl0nAC1uYj0GMSH27uwtQ=="; 7790 }; 7791 }; 7792 "w3c-hr-time-1.0.2" = { ··· 7861 sha512 = "vwTUFf6V4zhcPkWp/4CQPr1TW9Ml6SF4lVyaIMBdJw5i6qUUJ1QWM4Z6YYVkfka0OUIzVo/0aNtGVGk256IKWw=="; 7862 }; 7863 }; 7864 + "whatwg-url-8.5.0" = { 7865 + name = "whatwg-url"; 7866 + packageName = "whatwg-url"; 7867 + version = "8.5.0"; 7868 + src = fetchurl { 7869 + url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.5.0.tgz"; 7870 + sha512 = "fy+R77xWv0AiqfLl4nuGUlQ3/6b5uNfQ4WAbGQVMYshCTCCPK9psC1nWh3XHuxGVCtlcDDQPQW1csmmIQo+fwg=="; 7871 + }; 7872 + }; 7873 "which-1.3.1" = { 7874 name = "which"; 7875 packageName = "which"; ··· 7978 sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"; 7979 }; 7980 }; 7981 "write-file-atomic-3.0.3" = { 7982 name = "write-file-atomic"; 7983 packageName = "write-file-atomic"; ··· 7987 sha512 = "AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q=="; 7988 }; 7989 }; 7990 + "ws-7.4.3" = { 7991 + name = "ws"; 7992 + packageName = "ws"; 7993 + version = "7.4.3"; 7994 + src = fetchurl { 7995 + url = "https://registry.npmjs.org/ws/-/ws-7.4.3.tgz"; 7996 + sha512 = "hr6vCR76GsossIRsr8OLR9acVVm1jyfEWvhbNjtgPOrfvAlKzvyeg/P6r8RuDjRyrcQoPQT7K0DGEPc7Ae6jzA=="; 7997 + }; 7998 + }; 7999 + "ws-7.4.4" = { 8000 name = "ws"; 8001 packageName = "ws"; 8002 + version = "7.4.4"; 8003 src = fetchurl { 8004 + url = "https://registry.npmjs.org/ws/-/ws-7.4.4.tgz"; 8005 + sha512 = "Qm8k8ojNQIMx7S+Zp8u/uHOx7Qazv3Yv4q68MiWWWOJhiwG5W3x7iqmRtJo8xxrciZUY4vRxUTJCKuRnF28ZZw=="; 8006 }; 8007 }; 8008 "xml-name-validator-3.0.0" = { ··· 8032 sha512 = "LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="; 8033 }; 8034 }; 8035 + "y18n-4.0.1" = { 8036 name = "y18n"; 8037 packageName = "y18n"; 8038 + version = "4.0.1"; 8039 + src = fetchurl { 8040 + url = "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz"; 8041 + sha512 = "wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ=="; 8042 + }; 8043 + }; 8044 + "yallist-3.1.1" = { 8045 + name = "yallist"; 8046 + packageName = "yallist"; 8047 + version = "3.1.1"; 8048 + src = fetchurl { 8049 + url = "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz"; 8050 + sha512 = "a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g=="; 8051 + }; 8052 + }; 8053 + "yallist-4.0.0" = { 8054 + name = "yallist"; 8055 + packageName = "yallist"; 8056 version = "4.0.0"; 8057 src = fetchurl { 8058 + url = "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz"; 8059 + sha512 = "3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="; 8060 }; 8061 }; 8062 "yargs-15.4.1" = { ··· 8077 sha512 = "o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ=="; 8078 }; 8079 }; 8080 + "zigbee-herdsman-0.13.87" = { 8081 name = "zigbee-herdsman"; 8082 packageName = "zigbee-herdsman"; 8083 + version = "0.13.87"; 8084 src = fetchurl { 8085 + url = "https://registry.npmjs.org/zigbee-herdsman/-/zigbee-herdsman-0.13.87.tgz"; 8086 + sha512 = "cfCLotsg6MzF2ptTwxfl1wV8kbopqNaHG2n7YS77OZJsXL2tbJi/0fL7asXtJB2fO/MRIgj0gYMUMivUe4TYIw=="; 8087 }; 8088 }; 8089 + "zigbee-herdsman-0.13.88" = { 8090 + name = "zigbee-herdsman"; 8091 + packageName = "zigbee-herdsman"; 8092 + version = "0.13.88"; 8093 + src = fetchurl { 8094 + url = "https://registry.npmjs.org/zigbee-herdsman/-/zigbee-herdsman-0.13.88.tgz"; 8095 + sha512 = "PTCg7+ATwD29qjuUWcvJHN8E+GFL70b1lRTFzZbMMWdMNKCVy6ZQhPSwjmq+tTNRtzyCVUb2IW7boDR0Aetq+A=="; 8096 + }; 8097 + }; 8098 + "zigbee-herdsman-converters-14.0.102" = { 8099 name = "zigbee-herdsman-converters"; 8100 packageName = "zigbee-herdsman-converters"; 8101 + version = "14.0.102"; 8102 src = fetchurl { 8103 + url = "https://registry.npmjs.org/zigbee-herdsman-converters/-/zigbee-herdsman-converters-14.0.102.tgz"; 8104 + sha512 = "8zv69JAjBfSpsETW9ZdtjrcgZWRoxFPoKuwX9VkaStAj+U2Wx1F6B7HgIHM1SFodM+hhuFfEDEi/c8eUbznUEQ=="; 8105 }; 8106 }; 8107 + "zigbee2mqtt-frontend-0.3.114" = { 8108 name = "zigbee2mqtt-frontend"; 8109 packageName = "zigbee2mqtt-frontend"; 8110 + version = "0.3.114"; 8111 src = fetchurl { 8112 + url = "https://registry.npmjs.org/zigbee2mqtt-frontend/-/zigbee2mqtt-frontend-0.3.114.tgz"; 8113 + sha512 = "302JgXKgXZzEaulvINtYgODZAoSiPSazL6FBTZwteCw6knrqYslPl9kVQ0NVDT0o3RmWBrYJ9o0Gj03Ew+gc6A=="; 8114 }; 8115 }; 8116 }; 8117 args = { 8118 name = "zigbee2mqtt"; 8119 packageName = "zigbee2mqtt"; 8120 + version = "1.18.2"; 8121 src = ./.; 8122 dependencies = [ 8123 sources."@dabh/diagnostics-2.0.2" ··· 8127 sources."balanced-match-1.0.0" 8128 sources."base64-js-1.5.1" 8129 sources."bindings-1.5.0" 8130 + (sources."bl-4.1.0" // { 8131 dependencies = [ 8132 sources."readable-stream-3.6.0" 8133 ]; ··· 8139 sources."color-3.0.0" 8140 sources."color-convert-1.9.3" 8141 sources."color-name-1.1.3" 8142 + sources."color-string-1.5.5" 8143 sources."colors-1.4.0" 8144 sources."colorspace-1.1.2" 8145 sources."commist-1.1.0" ··· 8147 sources."concat-stream-1.6.2" 8148 sources."core-util-is-1.0.2" 8149 sources."d-1.0.1" 8150 + sources."debounce-1.2.1" 8151 sources."debug-2.6.9" 8152 + sources."deep-object-diff-1.1.0" 8153 sources."depd-1.1.2" 8154 sources."destroy-1.0.4" 8155 sources."duplexify-3.7.1" ··· 8172 sources."event-emitter-0.3.5" 8173 (sources."ext-1.4.0" // { 8174 dependencies = [ 8175 + sources."type-2.5.0" 8176 ]; 8177 }) 8178 sources."extend-3.0.2" ··· 8192 sources."glossy-0.1.7" 8193 sources."help-me-1.1.0" 8194 sources."http-errors-1.7.3" 8195 + sources."humanize-duration-3.25.1" 8196 sources."ieee754-1.2.1" 8197 sources."inflight-1.0.6" 8198 sources."inherits-2.0.4" ··· 8206 sources."is-unc-path-1.0.0" 8207 sources."is-windows-1.0.2" 8208 sources."isarray-1.0.0" 8209 + sources."js-yaml-3.14.1" 8210 sources."json-schema-traverse-0.4.1" 8211 sources."json-stable-stringify-without-jsonify-1.0.1" 8212 sources."kuler-2.0.0" 8213 sources."leven-2.1.0" 8214 (sources."logform-2.2.0" // { 8215 dependencies = [ 8216 + sources."ms-2.1.3" 8217 ]; 8218 }) 8219 + sources."lru-cache-6.0.0" 8220 sources."mime-1.6.0" 8221 sources."minimatch-3.0.4" 8222 sources."minimist-1.2.5" ··· 8228 sources."ms-2.1.2" 8229 ]; 8230 }) 8231 + (sources."mqtt-packet-6.9.0" // { 8232 dependencies = [ 8233 sources."debug-4.3.1" 8234 sources."ms-2.1.2" ··· 8259 sources."remove-trailing-separator-1.1.0" 8260 sources."rimraf-3.0.2" 8261 sources."safe-buffer-5.1.2" 8262 + sources."semver-7.3.5" 8263 (sources."send-0.17.1" // { 8264 dependencies = [ 8265 sources."ms-2.1.1" ··· 8290 sources."unique-stream-2.3.1" 8291 sources."unix-dgram-2.0.3" 8292 sources."unpipe-1.0.0" 8293 + sources."uri-js-4.4.1" 8294 sources."util-deprecate-1.0.2" 8295 (sources."winston-3.3.3" // { 8296 dependencies = [ ··· 8300 sources."winston-syslog-2.4.4" 8301 sources."winston-transport-4.4.0" 8302 sources."wrappy-1.0.2" 8303 + sources."ws-7.4.4" 8304 sources."xtend-4.0.2" 8305 + sources."yallist-4.0.0" 8306 + (sources."zigbee-herdsman-0.13.88" // { 8307 dependencies = [ 8308 + sources."@babel/cli-7.13.0" 8309 + sources."@babel/code-frame-7.12.13" 8310 + sources."@babel/compat-data-7.13.8" 8311 + (sources."@babel/core-7.13.8" // { 8312 + dependencies = [ 8313 + sources."semver-6.3.0" 8314 + ]; 8315 + }) 8316 + sources."@babel/generator-7.13.9" 8317 + sources."@babel/helper-annotate-as-pure-7.12.13" 8318 + sources."@babel/helper-builder-binary-assignment-operator-visitor-7.12.13" 8319 + (sources."@babel/helper-compilation-targets-7.13.8" // { 8320 + dependencies = [ 8321 + sources."semver-6.3.0" 8322 + ]; 8323 + }) 8324 + sources."@babel/helper-create-class-features-plugin-7.13.8" 8325 + sources."@babel/helper-create-regexp-features-plugin-7.12.17" 8326 + (sources."@babel/helper-define-polyfill-provider-0.1.5" // { 8327 + dependencies = [ 8328 + sources."semver-6.3.0" 8329 + ]; 8330 + }) 8331 + sources."@babel/helper-explode-assignable-expression-7.13.0" 8332 + sources."@babel/helper-function-name-7.12.13" 8333 + sources."@babel/helper-get-function-arity-7.12.13" 8334 + sources."@babel/helper-hoist-variables-7.13.0" 8335 + sources."@babel/helper-member-expression-to-functions-7.13.0" 8336 + sources."@babel/helper-module-imports-7.12.13" 8337 + sources."@babel/helper-module-transforms-7.13.0" 8338 + sources."@babel/helper-optimise-call-expression-7.12.13" 8339 + sources."@babel/helper-plugin-utils-7.13.0" 8340 + sources."@babel/helper-remap-async-to-generator-7.13.0" 8341 + sources."@babel/helper-replace-supers-7.13.0" 8342 + sources."@babel/helper-simple-access-7.12.13" 8343 sources."@babel/helper-skip-transparent-expression-wrappers-7.12.1" 8344 + sources."@babel/helper-split-export-declaration-7.12.13" 8345 + sources."@babel/helper-validator-identifier-7.12.11" 8346 + sources."@babel/helper-validator-option-7.12.17" 8347 + sources."@babel/helper-wrap-function-7.13.0" 8348 + sources."@babel/helpers-7.13.0" 8349 + sources."@babel/highlight-7.13.8" 8350 + sources."@babel/parser-7.13.9" 8351 + sources."@babel/plugin-proposal-async-generator-functions-7.13.8" 8352 + sources."@babel/plugin-proposal-class-properties-7.13.0" 8353 + sources."@babel/plugin-proposal-dynamic-import-7.13.8" 8354 + sources."@babel/plugin-proposal-export-namespace-from-7.12.13" 8355 + sources."@babel/plugin-proposal-json-strings-7.13.8" 8356 + sources."@babel/plugin-proposal-logical-assignment-operators-7.13.8" 8357 + sources."@babel/plugin-proposal-nullish-coalescing-operator-7.13.8" 8358 + sources."@babel/plugin-proposal-numeric-separator-7.12.13" 8359 + sources."@babel/plugin-proposal-object-rest-spread-7.13.8" 8360 + sources."@babel/plugin-proposal-optional-catch-binding-7.13.8" 8361 + sources."@babel/plugin-proposal-optional-chaining-7.13.8" 8362 + sources."@babel/plugin-proposal-private-methods-7.13.0" 8363 + sources."@babel/plugin-proposal-unicode-property-regex-7.12.13" 8364 sources."@babel/plugin-syntax-async-generators-7.8.4" 8365 sources."@babel/plugin-syntax-bigint-7.8.3" 8366 + sources."@babel/plugin-syntax-class-properties-7.12.13" 8367 sources."@babel/plugin-syntax-dynamic-import-7.8.3" 8368 sources."@babel/plugin-syntax-export-namespace-from-7.8.3" 8369 sources."@babel/plugin-syntax-import-meta-7.10.4" ··· 8374 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" 8375 sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" 8376 sources."@babel/plugin-syntax-optional-chaining-7.8.3" 8377 + sources."@babel/plugin-syntax-top-level-await-7.12.13" 8378 + sources."@babel/plugin-syntax-typescript-7.12.13" 8379 + sources."@babel/plugin-transform-arrow-functions-7.13.0" 8380 + sources."@babel/plugin-transform-async-to-generator-7.13.0" 8381 + sources."@babel/plugin-transform-block-scoped-functions-7.12.13" 8382 + sources."@babel/plugin-transform-block-scoping-7.12.13" 8383 + sources."@babel/plugin-transform-classes-7.13.0" 8384 + sources."@babel/plugin-transform-computed-properties-7.13.0" 8385 + sources."@babel/plugin-transform-destructuring-7.13.0" 8386 + sources."@babel/plugin-transform-dotall-regex-7.12.13" 8387 + sources."@babel/plugin-transform-duplicate-keys-7.12.13" 8388 + sources."@babel/plugin-transform-exponentiation-operator-7.12.13" 8389 + sources."@babel/plugin-transform-for-of-7.13.0" 8390 + sources."@babel/plugin-transform-function-name-7.12.13" 8391 + sources."@babel/plugin-transform-literals-7.12.13" 8392 + sources."@babel/plugin-transform-member-expression-literals-7.12.13" 8393 + sources."@babel/plugin-transform-modules-amd-7.13.0" 8394 + sources."@babel/plugin-transform-modules-commonjs-7.13.8" 8395 + sources."@babel/plugin-transform-modules-systemjs-7.13.8" 8396 + sources."@babel/plugin-transform-modules-umd-7.13.0" 8397 + sources."@babel/plugin-transform-named-capturing-groups-regex-7.12.13" 8398 + sources."@babel/plugin-transform-new-target-7.12.13" 8399 + sources."@babel/plugin-transform-object-super-7.12.13" 8400 + sources."@babel/plugin-transform-parameters-7.13.0" 8401 + sources."@babel/plugin-transform-property-literals-7.12.13" 8402 + sources."@babel/plugin-transform-regenerator-7.12.13" 8403 + sources."@babel/plugin-transform-reserved-words-7.12.13" 8404 + sources."@babel/plugin-transform-shorthand-properties-7.12.13" 8405 + sources."@babel/plugin-transform-spread-7.13.0" 8406 + sources."@babel/plugin-transform-sticky-regex-7.12.13" 8407 + sources."@babel/plugin-transform-template-literals-7.13.0" 8408 + sources."@babel/plugin-transform-typeof-symbol-7.12.13" 8409 + sources."@babel/plugin-transform-typescript-7.13.0" 8410 + sources."@babel/plugin-transform-unicode-escapes-7.12.13" 8411 + sources."@babel/plugin-transform-unicode-regex-7.12.13" 8412 + (sources."@babel/preset-env-7.13.9" // { 8413 + dependencies = [ 8414 + sources."semver-6.3.0" 8415 + ]; 8416 + }) 8417 sources."@babel/preset-modules-0.1.4" 8418 + sources."@babel/preset-typescript-7.13.0" 8419 + sources."@babel/runtime-7.13.9" 8420 + sources."@babel/template-7.12.13" 8421 + sources."@babel/traverse-7.13.0" 8422 + sources."@babel/types-7.13.0" 8423 sources."@bcoe/v8-coverage-0.2.3" 8424 sources."@cnakazawa/watch-1.0.4" 8425 + (sources."@eslint/eslintrc-0.4.0" // { 8426 dependencies = [ 8427 sources."globals-12.4.0" 8428 sources."ignore-4.0.6" ··· 8430 ]; 8431 }) 8432 sources."@istanbuljs/load-nyc-config-1.1.0" 8433 + sources."@istanbuljs/schema-0.1.3" 8434 (sources."@jest/console-26.6.2" // { 8435 dependencies = [ 8436 sources."ansi-styles-4.3.0" ··· 8454 sources."has-flag-4.0.0" 8455 sources."is-number-7.0.0" 8456 sources."micromatch-4.0.2" 8457 sources."slash-3.0.0" 8458 sources."strip-ansi-6.0.0" 8459 sources."supports-color-7.2.0" ··· 8509 sources."supports-color-7.2.0" 8510 ]; 8511 }) 8512 + sources."@nicolo-ribaudo/chokidar-2-2.1.8-no-fsevents" 8513 + sources."@nodelib/fs.scandir-2.1.4" 8514 + sources."@nodelib/fs.stat-2.0.4" 8515 + sources."@nodelib/fs.walk-1.2.6" 8516 + sources."@serialport/binding-abstract-9.0.7" 8517 + sources."@serialport/binding-mock-9.0.7" 8518 + sources."@serialport/bindings-9.0.4" 8519 + sources."@serialport/parser-byte-length-9.0.7" 8520 + sources."@serialport/parser-cctalk-9.0.7" 8521 + sources."@serialport/parser-delimiter-9.0.7" 8522 + sources."@serialport/parser-inter-byte-timeout-9.0.7" 8523 + sources."@serialport/parser-readline-9.0.7" 8524 + sources."@serialport/parser-ready-9.0.7" 8525 + sources."@serialport/parser-regex-9.0.7" 8526 + sources."@serialport/stream-9.0.7" 8527 + sources."@sinonjs/commons-1.8.2" 8528 sources."@sinonjs/fake-timers-6.0.1" 8529 sources."@types/babel__core-7.1.12" 8530 sources."@types/babel__generator-7.6.2" 8531 sources."@types/babel__template-7.4.0" 8532 + sources."@types/babel__traverse-7.11.0" 8533 sources."@types/debounce-1.2.0" 8534 sources."@types/debug-4.1.5" 8535 + sources."@types/graceful-fs-4.1.5" 8536 sources."@types/istanbul-lib-coverage-2.0.3" 8537 sources."@types/istanbul-lib-report-3.0.0" 8538 sources."@types/istanbul-reports-3.0.0" 8539 + sources."@types/jest-26.0.20" 8540 + sources."@types/json-schema-7.0.7" 8541 sources."@types/nedb-1.8.11" 8542 + sources."@types/node-14.14.31" 8543 sources."@types/normalize-package-data-2.4.0" 8544 + sources."@types/prettier-2.2.2" 8545 sources."@types/serialport-8.0.1" 8546 sources."@types/stack-utils-2.0.0" 8547 + sources."@types/yargs-15.0.13" 8548 + sources."@types/yargs-parser-20.2.0" 8549 + (sources."@typescript-eslint/eslint-plugin-4.16.1" // { 8550 dependencies = [ 8551 + sources."semver-7.3.4" 8552 ]; 8553 }) 8554 + sources."@typescript-eslint/experimental-utils-4.16.1" 8555 + sources."@typescript-eslint/parser-4.16.1" 8556 + sources."@typescript-eslint/scope-manager-4.16.1" 8557 + sources."@typescript-eslint/types-4.16.1" 8558 + (sources."@typescript-eslint/typescript-estree-4.16.1" // { 8559 dependencies = [ 8560 + sources."semver-7.3.4" 8561 ]; 8562 }) 8563 + sources."@typescript-eslint/visitor-keys-4.16.1" 8564 sources."abab-2.0.5" 8565 sources."acorn-7.4.1" 8566 sources."acorn-globals-6.0.0" ··· 8591 sources."asn1-0.2.4" 8592 sources."assert-plus-1.0.0" 8593 sources."assign-symbols-1.0.0" 8594 + sources."astral-regex-2.0.0" 8595 sources."async-each-1.0.3" 8596 sources."asynckit-0.4.0" 8597 sources."at-least-node-1.0.0" ··· 8612 sources."babel-plugin-dynamic-import-node-2.3.3" 8613 sources."babel-plugin-istanbul-6.0.0" 8614 sources."babel-plugin-jest-hoist-26.6.2" 8615 + (sources."babel-plugin-polyfill-corejs2-0.1.10" // { 8616 + dependencies = [ 8617 + sources."semver-6.3.0" 8618 + ]; 8619 + }) 8620 + sources."babel-plugin-polyfill-corejs3-0.1.7" 8621 + sources."babel-plugin-polyfill-regenerator-0.1.6" 8622 + sources."babel-preset-current-node-syntax-1.0.1" 8623 sources."babel-preset-jest-26.6.2" 8624 sources."balanced-match-1.0.0" 8625 (sources."base-0.11.2" // { ··· 8636 sources."bcrypt-pbkdf-1.0.2" 8637 sources."binary-extensions-1.13.1" 8638 sources."bindings-1.5.0" 8639 + (sources."bl-4.1.0" // { 8640 dependencies = [ 8641 sources."readable-stream-3.6.0" 8642 ]; ··· 8648 ]; 8649 }) 8650 sources."browser-process-hrtime-1.0.0" 8651 + sources."browserslist-4.16.3" 8652 sources."bser-2.1.1" 8653 sources."buffer-5.7.1" 8654 sources."buffer-from-1.1.1" 8655 sources."cache-base-1.0.1" 8656 + sources."call-bind-1.0.2" 8657 sources."callsites-3.1.0" 8658 sources."camelcase-5.3.1" 8659 + sources."caniuse-lite-1.0.30001194" 8660 sources."capture-exit-2.0.0" 8661 sources."caseless-0.12.0" 8662 sources."chalk-2.4.2" 8663 sources."char-regex-1.0.2" 8664 + (sources."chokidar-3.5.1" // { 8665 dependencies = [ 8666 sources."anymatch-3.1.1" 8667 + sources."binary-extensions-2.2.0" 8668 sources."braces-3.0.2" 8669 sources."fill-range-7.0.1" 8670 sources."glob-parent-5.1.1" 8671 sources."is-binary-path-2.1.0" 8672 sources."is-number-7.0.0" ··· 8685 (sources."cliui-6.0.0" // { 8686 dependencies = [ 8687 sources."ansi-regex-5.0.0" 8688 sources."is-fullwidth-code-point-3.0.0" 8689 + sources."string-width-4.2.2" 8690 sources."strip-ansi-6.0.0" 8691 ]; 8692 }) ··· 8696 sources."collection-visit-1.0.0" 8697 sources."color-convert-1.9.3" 8698 sources."color-name-1.1.3" 8699 + sources."colorette-1.2.2" 8700 + sources."colors-1.4.0" 8701 sources."combined-stream-1.0.8" 8702 sources."commander-4.1.1" 8703 sources."component-emitter-1.3.0" ··· 8705 sources."console-control-strings-1.1.0" 8706 sources."convert-source-map-1.7.0" 8707 sources."copy-descriptor-0.1.1" 8708 + (sources."core-js-compat-3.9.1" // { 8709 dependencies = [ 8710 sources."semver-7.0.0" 8711 ]; ··· 8721 sources."dashdash-1.14.1" 8722 sources."data-urls-2.0.0" 8723 sources."debounce-1.2.0" 8724 + sources."debug-4.3.1" 8725 sources."decamelize-1.2.0" 8726 sources."decimal.js-10.2.1" 8727 sources."decode-uri-component-0.2.0" ··· 8750 ]; 8751 }) 8752 sources."ecc-jsbn-0.1.2" 8753 + sources."electron-to-chromium-1.3.678" 8754 sources."emittery-0.7.2" 8755 + sources."emoji-regex-8.0.0" 8756 sources."end-of-stream-1.4.4" 8757 sources."enquirer-2.3.6" 8758 sources."error-ex-1.3.2" ··· 8767 sources."type-check-0.3.2" 8768 ]; 8769 }) 8770 + (sources."eslint-7.21.0" // { 8771 dependencies = [ 8772 + sources."@babel/code-frame-7.12.11" 8773 sources."ansi-regex-5.0.0" 8774 sources."ansi-styles-4.3.0" 8775 sources."chalk-4.1.0" ··· 8781 sources."has-flag-4.0.0" 8782 sources."ignore-4.0.6" 8783 sources."path-key-3.1.1" 8784 + sources."semver-7.3.4" 8785 sources."shebang-command-2.0.0" 8786 sources."shebang-regex-3.0.0" 8787 sources."strip-ansi-6.0.0" ··· 8797 ]; 8798 }) 8799 sources."eslint-visitor-keys-2.0.0" 8800 + (sources."espree-7.3.1" // { 8801 dependencies = [ 8802 sources."eslint-visitor-keys-1.3.0" 8803 ]; 8804 }) 8805 sources."esprima-4.0.1" 8806 + (sources."esquery-1.4.0" // { 8807 dependencies = [ 8808 sources."estraverse-5.2.0" 8809 ]; ··· 8851 }) 8852 sources."extsprintf-1.3.0" 8853 sources."fast-deep-equal-3.1.3" 8854 + (sources."fast-glob-3.2.5" // { 8855 dependencies = [ 8856 sources."braces-3.0.2" 8857 sources."fill-range-7.0.1" ··· 8863 }) 8864 sources."fast-json-stable-stringify-2.1.0" 8865 sources."fast-levenshtein-2.0.6" 8866 + sources."fastq-1.11.0" 8867 sources."fb-watchman-2.0.1" 8868 + sources."file-entry-cache-6.0.1" 8869 sources."file-uri-to-path-1.0.0" 8870 (sources."fill-range-4.0.0" // { 8871 dependencies = [ ··· 8873 ]; 8874 }) 8875 sources."find-up-4.1.0" 8876 + sources."flat-cache-3.0.4" 8877 + sources."flatted-3.1.1" 8878 sources."for-in-1.0.2" 8879 sources."forever-agent-0.6.1" 8880 sources."form-data-2.3.3" 8881 sources."fragment-cache-0.2.1" 8882 sources."fs-constants-1.0.0" 8883 + sources."fs-extra-9.1.0" 8884 sources."fs-readdir-recursive-1.1.0" 8885 sources."fs.realpath-1.0.0" 8886 + sources."fsevents-2.3.2" 8887 sources."function-bind-1.1.1" 8888 sources."functional-red-black-tree-1.0.1" 8889 sources."gauge-2.7.4" 8890 sources."gensync-1.0.0-beta.2" 8891 sources."get-caller-file-2.0.5" 8892 + sources."get-intrinsic-1.1.1" 8893 sources."get-package-type-0.1.0" 8894 sources."get-stream-4.1.0" 8895 sources."get-value-2.0.6" ··· 8902 ]; 8903 }) 8904 sources."globals-11.12.0" 8905 + (sources."globby-11.0.2" // { 8906 dependencies = [ 8907 sources."slash-3.0.0" 8908 ]; 8909 }) 8910 + sources."graceful-fs-4.2.6" 8911 sources."growly-1.3.0" 8912 + (sources."handlebars-4.7.7" // { 8913 dependencies = [ 8914 sources."source-map-0.6.1" 8915 ]; ··· 8918 sources."har-validator-5.1.5" 8919 sources."has-1.0.3" 8920 sources."has-flag-3.0.0" 8921 + sources."has-symbols-1.0.2" 8922 sources."has-unicode-2.0.1" 8923 sources."has-value-1.0.0" 8924 (sources."has-values-1.0.0" // { ··· 8926 sources."kind-of-4.0.0" 8927 ]; 8928 }) 8929 sources."hosted-git-info-2.8.8" 8930 sources."html-encoding-sniffer-2.0.1" 8931 sources."html-escaper-2.0.2" ··· 8934 sources."iconv-lite-0.4.24" 8935 sources."ieee754-1.2.1" 8936 sources."ignore-5.1.8" 8937 + (sources."import-fresh-3.3.0" // { 8938 dependencies = [ 8939 sources."resolve-from-4.0.0" 8940 ]; ··· 8943 sources."imurmurhash-0.1.4" 8944 sources."inflight-1.0.6" 8945 sources."inherits-2.0.4" 8946 + sources."ini-1.3.8" 8947 sources."interpret-1.4.0" 8948 sources."ip-regex-2.1.0" 8949 (sources."is-accessor-descriptor-0.1.6" // { ··· 8955 sources."is-binary-path-1.0.1" 8956 sources."is-buffer-1.1.6" 8957 sources."is-ci-2.0.0" 8958 + sources."is-core-module-2.2.0" 8959 (sources."is-data-descriptor-0.1.4" // { 8960 dependencies = [ 8961 sources."kind-of-3.2.2" ··· 9075 sources."anymatch-3.1.1" 9076 sources."braces-3.0.2" 9077 sources."fill-range-7.0.1" 9078 sources."is-number-7.0.0" 9079 sources."micromatch-4.0.2" 9080 sources."to-regex-range-5.0.1" ··· 9161 sources."color-convert-2.0.1" 9162 sources."color-name-1.1.4" 9163 sources."has-flag-4.0.0" 9164 + sources."semver-7.3.4" 9165 sources."supports-color-7.2.0" 9166 ]; 9167 }) ··· 9208 ]; 9209 }) 9210 sources."js-tokens-4.0.0" 9211 + sources."js-yaml-3.14.1" 9212 sources."jsbn-0.1.1" 9213 sources."jsdom-16.4.0" 9214 sources."jsesc-2.5.2" ··· 9217 sources."json-schema-traverse-0.4.1" 9218 sources."json-stable-stringify-without-jsonify-1.0.1" 9219 sources."json-stringify-safe-5.0.1" 9220 + sources."json5-2.2.0" 9221 + sources."jsonfile-6.1.0" 9222 sources."jsprim-1.4.1" 9223 sources."kind-of-6.0.3" 9224 sources."kleur-3.0.3" ··· 9226 sources."levn-0.4.1" 9227 sources."lines-and-columns-1.1.6" 9228 sources."locate-path-5.0.0" 9229 + sources."lodash-4.17.21" 9230 + sources."lodash.debounce-4.0.8" 9231 sources."lodash.sortby-4.7.0" 9232 + sources."lru-cache-6.0.0" 9233 sources."lunr-2.3.9" 9234 sources."make-dir-2.1.0" 9235 sources."makeerror-1.0.11" 9236 sources."map-cache-0.2.2" 9237 sources."map-visit-1.0.0" 9238 + sources."marked-2.0.1" 9239 sources."merge-stream-2.0.0" 9240 sources."merge2-1.4.1" 9241 sources."micromatch-3.1.10" 9242 + sources."mime-db-1.46.0" 9243 + sources."mime-types-2.1.29" 9244 sources."mimic-fn-2.1.0" 9245 sources."mimic-response-2.1.0" 9246 sources."minimatch-3.0.4" 9247 sources."minimist-1.2.5" 9248 sources."mixin-deep-2.0.1" 9249 sources."mkdirp-classic-0.5.3" 9250 sources."ms-2.1.2" 9251 sources."nan-2.14.2" ··· 9254 sources."natural-compare-1.4.0" 9255 sources."neo-async-2.6.2" 9256 sources."nice-try-1.0.5" 9257 + sources."node-abi-2.20.0" 9258 sources."node-int64-0.4.0" 9259 sources."node-modules-regexp-1.0.0" 9260 + (sources."node-notifier-8.0.1" // { 9261 dependencies = [ 9262 + sources."semver-7.3.4" 9263 sources."which-2.0.2" 9264 ]; 9265 }) 9266 + sources."node-releases-1.1.71" 9267 sources."noop-logger-0.1.1" 9268 sources."normalize-package-data-2.5.0" 9269 sources."normalize-path-3.0.0" ··· 9285 sources."object.pick-1.3.0" 9286 sources."once-1.4.0" 9287 sources."onetime-5.1.2" 9288 + (sources."onigasm-2.2.5" // { 9289 + dependencies = [ 9290 + sources."lru-cache-5.1.1" 9291 + sources."yallist-3.1.1" 9292 + ]; 9293 + }) 9294 sources."optionator-0.9.1" 9295 + sources."p-each-series-2.2.0" 9296 sources."p-finally-1.0.0" 9297 sources."p-limit-2.3.0" 9298 sources."p-locate-4.1.0" 9299 sources."p-try-2.2.0" 9300 sources."parent-module-1.0.1" 9301 + sources."parse-json-5.2.0" 9302 sources."parse5-5.1.1" 9303 sources."pascalcase-0.1.1" 9304 sources."path-dirname-1.0.2" ··· 9313 sources."pirates-4.0.1" 9314 sources."pkg-dir-4.2.0" 9315 sources."posix-character-classes-0.1.1" 9316 + sources."prebuild-install-6.0.1" 9317 sources."prelude-ls-1.2.1" 9318 (sources."pretty-format-26.6.2" // { 9319 dependencies = [ ··· 9330 sources."pump-3.0.0" 9331 sources."punycode-2.1.1" 9332 sources."qs-6.5.2" 9333 + sources."queue-microtask-1.2.2" 9334 sources."rc-1.2.8" 9335 sources."react-is-17.0.1" 9336 (sources."read-pkg-5.2.0" // { ··· 9350 sources."regexpp-3.1.0" 9351 sources."regexpu-core-4.7.1" 9352 sources."regjsgen-0.5.2" 9353 + (sources."regjsparser-0.6.7" // { 9354 dependencies = [ 9355 sources."jsesc-0.5.0" 9356 ]; ··· 9371 ]; 9372 }) 9373 sources."require-directory-2.1.1" 9374 + sources."require-from-string-2.0.2" 9375 sources."require-main-filename-2.0.0" 9376 + sources."resolve-1.20.0" 9377 sources."resolve-cwd-3.0.0" 9378 sources."resolve-from-5.0.0" 9379 sources."resolve-url-0.2.1" 9380 sources."ret-0.1.15" 9381 sources."reusify-1.0.4" 9382 + sources."rimraf-3.0.2" 9383 sources."rsvp-4.8.5" 9384 + sources."run-parallel-1.2.0" 9385 sources."safe-buffer-5.1.2" 9386 sources."safe-regex-1.1.0" 9387 sources."safer-buffer-2.1.2" 9388 sources."sane-4.1.0" 9389 sources."saxes-5.0.1" 9390 sources."semver-5.7.1" 9391 + sources."serialport-9.0.6" 9392 sources."set-blocking-2.0.0" 9393 (sources."set-value-2.0.1" // { 9394 dependencies = [ ··· 9399 sources."shebang-regex-1.0.0" 9400 sources."shelljs-0.8.4" 9401 sources."shellwords-0.1.1" 9402 + sources."shiki-0.9.2" 9403 sources."signal-exit-3.0.3" 9404 sources."simple-concat-1.0.1" 9405 sources."simple-get-3.1.0" 9406 sources."sisteransi-1.0.5" 9407 sources."slash-2.0.0" 9408 + (sources."slice-ansi-4.0.0" // { 9409 dependencies = [ 9410 + sources."ansi-styles-4.3.0" 9411 + sources."color-convert-2.0.1" 9412 + sources."color-name-1.1.4" 9413 + sources."is-fullwidth-code-point-3.0.0" 9414 ]; 9415 }) 9416 sources."slip-1.0.2" ··· 9442 sources."source-map-0.6.1" 9443 ]; 9444 }) 9445 + sources."source-map-url-0.4.1" 9446 sources."spdx-correct-3.1.1" 9447 sources."spdx-exceptions-2.3.0" 9448 sources."spdx-expression-parse-3.0.1" 9449 + sources."spdx-license-ids-3.0.7" 9450 sources."split-string-3.1.0" 9451 sources."sprintf-js-1.0.3" 9452 sources."sshpk-1.16.1" ··· 9482 ]; 9483 }) 9484 sources."symbol-tree-3.2.4" 9485 + (sources."table-6.0.7" // { 9486 dependencies = [ 9487 + sources."ajv-7.1.1" 9488 + sources."ansi-regex-5.0.0" 9489 + sources."is-fullwidth-code-point-3.0.0" 9490 + sources."json-schema-traverse-1.0.0" 9491 + sources."string-width-4.2.2" 9492 + sources."strip-ansi-6.0.0" 9493 ]; 9494 }) 9495 sources."tar-fs-2.1.1" 9496 + (sources."tar-stream-2.2.0" // { 9497 dependencies = [ 9498 sources."readable-stream-3.6.0" 9499 ]; ··· 9514 sources."tough-cookie-3.0.1" 9515 sources."tr46-2.0.2" 9516 sources."tslib-1.14.1" 9517 + sources."tsutils-3.20.0" 9518 sources."tunnel-agent-0.6.0" 9519 sources."tweetnacl-0.14.5" 9520 sources."type-check-0.4.0" 9521 sources."type-detect-4.0.8" 9522 sources."type-fest-0.8.1" 9523 sources."typedarray-to-buffer-3.1.5" 9524 + sources."typedoc-0.20.28" 9525 + sources."typedoc-default-themes-0.12.7" 9526 + sources."typedoc-plugin-markdown-3.6.0" 9527 sources."typedoc-plugin-no-inherit-1.2.0" 9528 sources."typedoc-plugin-sourcefile-url-1.0.6" 9529 + sources."typescript-4.2.2" 9530 + sources."uglify-js-3.13.0" 9531 sources."unicode-canonical-property-names-ecmascript-1.0.4" 9532 sources."unicode-match-property-ecmascript-1.0.4" 9533 sources."unicode-match-property-value-ecmascript-1.2.0" 9534 sources."unicode-property-aliases-ecmascript-1.1.0" 9535 sources."union-value-1.0.1" 9536 + sources."universalify-2.0.0" 9537 (sources."unset-value-1.0.0" // { 9538 dependencies = [ 9539 (sources."has-value-0.3.1" // { ··· 9545 ]; 9546 }) 9547 sources."upath-1.2.0" 9548 + sources."uri-js-4.4.1" 9549 sources."urix-0.1.0" 9550 sources."use-3.1.1" 9551 sources."util-deprecate-1.0.2" 9552 + sources."uuid-8.3.2" 9553 sources."v8-compile-cache-2.2.0" 9554 + (sources."v8-to-istanbul-7.1.0" // { 9555 dependencies = [ 9556 sources."source-map-0.7.3" 9557 ]; 9558 }) 9559 sources."validate-npm-package-license-3.0.4" 9560 sources."verror-1.10.0" 9561 + sources."vscode-textmate-5.2.0" 9562 sources."w3c-hr-time-1.0.2" 9563 sources."w3c-xmlserializer-2.0.0" 9564 sources."walker-1.0.7" ··· 9578 sources."ansi-styles-4.3.0" 9579 sources."color-convert-2.0.1" 9580 sources."color-name-1.1.4" 9581 sources."is-fullwidth-code-point-3.0.0" 9582 + sources."string-width-4.2.2" 9583 sources."strip-ansi-6.0.0" 9584 ]; 9585 }) 9586 sources."wrappy-1.0.2" 9587 sources."write-file-atomic-3.0.3" 9588 + sources."ws-7.4.3" 9589 sources."xml-name-validator-3.0.0" 9590 sources."xmlchars-2.2.0" 9591 + sources."y18n-4.0.1" 9592 + sources."yallist-4.0.0" 9593 (sources."yargs-15.4.1" // { 9594 dependencies = [ 9595 sources."ansi-regex-5.0.0" 9596 sources."is-fullwidth-code-point-3.0.0" 9597 + sources."string-width-4.2.2" 9598 sources."strip-ansi-6.0.0" 9599 ]; 9600 }) 9601 sources."yargs-parser-18.1.3" 9602 ]; 9603 }) 9604 + (sources."zigbee-herdsman-converters-14.0.102" // { 9605 dependencies = [ 9606 + sources."@babel/code-frame-7.12.11" 9607 + sources."@babel/compat-data-7.13.12" 9608 + (sources."@babel/core-7.13.13" // { 9609 dependencies = [ 9610 + sources."@babel/code-frame-7.12.13" 9611 + sources."semver-6.3.0" 9612 sources."source-map-0.5.7" 9613 ]; 9614 }) 9615 + (sources."@babel/generator-7.13.9" // { 9616 dependencies = [ 9617 sources."source-map-0.5.7" 9618 ]; 9619 }) 9620 + (sources."@babel/helper-compilation-targets-7.13.13" // { 9621 + dependencies = [ 9622 + sources."semver-6.3.0" 9623 + ]; 9624 + }) 9625 + sources."@babel/helper-function-name-7.12.13" 9626 + sources."@babel/helper-get-function-arity-7.12.13" 9627 + sources."@babel/helper-member-expression-to-functions-7.13.12" 9628 + sources."@babel/helper-module-imports-7.13.12" 9629 + sources."@babel/helper-module-transforms-7.13.12" 9630 + sources."@babel/helper-optimise-call-expression-7.12.13" 9631 + sources."@babel/helper-plugin-utils-7.13.0" 9632 + sources."@babel/helper-replace-supers-7.13.12" 9633 + sources."@babel/helper-simple-access-7.13.12" 9634 + sources."@babel/helper-split-export-declaration-7.12.13" 9635 + sources."@babel/helper-validator-identifier-7.12.11" 9636 + sources."@babel/helper-validator-option-7.12.17" 9637 + sources."@babel/helpers-7.13.10" 9638 + (sources."@babel/highlight-7.13.10" // { 9639 dependencies = [ 9640 sources."chalk-2.4.2" 9641 ]; 9642 }) 9643 + sources."@babel/parser-7.13.13" 9644 sources."@babel/plugin-syntax-async-generators-7.8.4" 9645 sources."@babel/plugin-syntax-bigint-7.8.3" 9646 + sources."@babel/plugin-syntax-class-properties-7.12.13" 9647 sources."@babel/plugin-syntax-import-meta-7.10.4" 9648 sources."@babel/plugin-syntax-json-strings-7.8.3" 9649 sources."@babel/plugin-syntax-logical-assignment-operators-7.10.4" ··· 9652 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" 9653 sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" 9654 sources."@babel/plugin-syntax-optional-chaining-7.8.3" 9655 + sources."@babel/plugin-syntax-top-level-await-7.12.13" 9656 + (sources."@babel/template-7.12.13" // { 9657 + dependencies = [ 9658 + sources."@babel/code-frame-7.12.13" 9659 + ]; 9660 + }) 9661 + (sources."@babel/traverse-7.13.13" // { 9662 dependencies = [ 9663 + sources."@babel/code-frame-7.12.13" 9664 sources."globals-11.12.0" 9665 ]; 9666 }) 9667 + sources."@babel/types-7.13.13" 9668 sources."@bcoe/v8-coverage-0.2.3" 9669 sources."@cnakazawa/watch-1.0.4" 9670 + (sources."@eslint/eslintrc-0.4.0" // { 9671 + dependencies = [ 9672 + sources."globals-12.4.0" 9673 + ]; 9674 + }) 9675 (sources."@istanbuljs/load-nyc-config-1.1.0" // { 9676 dependencies = [ 9677 sources."resolve-from-5.0.0" 9678 ]; 9679 }) 9680 + sources."@istanbuljs/schema-0.1.3" 9681 sources."@jest/console-26.6.2" 9682 + sources."@jest/core-26.6.3" 9683 sources."@jest/environment-26.6.2" 9684 sources."@jest/fake-timers-26.6.2" 9685 sources."@jest/globals-26.6.2" ··· 9689 sources."@jest/test-sequencer-26.6.3" 9690 sources."@jest/transform-26.6.2" 9691 sources."@jest/types-26.6.2" 9692 + sources."@nodelib/fs.scandir-2.1.4" 9693 + sources."@nodelib/fs.stat-2.0.4" 9694 + sources."@nodelib/fs.walk-1.2.6" 9695 + sources."@sinonjs/commons-1.8.2" 9696 sources."@sinonjs/fake-timers-6.0.1" 9697 + sources."@types/babel__core-7.1.14" 9698 sources."@types/babel__generator-7.6.2" 9699 sources."@types/babel__template-7.4.0" 9700 + sources."@types/babel__traverse-7.11.1" 9701 + sources."@types/graceful-fs-4.1.5" 9702 sources."@types/istanbul-lib-coverage-2.0.3" 9703 sources."@types/istanbul-lib-report-3.0.0" 9704 sources."@types/istanbul-reports-3.0.0" 9705 + sources."@types/json-schema-7.0.7" 9706 + sources."@types/node-14.14.37" 9707 sources."@types/normalize-package-data-2.4.0" 9708 + sources."@types/prettier-2.2.3" 9709 sources."@types/stack-utils-2.0.0" 9710 + sources."@types/yargs-15.0.13" 9711 + sources."@types/yargs-parser-20.2.0" 9712 + sources."@typescript-eslint/experimental-utils-4.19.0" 9713 + sources."@typescript-eslint/scope-manager-4.19.0" 9714 + sources."@typescript-eslint/types-4.19.0" 9715 + sources."@typescript-eslint/typescript-estree-4.19.0" 9716 + sources."@typescript-eslint/visitor-keys-4.19.0" 9717 sources."abab-2.0.5" 9718 sources."acorn-7.4.1" 9719 sources."acorn-globals-6.0.0" ··· 9722 sources."agent-base-6.0.2" 9723 sources."ajv-6.12.6" 9724 sources."ansi-colors-4.1.1" 9725 + (sources."ansi-escapes-4.3.2" // { 9726 dependencies = [ 9727 + sources."type-fest-0.21.3" 9728 ]; 9729 }) 9730 sources."ansi-regex-5.0.0" ··· 9739 sources."asn1-0.2.4" 9740 sources."assert-plus-1.0.0" 9741 sources."assign-symbols-1.0.0" 9742 + sources."astral-regex-2.0.0" 9743 sources."asynckit-0.4.0" 9744 sources."atob-2.1.2" 9745 sources."aws-sign2-0.7.0" 9746 sources."aws4-1.11.0" 9747 + sources."axios-0.21.1" 9748 sources."babel-jest-26.6.3" 9749 sources."babel-plugin-istanbul-6.0.0" 9750 sources."babel-plugin-jest-hoist-26.6.2" 9751 + sources."babel-preset-current-node-syntax-1.0.1" 9752 sources."babel-preset-jest-26.6.2" 9753 sources."balanced-match-1.0.0" 9754 (sources."base-0.11.2" // { ··· 9761 }) 9762 sources."base64-js-1.5.1" 9763 sources."bcrypt-pbkdf-1.0.2" 9764 + sources."bl-4.1.0" 9765 sources."brace-expansion-1.1.11" 9766 sources."braces-3.0.2" 9767 sources."browser-process-hrtime-1.0.0" 9768 + sources."browserslist-4.16.3" 9769 sources."bser-2.1.1" 9770 sources."buffer-5.7.1" 9771 sources."buffer-crc32-0.2.13" ··· 9773 sources."cache-base-1.0.1" 9774 sources."callsites-3.1.0" 9775 sources."camelcase-5.3.1" 9776 + sources."caniuse-lite-1.0.30001204" 9777 sources."capture-exit-2.0.0" 9778 sources."caseless-0.12.0" 9779 (sources."chalk-4.1.0" // { ··· 9793 sources."define-property-0.2.5" 9794 ]; 9795 }) 9796 + sources."cliui-6.0.0" 9797 sources."co-4.6.0" 9798 sources."collect-v8-coverage-1.0.1" 9799 sources."collection-visit-1.0.0" 9800 sources."color-convert-1.9.3" 9801 sources."color-name-1.1.3" 9802 + sources."colorette-1.2.2" 9803 sources."combined-stream-1.0.8" 9804 sources."component-emitter-1.3.0" 9805 sources."concat-map-0.0.1" ··· 9843 ]; 9844 }) 9845 sources."ecc-jsbn-0.1.2" 9846 + sources."electron-to-chromium-1.3.701" 9847 sources."emittery-0.7.2" 9848 + sources."emoji-regex-8.0.0" 9849 sources."end-of-stream-1.4.4" 9850 sources."enquirer-2.3.6" 9851 sources."error-ex-1.3.2" 9852 + sources."escalade-3.1.1" 9853 sources."escape-string-regexp-1.0.5" 9854 + (sources."escodegen-2.0.0" // { 9855 dependencies = [ 9856 + sources."estraverse-5.2.0" 9857 sources."levn-0.3.0" 9858 sources."optionator-0.8.3" 9859 sources."prelude-ls-1.1.2" 9860 sources."type-check-0.3.2" 9861 ]; 9862 }) 9863 + sources."eslint-7.23.0" 9864 sources."eslint-config-google-0.14.0" 9865 + sources."eslint-plugin-jest-24.3.2" 9866 sources."eslint-scope-5.1.1" 9867 (sources."eslint-utils-2.1.0" // { 9868 dependencies = [ ··· 9870 ]; 9871 }) 9872 sources."eslint-visitor-keys-2.0.0" 9873 + (sources."espree-7.3.1" // { 9874 dependencies = [ 9875 sources."eslint-visitor-keys-1.3.0" 9876 ]; 9877 }) 9878 sources."esprima-4.0.1" 9879 + (sources."esquery-1.4.0" // { 9880 dependencies = [ 9881 sources."estraverse-5.2.0" 9882 ]; ··· 9888 }) 9889 sources."estraverse-4.3.0" 9890 sources."esutils-2.0.3" 9891 + sources."exec-sh-0.3.6" 9892 (sources."execa-1.0.0" // { 9893 dependencies = [ 9894 sources."cross-spawn-6.0.5" ··· 9932 }) 9933 sources."extsprintf-1.3.0" 9934 sources."fast-deep-equal-3.1.3" 9935 + sources."fast-glob-3.2.5" 9936 sources."fast-json-stable-stringify-2.1.0" 9937 sources."fast-levenshtein-2.0.6" 9938 + sources."fastq-1.11.0" 9939 sources."fb-watchman-2.0.1" 9940 + sources."file-entry-cache-6.0.1" 9941 sources."fill-range-7.0.1" 9942 sources."find-up-4.1.0" 9943 + sources."flat-cache-3.0.4" 9944 + sources."flatted-3.1.1" 9945 + sources."follow-redirects-1.13.3" 9946 sources."for-in-1.0.2" 9947 sources."forever-agent-0.6.1" 9948 sources."form-data-2.3.3" 9949 sources."fragment-cache-0.2.1" 9950 sources."fs-constants-1.0.0" 9951 sources."fs.realpath-1.0.0" 9952 + sources."fsevents-2.3.2" 9953 sources."function-bind-1.1.1" 9954 sources."functional-red-black-tree-1.0.1" 9955 sources."gensync-1.0.0-beta.2" ··· 9959 sources."get-value-2.0.6" 9960 sources."getpass-0.1.7" 9961 sources."glob-7.1.6" 9962 + sources."glob-parent-5.1.2" 9963 + (sources."globals-13.7.0" // { 9964 + dependencies = [ 9965 + sources."type-fest-0.20.2" 9966 + ]; 9967 + }) 9968 + (sources."globby-11.0.3" // { 9969 dependencies = [ 9970 sources."ignore-5.1.8" 9971 ]; 9972 }) 9973 + sources."graceful-fs-4.2.6" 9974 sources."growly-1.3.0" 9975 sources."har-schema-2.0.0" 9976 sources."har-validator-5.1.5" ··· 9996 sources."iconv-lite-0.4.24" 9997 sources."ieee754-1.2.1" 9998 sources."ignore-4.0.6" 9999 + sources."import-fresh-3.3.0" 10000 sources."import-local-3.0.2" 10001 sources."imurmurhash-0.1.4" 10002 sources."inflight-1.0.6" 10003 sources."inherits-2.0.4" 10004 (sources."is-accessor-descriptor-0.1.6" // { 10005 dependencies = [ 10006 sources."kind-of-3.2.2" ··· 10023 sources."is-docker-2.1.1" 10024 sources."is-extendable-0.1.1" 10025 sources."is-extglob-2.1.1" 10026 + sources."is-fullwidth-code-point-3.0.0" 10027 sources."is-generator-fn-2.1.0" 10028 sources."is-glob-4.0.1" 10029 sources."is-number-7.0.0" ··· 10099 ]; 10100 }) 10101 sources."js-tokens-4.0.0" 10102 + sources."js-yaml-3.14.1" 10103 sources."jsbn-0.1.1" 10104 + (sources."jsdom-16.5.1" // { 10105 + dependencies = [ 10106 + sources."acorn-8.1.0" 10107 + ]; 10108 + }) 10109 sources."jsesc-2.5.2" 10110 sources."json-parse-even-better-errors-2.3.1" 10111 sources."json-schema-0.2.3" 10112 sources."json-schema-traverse-0.4.1" 10113 sources."json-stable-stringify-without-jsonify-1.0.1" 10114 sources."json-stringify-safe-5.0.1" 10115 + sources."json5-2.2.0" 10116 sources."jsprim-1.4.1" 10117 sources."kind-of-6.0.3" 10118 sources."kleur-3.0.3" ··· 10120 sources."levn-0.4.1" 10121 sources."lines-and-columns-1.1.6" 10122 sources."locate-path-5.0.0" 10123 + sources."lodash-4.17.21" 10124 + sources."lru-cache-6.0.0" 10125 (sources."make-dir-3.1.0" // { 10126 dependencies = [ 10127 sources."semver-6.3.0" ··· 10133 sources."merge-stream-2.0.0" 10134 sources."merge2-1.4.1" 10135 sources."micromatch-4.0.2" 10136 + sources."mime-db-1.46.0" 10137 + sources."mime-types-2.1.29" 10138 sources."mimic-fn-2.1.0" 10139 sources."minimatch-3.0.4" 10140 sources."minimist-1.2.5" ··· 10143 sources."is-extendable-1.0.1" 10144 ]; 10145 }) 10146 sources."ms-2.1.2" 10147 sources."nanomatch-1.2.13" 10148 sources."natural-compare-1.4.0" 10149 sources."nice-try-1.0.5" 10150 sources."node-int64-0.4.0" 10151 sources."node-modules-regexp-1.0.0" 10152 + sources."node-notifier-8.0.2" 10153 + sources."node-releases-1.1.71" 10154 (sources."normalize-package-data-2.5.0" // { 10155 dependencies = [ 10156 sources."semver-5.7.1" ··· 10181 sources."p-locate-4.1.0" 10182 sources."p-try-2.2.0" 10183 sources."parent-module-1.0.1" 10184 + sources."parse-json-5.2.0" 10185 + sources."parse5-6.0.1" 10186 sources."pascalcase-0.1.1" 10187 sources."path-exists-4.0.0" 10188 sources."path-is-absolute-1.0.1" ··· 10208 sources."pump-3.0.0" 10209 sources."punycode-2.1.1" 10210 sources."qs-6.5.2" 10211 + sources."queue-microtask-1.2.3" 10212 + sources."react-is-17.0.2" 10213 (sources."read-pkg-5.2.0" // { 10214 dependencies = [ 10215 sources."type-fest-0.6.0" ··· 10235 ]; 10236 }) 10237 sources."require-directory-2.1.1" 10238 + sources."require-from-string-2.0.2" 10239 sources."require-main-filename-2.0.0" 10240 + sources."resolve-1.20.0" 10241 (sources."resolve-cwd-3.0.0" // { 10242 dependencies = [ 10243 sources."resolve-from-5.0.0" ··· 10247 sources."resolve-url-0.2.1" 10248 sources."ret-0.1.15" 10249 sources."reusify-1.0.4" 10250 + sources."rimraf-3.0.2" 10251 sources."rsvp-4.8.5" 10252 + sources."run-parallel-1.2.0" 10253 sources."safe-buffer-5.2.1" 10254 sources."safe-regex-1.1.0" 10255 sources."safer-buffer-2.1.2" ··· 10277 ]; 10278 }) 10279 sources."saxes-5.0.1" 10280 + sources."semver-7.3.5" 10281 sources."set-blocking-2.0.0" 10282 (sources."set-value-2.0.1" // { 10283 dependencies = [ ··· 10290 sources."signal-exit-3.0.3" 10291 sources."sisteransi-1.0.5" 10292 sources."slash-3.0.0" 10293 + (sources."slice-ansi-4.0.0" // { 10294 + dependencies = [ 10295 + sources."ansi-styles-4.3.0" 10296 + sources."color-convert-2.0.1" 10297 + sources."color-name-1.1.4" 10298 + ]; 10299 + }) 10300 (sources."snapdragon-0.8.2" // { 10301 dependencies = [ 10302 sources."debug-2.6.9" ··· 10322 sources."source-map-0.6.1" 10323 sources."source-map-resolve-0.5.3" 10324 sources."source-map-support-0.5.19" 10325 + sources."source-map-url-0.4.1" 10326 sources."spdx-correct-3.1.1" 10327 sources."spdx-exceptions-2.3.0" 10328 sources."spdx-expression-parse-3.0.1" 10329 + sources."spdx-license-ids-3.0.7" 10330 sources."split-string-3.1.0" 10331 sources."sprintf-js-1.0.3" 10332 sources."sshpk-1.16.1" ··· 10341 ]; 10342 }) 10343 sources."stealthy-require-1.1.1" 10344 + sources."string-length-4.0.2" 10345 + sources."string-width-4.2.2" 10346 sources."string_decoder-1.3.0" 10347 sources."strip-ansi-6.0.0" 10348 sources."strip-bom-4.0.0" ··· 10357 ]; 10358 }) 10359 sources."symbol-tree-3.2.4" 10360 + (sources."table-6.0.7" // { 10361 + dependencies = [ 10362 + sources."ajv-7.2.4" 10363 + sources."json-schema-traverse-1.0.0" 10364 + ]; 10365 + }) 10366 + sources."tar-stream-2.2.0" 10367 sources."terminal-link-2.1.1" 10368 sources."test-exclude-6.0.0" 10369 sources."text-table-0.2.0" ··· 10377 }) 10378 sources."to-regex-3.0.2" 10379 sources."to-regex-range-5.0.1" 10380 + sources."tough-cookie-4.0.0" 10381 sources."tr46-2.0.2" 10382 sources."tslib-1.14.1" 10383 + sources."tsutils-3.21.0" 10384 sources."tunnel-agent-0.6.0" 10385 sources."tweetnacl-0.14.5" 10386 sources."type-check-0.4.0" ··· 10388 sources."type-fest-0.8.1" 10389 sources."typedarray-to-buffer-3.1.5" 10390 sources."union-value-1.0.1" 10391 + sources."universalify-0.1.2" 10392 (sources."unset-value-1.0.0" // { 10393 dependencies = [ 10394 (sources."has-value-0.3.1" // { ··· 10399 sources."has-values-0.1.4" 10400 ]; 10401 }) 10402 + sources."uri-js-4.4.1" 10403 sources."urix-0.1.0" 10404 sources."use-3.1.1" 10405 sources."util-deprecate-1.0.2" 10406 + sources."uuid-8.3.2" 10407 + sources."v8-compile-cache-2.3.0" 10408 + (sources."v8-to-istanbul-7.1.0" // { 10409 dependencies = [ 10410 sources."source-map-0.7.3" 10411 ]; ··· 10418 sources."webidl-conversions-6.1.0" 10419 sources."whatwg-encoding-1.0.5" 10420 sources."whatwg-mimetype-2.3.0" 10421 + sources."whatwg-url-8.5.0" 10422 sources."which-2.0.2" 10423 sources."which-module-2.0.0" 10424 sources."word-wrap-1.2.3" ··· 10427 sources."ansi-styles-4.3.0" 10428 sources."color-convert-2.0.1" 10429 sources."color-name-1.1.4" 10430 ]; 10431 }) 10432 sources."wrappy-1.0.2" 10433 sources."write-file-atomic-3.0.3" 10434 + sources."ws-7.4.4" 10435 sources."xml-name-validator-3.0.0" 10436 sources."xmlchars-2.2.0" 10437 + sources."y18n-4.0.1" 10438 + sources."yallist-4.0.0" 10439 + sources."yargs-15.4.1" 10440 + sources."yargs-parser-18.1.3" 10441 + (sources."zigbee-herdsman-0.13.87" // { 10442 dependencies = [ 10443 + sources."@babel/cli-7.13.0" 10444 + sources."@babel/code-frame-7.12.13" 10445 + sources."@babel/compat-data-7.13.8" 10446 + (sources."@babel/core-7.13.8" // { 10447 + dependencies = [ 10448 + sources."semver-6.3.0" 10449 + ]; 10450 + }) 10451 + sources."@babel/generator-7.13.9" 10452 + sources."@babel/helper-annotate-as-pure-7.12.13" 10453 + sources."@babel/helper-builder-binary-assignment-operator-visitor-7.12.13" 10454 + (sources."@babel/helper-compilation-targets-7.13.8" // { 10455 + dependencies = [ 10456 + sources."semver-6.3.0" 10457 + ]; 10458 + }) 10459 + sources."@babel/helper-create-class-features-plugin-7.13.8" 10460 + sources."@babel/helper-create-regexp-features-plugin-7.12.17" 10461 + (sources."@babel/helper-define-polyfill-provider-0.1.5" // { 10462 + dependencies = [ 10463 + sources."semver-6.3.0" 10464 + ]; 10465 + }) 10466 + sources."@babel/helper-explode-assignable-expression-7.13.0" 10467 + sources."@babel/helper-function-name-7.12.13" 10468 + sources."@babel/helper-get-function-arity-7.12.13" 10469 + sources."@babel/helper-hoist-variables-7.13.0" 10470 + sources."@babel/helper-member-expression-to-functions-7.13.0" 10471 + sources."@babel/helper-module-imports-7.12.13" 10472 + sources."@babel/helper-module-transforms-7.13.0" 10473 + sources."@babel/helper-optimise-call-expression-7.12.13" 10474 + sources."@babel/helper-plugin-utils-7.13.0" 10475 + sources."@babel/helper-remap-async-to-generator-7.13.0" 10476 + sources."@babel/helper-replace-supers-7.13.0" 10477 + sources."@babel/helper-simple-access-7.12.13" 10478 + sources."@babel/helper-skip-transparent-expression-wrappers-7.12.1" 10479 + sources."@babel/helper-split-export-declaration-7.12.13" 10480 + sources."@babel/helper-validator-identifier-7.12.11" 10481 + sources."@babel/helper-validator-option-7.12.17" 10482 + sources."@babel/helper-wrap-function-7.13.0" 10483 + sources."@babel/helpers-7.13.0" 10484 + sources."@babel/highlight-7.13.8" 10485 + sources."@babel/parser-7.13.9" 10486 + sources."@babel/plugin-proposal-async-generator-functions-7.13.8" 10487 + sources."@babel/plugin-proposal-class-properties-7.13.0" 10488 + sources."@babel/plugin-proposal-dynamic-import-7.13.8" 10489 + sources."@babel/plugin-proposal-export-namespace-from-7.12.13" 10490 + sources."@babel/plugin-proposal-json-strings-7.13.8" 10491 + sources."@babel/plugin-proposal-logical-assignment-operators-7.13.8" 10492 + sources."@babel/plugin-proposal-nullish-coalescing-operator-7.13.8" 10493 + sources."@babel/plugin-proposal-numeric-separator-7.12.13" 10494 + sources."@babel/plugin-proposal-object-rest-spread-7.13.8" 10495 + sources."@babel/plugin-proposal-optional-catch-binding-7.13.8" 10496 + sources."@babel/plugin-proposal-optional-chaining-7.13.8" 10497 + sources."@babel/plugin-proposal-private-methods-7.13.0" 10498 + sources."@babel/plugin-proposal-unicode-property-regex-7.12.13" 10499 + sources."@babel/plugin-syntax-async-generators-7.8.4" 10500 + sources."@babel/plugin-syntax-bigint-7.8.3" 10501 + sources."@babel/plugin-syntax-class-properties-7.12.13" 10502 + sources."@babel/plugin-syntax-dynamic-import-7.8.3" 10503 + sources."@babel/plugin-syntax-export-namespace-from-7.8.3" 10504 + sources."@babel/plugin-syntax-import-meta-7.10.4" 10505 + sources."@babel/plugin-syntax-json-strings-7.8.3" 10506 + sources."@babel/plugin-syntax-logical-assignment-operators-7.10.4" 10507 + sources."@babel/plugin-syntax-nullish-coalescing-operator-7.8.3" 10508 + sources."@babel/plugin-syntax-numeric-separator-7.10.4" 10509 + sources."@babel/plugin-syntax-object-rest-spread-7.8.3" 10510 + sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" 10511 + sources."@babel/plugin-syntax-optional-chaining-7.8.3" 10512 + sources."@babel/plugin-syntax-top-level-await-7.12.13" 10513 + sources."@babel/plugin-syntax-typescript-7.12.13" 10514 + sources."@babel/plugin-transform-arrow-functions-7.13.0" 10515 + sources."@babel/plugin-transform-async-to-generator-7.13.0" 10516 + sources."@babel/plugin-transform-block-scoped-functions-7.12.13" 10517 + sources."@babel/plugin-transform-block-scoping-7.12.13" 10518 + sources."@babel/plugin-transform-classes-7.13.0" 10519 + sources."@babel/plugin-transform-computed-properties-7.13.0" 10520 + sources."@babel/plugin-transform-destructuring-7.13.0" 10521 + sources."@babel/plugin-transform-dotall-regex-7.12.13" 10522 + sources."@babel/plugin-transform-duplicate-keys-7.12.13" 10523 + sources."@babel/plugin-transform-exponentiation-operator-7.12.13" 10524 + sources."@babel/plugin-transform-for-of-7.13.0" 10525 + sources."@babel/plugin-transform-function-name-7.12.13" 10526 + sources."@babel/plugin-transform-literals-7.12.13" 10527 + sources."@babel/plugin-transform-member-expression-literals-7.12.13" 10528 + sources."@babel/plugin-transform-modules-amd-7.13.0" 10529 + sources."@babel/plugin-transform-modules-commonjs-7.13.8" 10530 + sources."@babel/plugin-transform-modules-systemjs-7.13.8" 10531 + sources."@babel/plugin-transform-modules-umd-7.13.0" 10532 + sources."@babel/plugin-transform-named-capturing-groups-regex-7.12.13" 10533 + sources."@babel/plugin-transform-new-target-7.12.13" 10534 + sources."@babel/plugin-transform-object-super-7.12.13" 10535 + sources."@babel/plugin-transform-parameters-7.13.0" 10536 + sources."@babel/plugin-transform-property-literals-7.12.13" 10537 + sources."@babel/plugin-transform-regenerator-7.12.13" 10538 + sources."@babel/plugin-transform-reserved-words-7.12.13" 10539 + sources."@babel/plugin-transform-shorthand-properties-7.12.13" 10540 + sources."@babel/plugin-transform-spread-7.13.0" 10541 + sources."@babel/plugin-transform-sticky-regex-7.12.13" 10542 + sources."@babel/plugin-transform-template-literals-7.13.0" 10543 + sources."@babel/plugin-transform-typeof-symbol-7.12.13" 10544 + sources."@babel/plugin-transform-typescript-7.13.0" 10545 + sources."@babel/plugin-transform-unicode-escapes-7.12.13" 10546 + sources."@babel/plugin-transform-unicode-regex-7.12.13" 10547 + (sources."@babel/preset-env-7.13.9" // { 10548 + dependencies = [ 10549 + sources."semver-6.3.0" 10550 + ]; 10551 + }) 10552 + sources."@babel/preset-modules-0.1.4" 10553 + sources."@babel/preset-typescript-7.13.0" 10554 + sources."@babel/runtime-7.13.9" 10555 + sources."@babel/template-7.12.13" 10556 + sources."@babel/traverse-7.13.0" 10557 + sources."@babel/types-7.13.0" 10558 + sources."@bcoe/v8-coverage-0.2.3" 10559 + sources."@cnakazawa/watch-1.0.4" 10560 + (sources."@eslint/eslintrc-0.4.0" // { 10561 + dependencies = [ 10562 + sources."globals-12.4.0" 10563 + sources."ignore-4.0.6" 10564 + sources."strip-json-comments-3.1.1" 10565 + ]; 10566 + }) 10567 + sources."@istanbuljs/load-nyc-config-1.1.0" 10568 + sources."@istanbuljs/schema-0.1.3" 10569 + (sources."@jest/console-26.6.2" // { 10570 + dependencies = [ 10571 + sources."ansi-styles-4.3.0" 10572 + sources."chalk-4.1.0" 10573 + sources."color-convert-2.0.1" 10574 + sources."color-name-1.1.4" 10575 + sources."has-flag-4.0.0" 10576 + sources."slash-3.0.0" 10577 + sources."supports-color-7.2.0" 10578 + ]; 10579 + }) 10580 + (sources."@jest/core-26.6.3" // { 10581 + dependencies = [ 10582 + sources."ansi-regex-5.0.0" 10583 + sources."ansi-styles-4.3.0" 10584 + sources."braces-3.0.2" 10585 + sources."chalk-4.1.0" 10586 + sources."color-convert-2.0.1" 10587 + sources."color-name-1.1.4" 10588 + sources."fill-range-7.0.1" 10589 + sources."has-flag-4.0.0" 10590 + sources."is-number-7.0.0" 10591 + sources."micromatch-4.0.2" 10592 + sources."slash-3.0.0" 10593 + sources."strip-ansi-6.0.0" 10594 + sources."supports-color-7.2.0" 10595 + sources."to-regex-range-5.0.1" 10596 + ]; 10597 + }) 10598 + sources."@jest/environment-26.6.2" 10599 + sources."@jest/fake-timers-26.6.2" 10600 + sources."@jest/globals-26.6.2" 10601 + (sources."@jest/reporters-26.6.2" // { 10602 + dependencies = [ 10603 + sources."ansi-styles-4.3.0" 10604 + sources."chalk-4.1.0" 10605 + sources."color-convert-2.0.1" 10606 + sources."color-name-1.1.4" 10607 + sources."has-flag-4.0.0" 10608 + sources."slash-3.0.0" 10609 + sources."source-map-0.6.1" 10610 + sources."supports-color-7.2.0" 10611 + ]; 10612 + }) 10613 + (sources."@jest/source-map-26.6.2" // { 10614 + dependencies = [ 10615 + sources."source-map-0.6.1" 10616 + ]; 10617 + }) 10618 + sources."@jest/test-result-26.6.2" 10619 + sources."@jest/test-sequencer-26.6.3" 10620 + (sources."@jest/transform-26.6.2" // { 10621 + dependencies = [ 10622 + sources."ansi-styles-4.3.0" 10623 + sources."braces-3.0.2" 10624 + sources."chalk-4.1.0" 10625 + sources."color-convert-2.0.1" 10626 + sources."color-name-1.1.4" 10627 + sources."fill-range-7.0.1" 10628 + sources."has-flag-4.0.0" 10629 + sources."is-number-7.0.0" 10630 + sources."micromatch-4.0.2" 10631 + sources."slash-3.0.0" 10632 + sources."source-map-0.6.1" 10633 + sources."supports-color-7.2.0" 10634 + sources."to-regex-range-5.0.1" 10635 + ]; 10636 + }) 10637 + (sources."@jest/types-26.6.2" // { 10638 + dependencies = [ 10639 + sources."ansi-styles-4.3.0" 10640 + sources."chalk-4.1.0" 10641 + sources."color-convert-2.0.1" 10642 + sources."color-name-1.1.4" 10643 + sources."has-flag-4.0.0" 10644 + sources."supports-color-7.2.0" 10645 + ]; 10646 + }) 10647 + sources."@nicolo-ribaudo/chokidar-2-2.1.8-no-fsevents" 10648 + sources."@nodelib/fs.scandir-2.1.4" 10649 + sources."@nodelib/fs.stat-2.0.4" 10650 + sources."@nodelib/fs.walk-1.2.6" 10651 + sources."@serialport/binding-abstract-9.0.7" 10652 + sources."@serialport/binding-mock-9.0.7" 10653 + sources."@serialport/bindings-9.0.4" 10654 + sources."@serialport/parser-byte-length-9.0.7" 10655 + sources."@serialport/parser-cctalk-9.0.7" 10656 + sources."@serialport/parser-delimiter-9.0.7" 10657 + sources."@serialport/parser-inter-byte-timeout-9.0.7" 10658 + sources."@serialport/parser-readline-9.0.7" 10659 + sources."@serialport/parser-ready-9.0.7" 10660 + sources."@serialport/parser-regex-9.0.7" 10661 + sources."@serialport/stream-9.0.7" 10662 + sources."@sinonjs/commons-1.8.2" 10663 + sources."@sinonjs/fake-timers-6.0.1" 10664 + sources."@types/babel__core-7.1.12" 10665 + sources."@types/babel__generator-7.6.2" 10666 + sources."@types/babel__template-7.4.0" 10667 + sources."@types/babel__traverse-7.11.0" 10668 + sources."@types/debounce-1.2.0" 10669 + sources."@types/debug-4.1.5" 10670 + sources."@types/graceful-fs-4.1.5" 10671 + sources."@types/istanbul-lib-coverage-2.0.3" 10672 + sources."@types/istanbul-lib-report-3.0.0" 10673 + sources."@types/istanbul-reports-3.0.0" 10674 + sources."@types/jest-26.0.20" 10675 + sources."@types/json-schema-7.0.7" 10676 + sources."@types/nedb-1.8.11" 10677 + sources."@types/node-14.14.31" 10678 + sources."@types/normalize-package-data-2.4.0" 10679 + sources."@types/prettier-2.2.2" 10680 + sources."@types/serialport-8.0.1" 10681 + sources."@types/stack-utils-2.0.0" 10682 + sources."@types/yargs-15.0.13" 10683 + sources."@types/yargs-parser-20.2.0" 10684 + (sources."@typescript-eslint/eslint-plugin-4.16.1" // { 10685 + dependencies = [ 10686 + sources."semver-7.3.4" 10687 + ]; 10688 + }) 10689 + sources."@typescript-eslint/experimental-utils-4.16.1" 10690 + sources."@typescript-eslint/parser-4.16.1" 10691 + sources."@typescript-eslint/scope-manager-4.16.1" 10692 + sources."@typescript-eslint/types-4.16.1" 10693 + (sources."@typescript-eslint/typescript-estree-4.16.1" // { 10694 + dependencies = [ 10695 + sources."semver-7.3.4" 10696 + ]; 10697 + }) 10698 + sources."@typescript-eslint/visitor-keys-4.16.1" 10699 + sources."abab-2.0.5" 10700 + sources."acorn-7.4.1" 10701 + sources."acorn-globals-6.0.0" 10702 + sources."acorn-jsx-5.3.1" 10703 + sources."acorn-walk-7.2.0" 10704 + sources."ajv-6.12.6" 10705 + sources."ansi-colors-4.1.1" 10706 + (sources."ansi-escapes-4.3.1" // { 10707 + dependencies = [ 10708 + sources."type-fest-0.11.0" 10709 + ]; 10710 + }) 10711 + sources."ansi-regex-2.1.1" 10712 + sources."ansi-styles-3.2.1" 10713 + (sources."anymatch-2.0.0" // { 10714 + dependencies = [ 10715 + sources."normalize-path-2.1.1" 10716 + ]; 10717 + }) 10718 + sources."aproba-1.2.0" 10719 + sources."are-we-there-yet-1.1.5" 10720 + sources."argparse-1.0.10" 10721 + sources."arr-diff-4.0.0" 10722 + sources."arr-flatten-1.1.0" 10723 + sources."arr-union-3.1.0" 10724 + sources."array-union-2.1.0" 10725 + sources."array-unique-0.3.2" 10726 + sources."asn1-0.2.4" 10727 + sources."assert-plus-1.0.0" 10728 + sources."assign-symbols-1.0.0" 10729 + sources."astral-regex-2.0.0" 10730 + sources."async-each-1.0.3" 10731 + sources."asynckit-0.4.0" 10732 + sources."at-least-node-1.0.0" 10733 + sources."atob-2.1.2" 10734 + sources."aws-sign2-0.7.0" 10735 + sources."aws4-1.11.0" 10736 + (sources."babel-jest-26.6.3" // { 10737 + dependencies = [ 10738 + sources."ansi-styles-4.3.0" 10739 + sources."chalk-4.1.0" 10740 + sources."color-convert-2.0.1" 10741 + sources."color-name-1.1.4" 10742 + sources."has-flag-4.0.0" 10743 + sources."slash-3.0.0" 10744 + sources."supports-color-7.2.0" 10745 + ]; 10746 + }) 10747 + sources."babel-plugin-dynamic-import-node-2.3.3" 10748 + sources."babel-plugin-istanbul-6.0.0" 10749 + sources."babel-plugin-jest-hoist-26.6.2" 10750 + (sources."babel-plugin-polyfill-corejs2-0.1.10" // { 10751 + dependencies = [ 10752 + sources."semver-6.3.0" 10753 + ]; 10754 + }) 10755 + sources."babel-plugin-polyfill-corejs3-0.1.7" 10756 + sources."babel-plugin-polyfill-regenerator-0.1.6" 10757 + sources."babel-preset-current-node-syntax-1.0.1" 10758 + sources."babel-preset-jest-26.6.2" 10759 + sources."balanced-match-1.0.0" 10760 + (sources."base-0.11.2" // { 10761 + dependencies = [ 10762 + sources."define-property-1.0.0" 10763 + sources."is-accessor-descriptor-1.0.0" 10764 + sources."is-data-descriptor-1.0.0" 10765 + sources."is-descriptor-1.0.2" 10766 + sources."is-extendable-1.0.1" 10767 + sources."mixin-deep-1.3.2" 10768 + ]; 10769 + }) 10770 + sources."base64-js-1.5.1" 10771 + sources."bcrypt-pbkdf-1.0.2" 10772 + sources."binary-extensions-1.13.1" 10773 + sources."bindings-1.5.0" 10774 + (sources."bl-4.1.0" // { 10775 + dependencies = [ 10776 + sources."readable-stream-3.6.0" 10777 + ]; 10778 + }) 10779 + sources."brace-expansion-1.1.11" 10780 + (sources."braces-2.3.2" // { 10781 + dependencies = [ 10782 + sources."extend-shallow-2.0.1" 10783 + ]; 10784 + }) 10785 + sources."browser-process-hrtime-1.0.0" 10786 + sources."browserslist-4.16.3" 10787 + sources."bser-2.1.1" 10788 + sources."buffer-5.7.1" 10789 + sources."buffer-from-1.1.1" 10790 + sources."cache-base-1.0.1" 10791 + sources."call-bind-1.0.2" 10792 + sources."callsites-3.1.0" 10793 + sources."camelcase-5.3.1" 10794 + sources."caniuse-lite-1.0.30001194" 10795 + sources."capture-exit-2.0.0" 10796 + sources."caseless-0.12.0" 10797 + sources."chalk-2.4.2" 10798 + sources."char-regex-1.0.2" 10799 + (sources."chokidar-3.5.1" // { 10800 + dependencies = [ 10801 + sources."anymatch-3.1.1" 10802 + sources."binary-extensions-2.2.0" 10803 + sources."braces-3.0.2" 10804 + sources."fill-range-7.0.1" 10805 + sources."glob-parent-5.1.1" 10806 + sources."is-binary-path-2.1.0" 10807 + sources."is-number-7.0.0" 10808 + sources."readdirp-3.5.0" 10809 + sources."to-regex-range-5.0.1" 10810 + ]; 10811 + }) 10812 + sources."chownr-1.1.4" 10813 + sources."ci-info-2.0.0" 10814 + sources."cjs-module-lexer-0.6.0" 10815 + (sources."class-utils-0.3.6" // { 10816 + dependencies = [ 10817 + sources."define-property-0.2.5" 10818 + ]; 10819 + }) 10820 + (sources."cliui-6.0.0" // { 10821 + dependencies = [ 10822 + sources."ansi-regex-5.0.0" 10823 + sources."is-fullwidth-code-point-3.0.0" 10824 + sources."string-width-4.2.2" 10825 + sources."strip-ansi-6.0.0" 10826 + ]; 10827 + }) 10828 + sources."co-4.6.0" 10829 + sources."code-point-at-1.1.0" 10830 + sources."collect-v8-coverage-1.0.1" 10831 + sources."collection-visit-1.0.0" 10832 + sources."color-convert-1.9.3" 10833 + sources."color-name-1.1.3" 10834 + sources."colorette-1.2.2" 10835 + sources."colors-1.4.0" 10836 + sources."combined-stream-1.0.8" 10837 + sources."commander-4.1.1" 10838 + sources."component-emitter-1.3.0" 10839 + sources."concat-map-0.0.1" 10840 + sources."console-control-strings-1.1.0" 10841 + sources."convert-source-map-1.7.0" 10842 + sources."copy-descriptor-0.1.1" 10843 + (sources."core-js-compat-3.9.1" // { 10844 + dependencies = [ 10845 + sources."semver-7.0.0" 10846 + ]; 10847 + }) 10848 + sources."core-util-is-1.0.2" 10849 + sources."cross-spawn-6.0.5" 10850 + sources."cssom-0.4.4" 10851 + (sources."cssstyle-2.3.0" // { 10852 + dependencies = [ 10853 + sources."cssom-0.3.8" 10854 + ]; 10855 + }) 10856 + sources."dashdash-1.14.1" 10857 + sources."data-urls-2.0.0" 10858 + sources."debounce-1.2.0" 10859 + sources."debug-4.3.1" 10860 + sources."decamelize-1.2.0" 10861 + sources."decimal.js-10.2.1" 10862 + sources."decode-uri-component-0.2.0" 10863 + sources."decompress-response-4.2.1" 10864 + sources."deep-extend-0.6.0" 10865 + sources."deep-is-0.1.3" 10866 + sources."deepmerge-4.2.2" 10867 + sources."define-properties-1.1.3" 10868 + (sources."define-property-2.0.2" // { 10869 + dependencies = [ 10870 + sources."is-accessor-descriptor-1.0.0" 10871 + sources."is-data-descriptor-1.0.0" 10872 + sources."is-descriptor-1.0.2" 10873 + ]; 10874 + }) 10875 + sources."delayed-stream-1.0.0" 10876 + sources."delegates-1.0.0" 10877 + sources."detect-libc-1.0.3" 10878 + sources."detect-newline-3.1.0" 10879 + sources."diff-sequences-26.6.2" 10880 + sources."dir-glob-3.0.1" 10881 + sources."doctrine-3.0.0" 10882 + (sources."domexception-2.0.1" // { 10883 + dependencies = [ 10884 + sources."webidl-conversions-5.0.0" 10885 + ]; 10886 + }) 10887 + sources."ecc-jsbn-0.1.2" 10888 + sources."electron-to-chromium-1.3.678" 10889 + sources."emittery-0.7.2" 10890 sources."emoji-regex-8.0.0" 10891 + sources."end-of-stream-1.4.4" 10892 + sources."enquirer-2.3.6" 10893 + sources."error-ex-1.3.2" 10894 + sources."escalade-3.1.1" 10895 + sources."escape-string-regexp-1.0.5" 10896 + (sources."escodegen-1.14.3" // { 10897 + dependencies = [ 10898 + sources."levn-0.3.0" 10899 + sources."optionator-0.8.3" 10900 + sources."prelude-ls-1.1.2" 10901 + sources."source-map-0.6.1" 10902 + sources."type-check-0.3.2" 10903 + ]; 10904 + }) 10905 + (sources."eslint-7.21.0" // { 10906 + dependencies = [ 10907 + sources."@babel/code-frame-7.12.11" 10908 + sources."ansi-regex-5.0.0" 10909 + sources."ansi-styles-4.3.0" 10910 + sources."chalk-4.1.0" 10911 + sources."color-convert-2.0.1" 10912 + sources."color-name-1.1.4" 10913 + sources."cross-spawn-7.0.3" 10914 + sources."glob-parent-5.1.1" 10915 + sources."globals-12.4.0" 10916 + sources."has-flag-4.0.0" 10917 + sources."ignore-4.0.6" 10918 + sources."path-key-3.1.1" 10919 + sources."semver-7.3.4" 10920 + sources."shebang-command-2.0.0" 10921 + sources."shebang-regex-3.0.0" 10922 + sources."strip-ansi-6.0.0" 10923 + sources."strip-json-comments-3.1.1" 10924 + sources."supports-color-7.2.0" 10925 + sources."which-2.0.2" 10926 + ]; 10927 + }) 10928 + sources."eslint-scope-5.1.1" 10929 + (sources."eslint-utils-2.1.0" // { 10930 + dependencies = [ 10931 + sources."eslint-visitor-keys-1.3.0" 10932 + ]; 10933 + }) 10934 + sources."eslint-visitor-keys-2.0.0" 10935 + (sources."espree-7.3.1" // { 10936 + dependencies = [ 10937 + sources."eslint-visitor-keys-1.3.0" 10938 + ]; 10939 + }) 10940 + sources."esprima-4.0.1" 10941 + (sources."esquery-1.4.0" // { 10942 + dependencies = [ 10943 + sources."estraverse-5.2.0" 10944 + ]; 10945 + }) 10946 + (sources."esrecurse-4.3.0" // { 10947 + dependencies = [ 10948 + sources."estraverse-5.2.0" 10949 + ]; 10950 + }) 10951 + sources."estraverse-4.3.0" 10952 + sources."esutils-2.0.3" 10953 + sources."exec-sh-0.3.4" 10954 + sources."execa-1.0.0" 10955 + sources."exit-0.1.2" 10956 + (sources."expand-brackets-2.1.4" // { 10957 + dependencies = [ 10958 + sources."debug-2.6.9" 10959 + sources."define-property-0.2.5" 10960 + sources."extend-shallow-2.0.1" 10961 + sources."ms-2.0.0" 10962 + ]; 10963 + }) 10964 + sources."expand-template-2.0.3" 10965 + (sources."expect-26.6.2" // { 10966 + dependencies = [ 10967 + sources."ansi-styles-4.3.0" 10968 + sources."color-convert-2.0.1" 10969 + sources."color-name-1.1.4" 10970 + ]; 10971 + }) 10972 + sources."extend-3.0.2" 10973 + (sources."extend-shallow-3.0.2" // { 10974 + dependencies = [ 10975 + sources."is-extendable-1.0.1" 10976 + ]; 10977 + }) 10978 + (sources."extglob-2.0.4" // { 10979 + dependencies = [ 10980 + sources."define-property-1.0.0" 10981 + sources."extend-shallow-2.0.1" 10982 + sources."is-accessor-descriptor-1.0.0" 10983 + sources."is-data-descriptor-1.0.0" 10984 + sources."is-descriptor-1.0.2" 10985 + ]; 10986 + }) 10987 + sources."extsprintf-1.3.0" 10988 + sources."fast-deep-equal-3.1.3" 10989 + (sources."fast-glob-3.2.5" // { 10990 + dependencies = [ 10991 + sources."braces-3.0.2" 10992 + sources."fill-range-7.0.1" 10993 + sources."glob-parent-5.1.1" 10994 + sources."is-number-7.0.0" 10995 + sources."micromatch-4.0.2" 10996 + sources."to-regex-range-5.0.1" 10997 + ]; 10998 + }) 10999 + sources."fast-json-stable-stringify-2.1.0" 11000 + sources."fast-levenshtein-2.0.6" 11001 + sources."fastq-1.11.0" 11002 + sources."fb-watchman-2.0.1" 11003 + sources."file-entry-cache-6.0.1" 11004 + sources."file-uri-to-path-1.0.0" 11005 + (sources."fill-range-4.0.0" // { 11006 + dependencies = [ 11007 + sources."extend-shallow-2.0.1" 11008 + ]; 11009 + }) 11010 + sources."find-up-4.1.0" 11011 + sources."flat-cache-3.0.4" 11012 + sources."flatted-3.1.1" 11013 + sources."for-in-1.0.2" 11014 + sources."forever-agent-0.6.1" 11015 + sources."form-data-2.3.3" 11016 + sources."fragment-cache-0.2.1" 11017 + sources."fs-constants-1.0.0" 11018 + sources."fs-extra-9.1.0" 11019 + sources."fs-readdir-recursive-1.1.0" 11020 + sources."fs.realpath-1.0.0" 11021 + sources."fsevents-2.3.2" 11022 + sources."function-bind-1.1.1" 11023 + sources."functional-red-black-tree-1.0.1" 11024 + sources."gauge-2.7.4" 11025 + sources."gensync-1.0.0-beta.2" 11026 + sources."get-caller-file-2.0.5" 11027 + sources."get-intrinsic-1.1.1" 11028 + sources."get-package-type-0.1.0" 11029 + sources."get-stream-4.1.0" 11030 + sources."get-value-2.0.6" 11031 + sources."getpass-0.1.7" 11032 + sources."github-from-package-0.0.0" 11033 + sources."glob-7.1.6" 11034 + (sources."glob-parent-3.1.0" // { 11035 + dependencies = [ 11036 + sources."is-glob-3.1.0" 11037 + ]; 11038 + }) 11039 + sources."globals-11.12.0" 11040 + (sources."globby-11.0.2" // { 11041 + dependencies = [ 11042 + sources."slash-3.0.0" 11043 + ]; 11044 + }) 11045 + sources."graceful-fs-4.2.6" 11046 + sources."growly-1.3.0" 11047 + (sources."handlebars-4.7.7" // { 11048 + dependencies = [ 11049 + sources."source-map-0.6.1" 11050 + ]; 11051 + }) 11052 + sources."har-schema-2.0.0" 11053 + sources."har-validator-5.1.5" 11054 + sources."has-1.0.3" 11055 + sources."has-flag-3.0.0" 11056 + sources."has-symbols-1.0.2" 11057 + sources."has-unicode-2.0.1" 11058 + sources."has-value-1.0.0" 11059 + (sources."has-values-1.0.0" // { 11060 + dependencies = [ 11061 + sources."kind-of-4.0.0" 11062 + ]; 11063 + }) 11064 + sources."hosted-git-info-2.8.8" 11065 + sources."html-encoding-sniffer-2.0.1" 11066 + sources."html-escaper-2.0.2" 11067 + sources."http-signature-1.2.0" 11068 + sources."human-signals-1.1.1" 11069 + sources."iconv-lite-0.4.24" 11070 + sources."ieee754-1.2.1" 11071 + sources."ignore-5.1.8" 11072 + (sources."import-fresh-3.3.0" // { 11073 + dependencies = [ 11074 + sources."resolve-from-4.0.0" 11075 + ]; 11076 + }) 11077 + sources."import-local-3.0.2" 11078 + sources."imurmurhash-0.1.4" 11079 + sources."inflight-1.0.6" 11080 + sources."inherits-2.0.4" 11081 + sources."ini-1.3.8" 11082 + sources."interpret-1.4.0" 11083 + sources."ip-regex-2.1.0" 11084 + (sources."is-accessor-descriptor-0.1.6" // { 11085 + dependencies = [ 11086 + sources."kind-of-3.2.2" 11087 + ]; 11088 + }) 11089 + sources."is-arrayish-0.2.1" 11090 + sources."is-binary-path-1.0.1" 11091 + sources."is-buffer-1.1.6" 11092 + sources."is-ci-2.0.0" 11093 + sources."is-core-module-2.2.0" 11094 + (sources."is-data-descriptor-0.1.4" // { 11095 + dependencies = [ 11096 + sources."kind-of-3.2.2" 11097 + ]; 11098 + }) 11099 + (sources."is-descriptor-0.1.6" // { 11100 + dependencies = [ 11101 + sources."kind-of-5.1.0" 11102 + ]; 11103 + }) 11104 + sources."is-docker-2.1.1" 11105 + sources."is-extendable-0.1.1" 11106 + sources."is-extglob-2.1.1" 11107 + sources."is-fullwidth-code-point-1.0.0" 11108 + sources."is-generator-fn-2.1.0" 11109 + sources."is-glob-4.0.1" 11110 + (sources."is-number-3.0.0" // { 11111 + dependencies = [ 11112 + sources."kind-of-3.2.2" 11113 + ]; 11114 + }) 11115 + sources."is-plain-object-2.0.4" 11116 + sources."is-potential-custom-element-name-1.0.0" 11117 + sources."is-stream-1.1.0" 11118 + sources."is-typedarray-1.0.0" 11119 + sources."is-windows-1.0.2" 11120 + sources."is-wsl-2.2.0" 11121 + sources."isarray-1.0.0" 11122 + sources."isexe-2.0.0" 11123 + sources."isobject-3.0.1" 11124 + sources."isstream-0.1.2" 11125 + sources."istanbul-lib-coverage-3.0.0" 11126 + (sources."istanbul-lib-instrument-4.0.3" // { 11127 + dependencies = [ 11128 + sources."semver-6.3.0" 11129 + ]; 11130 + }) 11131 + (sources."istanbul-lib-report-3.0.0" // { 11132 + dependencies = [ 11133 + sources."has-flag-4.0.0" 11134 + sources."make-dir-3.1.0" 11135 + sources."semver-6.3.0" 11136 + sources."supports-color-7.2.0" 11137 + ]; 11138 + }) 11139 + (sources."istanbul-lib-source-maps-4.0.0" // { 11140 + dependencies = [ 11141 + sources."source-map-0.6.1" 11142 + ]; 11143 + }) 11144 + sources."istanbul-reports-3.0.2" 11145 + (sources."jest-26.6.3" // { 11146 + dependencies = [ 11147 + sources."ansi-styles-4.3.0" 11148 + sources."chalk-4.1.0" 11149 + sources."color-convert-2.0.1" 11150 + sources."color-name-1.1.4" 11151 + sources."has-flag-4.0.0" 11152 + sources."jest-cli-26.6.3" 11153 + sources."supports-color-7.2.0" 11154 + ]; 11155 + }) 11156 + (sources."jest-changed-files-26.6.2" // { 11157 + dependencies = [ 11158 + sources."cross-spawn-7.0.3" 11159 + sources."execa-4.1.0" 11160 + sources."get-stream-5.2.0" 11161 + sources."is-stream-2.0.0" 11162 + sources."npm-run-path-4.0.1" 11163 + sources."path-key-3.1.1" 11164 + sources."shebang-command-2.0.0" 11165 + sources."shebang-regex-3.0.0" 11166 + sources."which-2.0.2" 11167 + ]; 11168 + }) 11169 + (sources."jest-config-26.6.3" // { 11170 + dependencies = [ 11171 + sources."ansi-styles-4.3.0" 11172 + sources."braces-3.0.2" 11173 + sources."chalk-4.1.0" 11174 + sources."color-convert-2.0.1" 11175 + sources."color-name-1.1.4" 11176 + sources."fill-range-7.0.1" 11177 + sources."has-flag-4.0.0" 11178 + sources."is-number-7.0.0" 11179 + sources."micromatch-4.0.2" 11180 + sources."supports-color-7.2.0" 11181 + sources."to-regex-range-5.0.1" 11182 + ]; 11183 + }) 11184 + (sources."jest-diff-26.6.2" // { 11185 + dependencies = [ 11186 + sources."ansi-styles-4.3.0" 11187 + sources."chalk-4.1.0" 11188 + sources."color-convert-2.0.1" 11189 + sources."color-name-1.1.4" 11190 + sources."has-flag-4.0.0" 11191 + sources."supports-color-7.2.0" 11192 + ]; 11193 + }) 11194 + sources."jest-docblock-26.0.0" 11195 + (sources."jest-each-26.6.2" // { 11196 + dependencies = [ 11197 + sources."ansi-styles-4.3.0" 11198 + sources."chalk-4.1.0" 11199 + sources."color-convert-2.0.1" 11200 + sources."color-name-1.1.4" 11201 + sources."has-flag-4.0.0" 11202 + sources."supports-color-7.2.0" 11203 + ]; 11204 + }) 11205 + sources."jest-environment-jsdom-26.6.2" 11206 + sources."jest-environment-node-26.6.2" 11207 + sources."jest-get-type-26.3.0" 11208 + (sources."jest-haste-map-26.6.2" // { 11209 + dependencies = [ 11210 + sources."anymatch-3.1.1" 11211 + sources."braces-3.0.2" 11212 + sources."fill-range-7.0.1" 11213 + sources."is-number-7.0.0" 11214 + sources."micromatch-4.0.2" 11215 + sources."to-regex-range-5.0.1" 11216 + ]; 11217 + }) 11218 + (sources."jest-jasmine2-26.6.3" // { 11219 + dependencies = [ 11220 + sources."ansi-styles-4.3.0" 11221 + sources."chalk-4.1.0" 11222 + sources."color-convert-2.0.1" 11223 + sources."color-name-1.1.4" 11224 + sources."has-flag-4.0.0" 11225 + sources."supports-color-7.2.0" 11226 + ]; 11227 + }) 11228 + sources."jest-leak-detector-26.6.2" 11229 + (sources."jest-matcher-utils-26.6.2" // { 11230 + dependencies = [ 11231 + sources."ansi-styles-4.3.0" 11232 + sources."chalk-4.1.0" 11233 + sources."color-convert-2.0.1" 11234 + sources."color-name-1.1.4" 11235 + sources."has-flag-4.0.0" 11236 + sources."supports-color-7.2.0" 11237 + ]; 11238 + }) 11239 + (sources."jest-message-util-26.6.2" // { 11240 + dependencies = [ 11241 + sources."ansi-styles-4.3.0" 11242 + sources."braces-3.0.2" 11243 + sources."chalk-4.1.0" 11244 + sources."color-convert-2.0.1" 11245 + sources."color-name-1.1.4" 11246 + sources."fill-range-7.0.1" 11247 + sources."has-flag-4.0.0" 11248 + sources."is-number-7.0.0" 11249 + sources."micromatch-4.0.2" 11250 + sources."slash-3.0.0" 11251 + sources."supports-color-7.2.0" 11252 + sources."to-regex-range-5.0.1" 11253 + ]; 11254 + }) 11255 + sources."jest-mock-26.6.2" 11256 + sources."jest-pnp-resolver-1.2.2" 11257 + sources."jest-regex-util-26.0.0" 11258 + (sources."jest-resolve-26.6.2" // { 11259 + dependencies = [ 11260 + sources."ansi-styles-4.3.0" 11261 + sources."chalk-4.1.0" 11262 + sources."color-convert-2.0.1" 11263 + sources."color-name-1.1.4" 11264 + sources."has-flag-4.0.0" 11265 + sources."slash-3.0.0" 11266 + sources."supports-color-7.2.0" 11267 + ]; 11268 + }) 11269 + sources."jest-resolve-dependencies-26.6.3" 11270 + (sources."jest-runner-26.6.3" // { 11271 + dependencies = [ 11272 + sources."ansi-styles-4.3.0" 11273 + sources."chalk-4.1.0" 11274 + sources."color-convert-2.0.1" 11275 + sources."color-name-1.1.4" 11276 + sources."has-flag-4.0.0" 11277 + sources."supports-color-7.2.0" 11278 + ]; 11279 + }) 11280 + (sources."jest-runtime-26.6.3" // { 11281 + dependencies = [ 11282 + sources."ansi-styles-4.3.0" 11283 + sources."chalk-4.1.0" 11284 + sources."color-convert-2.0.1" 11285 + sources."color-name-1.1.4" 11286 + sources."has-flag-4.0.0" 11287 + sources."slash-3.0.0" 11288 + sources."supports-color-7.2.0" 11289 + ]; 11290 + }) 11291 + sources."jest-serializer-26.6.2" 11292 + (sources."jest-snapshot-26.6.2" // { 11293 + dependencies = [ 11294 + sources."ansi-styles-4.3.0" 11295 + sources."chalk-4.1.0" 11296 + sources."color-convert-2.0.1" 11297 + sources."color-name-1.1.4" 11298 + sources."has-flag-4.0.0" 11299 + sources."semver-7.3.4" 11300 + sources."supports-color-7.2.0" 11301 + ]; 11302 + }) 11303 + (sources."jest-util-26.6.2" // { 11304 + dependencies = [ 11305 + sources."ansi-styles-4.3.0" 11306 + sources."braces-3.0.2" 11307 + sources."chalk-4.1.0" 11308 + sources."color-convert-2.0.1" 11309 + sources."color-name-1.1.4" 11310 + sources."fill-range-7.0.1" 11311 + sources."has-flag-4.0.0" 11312 + sources."is-number-7.0.0" 11313 + sources."micromatch-4.0.2" 11314 + sources."supports-color-7.2.0" 11315 + sources."to-regex-range-5.0.1" 11316 + ]; 11317 + }) 11318 + (sources."jest-validate-26.6.2" // { 11319 + dependencies = [ 11320 + sources."ansi-styles-4.3.0" 11321 + sources."camelcase-6.2.0" 11322 + sources."chalk-4.1.0" 11323 + sources."color-convert-2.0.1" 11324 + sources."color-name-1.1.4" 11325 + sources."has-flag-4.0.0" 11326 + sources."supports-color-7.2.0" 11327 + ]; 11328 + }) 11329 + (sources."jest-watcher-26.6.2" // { 11330 + dependencies = [ 11331 + sources."ansi-styles-4.3.0" 11332 + sources."chalk-4.1.0" 11333 + sources."color-convert-2.0.1" 11334 + sources."color-name-1.1.4" 11335 + sources."has-flag-4.0.0" 11336 + sources."supports-color-7.2.0" 11337 + ]; 11338 + }) 11339 + (sources."jest-worker-26.6.2" // { 11340 + dependencies = [ 11341 + sources."has-flag-4.0.0" 11342 + sources."supports-color-7.2.0" 11343 + ]; 11344 + }) 11345 + sources."js-tokens-4.0.0" 11346 + sources."js-yaml-3.14.1" 11347 + sources."jsbn-0.1.1" 11348 + sources."jsdom-16.4.0" 11349 + sources."jsesc-2.5.2" 11350 + sources."json-parse-even-better-errors-2.3.1" 11351 + sources."json-schema-0.2.3" 11352 + sources."json-schema-traverse-0.4.1" 11353 + sources."json-stable-stringify-without-jsonify-1.0.1" 11354 + sources."json-stringify-safe-5.0.1" 11355 + sources."json5-2.2.0" 11356 + sources."jsonfile-6.1.0" 11357 + sources."jsprim-1.4.1" 11358 + sources."kind-of-6.0.3" 11359 + sources."kleur-3.0.3" 11360 + sources."leven-3.1.0" 11361 + sources."levn-0.4.1" 11362 + sources."lines-and-columns-1.1.6" 11363 + sources."locate-path-5.0.0" 11364 + sources."lodash-4.17.21" 11365 + sources."lodash.debounce-4.0.8" 11366 + sources."lodash.sortby-4.7.0" 11367 + sources."lru-cache-6.0.0" 11368 + sources."lunr-2.3.9" 11369 + sources."make-dir-2.1.0" 11370 + sources."makeerror-1.0.11" 11371 + sources."map-cache-0.2.2" 11372 + sources."map-visit-1.0.0" 11373 + sources."marked-2.0.1" 11374 + sources."merge-stream-2.0.0" 11375 + sources."merge2-1.4.1" 11376 + sources."micromatch-3.1.10" 11377 + sources."mime-db-1.46.0" 11378 + sources."mime-types-2.1.29" 11379 + sources."mimic-fn-2.1.0" 11380 + sources."mimic-response-2.1.0" 11381 + sources."minimatch-3.0.4" 11382 + sources."minimist-1.2.5" 11383 + sources."mixin-deep-2.0.1" 11384 + sources."mkdirp-classic-0.5.3" 11385 + sources."ms-2.1.2" 11386 + sources."nan-2.14.2" 11387 + sources."nanomatch-1.2.13" 11388 + sources."napi-build-utils-1.0.2" 11389 + sources."natural-compare-1.4.0" 11390 + sources."neo-async-2.6.2" 11391 + sources."nice-try-1.0.5" 11392 + sources."node-abi-2.20.0" 11393 + sources."node-int64-0.4.0" 11394 + sources."node-modules-regexp-1.0.0" 11395 + (sources."node-notifier-8.0.1" // { 11396 + dependencies = [ 11397 + sources."semver-7.3.4" 11398 + sources."which-2.0.2" 11399 + ]; 11400 + }) 11401 + sources."node-releases-1.1.71" 11402 + sources."noop-logger-0.1.1" 11403 + sources."normalize-package-data-2.5.0" 11404 + sources."normalize-path-3.0.0" 11405 + sources."npm-run-path-2.0.2" 11406 + sources."npmlog-4.1.2" 11407 + sources."number-is-nan-1.0.1" 11408 + sources."nwsapi-2.2.0" 11409 + sources."oauth-sign-0.9.0" 11410 + sources."object-assign-4.1.1" 11411 + (sources."object-copy-0.1.0" // { 11412 + dependencies = [ 11413 + sources."define-property-0.2.5" 11414 + sources."kind-of-3.2.2" 11415 + ]; 11416 + }) 11417 + sources."object-keys-1.1.1" 11418 + sources."object-visit-1.0.1" 11419 + sources."object.assign-4.1.2" 11420 + sources."object.pick-1.3.0" 11421 + sources."once-1.4.0" 11422 + sources."onetime-5.1.2" 11423 + (sources."onigasm-2.2.5" // { 11424 + dependencies = [ 11425 + sources."lru-cache-5.1.1" 11426 + sources."yallist-3.1.1" 11427 + ]; 11428 + }) 11429 + sources."optionator-0.9.1" 11430 + sources."p-each-series-2.2.0" 11431 + sources."p-finally-1.0.0" 11432 + sources."p-limit-2.3.0" 11433 + sources."p-locate-4.1.0" 11434 + sources."p-try-2.2.0" 11435 + sources."parent-module-1.0.1" 11436 + sources."parse-json-5.2.0" 11437 + sources."parse5-5.1.1" 11438 + sources."pascalcase-0.1.1" 11439 + sources."path-dirname-1.0.2" 11440 + sources."path-exists-4.0.0" 11441 + sources."path-is-absolute-1.0.1" 11442 + sources."path-key-2.0.1" 11443 + sources."path-parse-1.0.6" 11444 + sources."path-type-4.0.0" 11445 + sources."performance-now-2.1.0" 11446 + sources."picomatch-2.2.2" 11447 + sources."pify-4.0.1" 11448 + sources."pirates-4.0.1" 11449 + sources."pkg-dir-4.2.0" 11450 + sources."posix-character-classes-0.1.1" 11451 + sources."prebuild-install-6.0.1" 11452 + sources."prelude-ls-1.2.1" 11453 + (sources."pretty-format-26.6.2" // { 11454 + dependencies = [ 11455 + sources."ansi-regex-5.0.0" 11456 + sources."ansi-styles-4.3.0" 11457 + sources."color-convert-2.0.1" 11458 + sources."color-name-1.1.4" 11459 + ]; 11460 + }) 11461 + sources."process-nextick-args-2.0.1" 11462 + sources."progress-2.0.3" 11463 + sources."prompts-2.4.0" 11464 + sources."psl-1.8.0" 11465 + sources."pump-3.0.0" 11466 + sources."punycode-2.1.1" 11467 + sources."qs-6.5.2" 11468 + sources."queue-microtask-1.2.2" 11469 + sources."rc-1.2.8" 11470 + sources."react-is-17.0.1" 11471 + (sources."read-pkg-5.2.0" // { 11472 + dependencies = [ 11473 + sources."type-fest-0.6.0" 11474 + ]; 11475 + }) 11476 + sources."read-pkg-up-7.0.1" 11477 + sources."readable-stream-2.3.7" 11478 + sources."readdirp-2.2.1" 11479 + sources."rechoir-0.6.2" 11480 + sources."regenerate-1.4.2" 11481 + sources."regenerate-unicode-properties-8.2.0" 11482 + sources."regenerator-runtime-0.13.7" 11483 + sources."regenerator-transform-0.14.5" 11484 + sources."regex-not-1.0.2" 11485 + sources."regexpp-3.1.0" 11486 + sources."regexpu-core-4.7.1" 11487 + sources."regjsgen-0.5.2" 11488 + (sources."regjsparser-0.6.7" // { 11489 + dependencies = [ 11490 + sources."jsesc-0.5.0" 11491 + ]; 11492 + }) 11493 + sources."remove-trailing-separator-1.1.0" 11494 + sources."repeat-element-1.1.3" 11495 + sources."repeat-string-1.6.1" 11496 + (sources."request-2.88.2" // { 11497 + dependencies = [ 11498 + sources."tough-cookie-2.5.0" 11499 + sources."uuid-3.4.0" 11500 + ]; 11501 + }) 11502 + sources."request-promise-core-1.1.4" 11503 + (sources."request-promise-native-1.0.9" // { 11504 + dependencies = [ 11505 + sources."tough-cookie-2.5.0" 11506 + ]; 11507 + }) 11508 + sources."require-directory-2.1.1" 11509 + sources."require-from-string-2.0.2" 11510 + sources."require-main-filename-2.0.0" 11511 + sources."resolve-1.20.0" 11512 + sources."resolve-cwd-3.0.0" 11513 + sources."resolve-from-5.0.0" 11514 + sources."resolve-url-0.2.1" 11515 + sources."ret-0.1.15" 11516 + sources."reusify-1.0.4" 11517 + sources."rimraf-3.0.2" 11518 + sources."rsvp-4.8.5" 11519 + sources."run-parallel-1.2.0" 11520 + sources."safe-buffer-5.1.2" 11521 + sources."safe-regex-1.1.0" 11522 + sources."safer-buffer-2.1.2" 11523 + sources."sane-4.1.0" 11524 + sources."saxes-5.0.1" 11525 + sources."semver-5.7.1" 11526 + sources."serialport-9.0.6" 11527 + sources."set-blocking-2.0.0" 11528 + (sources."set-value-2.0.1" // { 11529 + dependencies = [ 11530 + sources."extend-shallow-2.0.1" 11531 + ]; 11532 + }) 11533 + sources."shebang-command-1.2.0" 11534 + sources."shebang-regex-1.0.0" 11535 + sources."shelljs-0.8.4" 11536 + sources."shellwords-0.1.1" 11537 + sources."shiki-0.9.2" 11538 + sources."signal-exit-3.0.3" 11539 + sources."simple-concat-1.0.1" 11540 + sources."simple-get-3.1.0" 11541 + sources."sisteransi-1.0.5" 11542 + sources."slash-2.0.0" 11543 + (sources."slice-ansi-4.0.0" // { 11544 + dependencies = [ 11545 + sources."ansi-styles-4.3.0" 11546 + sources."color-convert-2.0.1" 11547 + sources."color-name-1.1.4" 11548 + sources."is-fullwidth-code-point-3.0.0" 11549 + ]; 11550 + }) 11551 + sources."slip-1.0.2" 11552 + (sources."snapdragon-0.8.2" // { 11553 + dependencies = [ 11554 + sources."debug-2.6.9" 11555 + sources."define-property-0.2.5" 11556 + sources."extend-shallow-2.0.1" 11557 + sources."ms-2.0.0" 11558 + ]; 11559 + }) 11560 + (sources."snapdragon-node-2.1.1" // { 11561 + dependencies = [ 11562 + sources."define-property-1.0.0" 11563 + sources."is-accessor-descriptor-1.0.0" 11564 + sources."is-data-descriptor-1.0.0" 11565 + sources."is-descriptor-1.0.2" 11566 + ]; 11567 + }) 11568 + (sources."snapdragon-util-3.0.1" // { 11569 + dependencies = [ 11570 + sources."kind-of-3.2.2" 11571 + ]; 11572 + }) 11573 + sources."source-map-0.5.7" 11574 + sources."source-map-resolve-0.5.3" 11575 + (sources."source-map-support-0.5.19" // { 11576 + dependencies = [ 11577 + sources."source-map-0.6.1" 11578 + ]; 11579 + }) 11580 + sources."source-map-url-0.4.1" 11581 + sources."spdx-correct-3.1.1" 11582 + sources."spdx-exceptions-2.3.0" 11583 + sources."spdx-expression-parse-3.0.1" 11584 + sources."spdx-license-ids-3.0.7" 11585 + sources."split-string-3.1.0" 11586 + sources."sprintf-js-1.0.3" 11587 + sources."sshpk-1.16.1" 11588 + (sources."stack-utils-2.0.3" // { 11589 + dependencies = [ 11590 + sources."escape-string-regexp-2.0.0" 11591 + ]; 11592 + }) 11593 + (sources."static-extend-0.1.2" // { 11594 + dependencies = [ 11595 + sources."define-property-0.2.5" 11596 + ]; 11597 + }) 11598 + sources."stealthy-require-1.1.1" 11599 + (sources."string-length-4.0.1" // { 11600 + dependencies = [ 11601 + sources."ansi-regex-5.0.0" 11602 + sources."strip-ansi-6.0.0" 11603 + ]; 11604 + }) 11605 + sources."string-width-1.0.2" 11606 + sources."string_decoder-1.1.1" 11607 + sources."strip-ansi-3.0.1" 11608 + sources."strip-bom-4.0.0" 11609 + sources."strip-eof-1.0.0" 11610 + sources."strip-final-newline-2.0.0" 11611 + sources."strip-json-comments-2.0.1" 11612 + sources."supports-color-5.5.0" 11613 + (sources."supports-hyperlinks-2.1.0" // { 11614 + dependencies = [ 11615 + sources."has-flag-4.0.0" 11616 + sources."supports-color-7.2.0" 11617 + ]; 11618 + }) 11619 + sources."symbol-tree-3.2.4" 11620 + (sources."table-6.0.7" // { 11621 + dependencies = [ 11622 + sources."ajv-7.1.1" 11623 + sources."ansi-regex-5.0.0" 11624 + sources."is-fullwidth-code-point-3.0.0" 11625 + sources."json-schema-traverse-1.0.0" 11626 + sources."string-width-4.2.2" 11627 + sources."strip-ansi-6.0.0" 11628 + ]; 11629 + }) 11630 + sources."tar-fs-2.1.1" 11631 + (sources."tar-stream-2.2.0" // { 11632 + dependencies = [ 11633 + sources."readable-stream-3.6.0" 11634 + ]; 11635 + }) 11636 + sources."terminal-link-2.1.1" 11637 + sources."test-exclude-6.0.0" 11638 + sources."text-table-0.2.0" 11639 + sources."throat-5.0.0" 11640 + sources."tmpl-1.0.4" 11641 + sources."to-fast-properties-2.0.0" 11642 + (sources."to-object-path-0.3.0" // { 11643 + dependencies = [ 11644 + sources."kind-of-3.2.2" 11645 + ]; 11646 + }) 11647 + sources."to-regex-3.0.2" 11648 + sources."to-regex-range-2.1.1" 11649 + sources."tough-cookie-3.0.1" 11650 + sources."tr46-2.0.2" 11651 + sources."tslib-1.14.1" 11652 + sources."tsutils-3.20.0" 11653 + sources."tunnel-agent-0.6.0" 11654 + sources."tweetnacl-0.14.5" 11655 + sources."type-check-0.4.0" 11656 + sources."type-detect-4.0.8" 11657 + sources."type-fest-0.8.1" 11658 + sources."typedarray-to-buffer-3.1.5" 11659 + sources."typedoc-0.20.28" 11660 + sources."typedoc-default-themes-0.12.7" 11661 + sources."typedoc-plugin-markdown-3.6.0" 11662 + sources."typedoc-plugin-no-inherit-1.2.0" 11663 + sources."typedoc-plugin-sourcefile-url-1.0.6" 11664 + sources."typescript-4.2.2" 11665 + sources."uglify-js-3.13.0" 11666 + sources."unicode-canonical-property-names-ecmascript-1.0.4" 11667 + sources."unicode-match-property-ecmascript-1.0.4" 11668 + sources."unicode-match-property-value-ecmascript-1.2.0" 11669 + sources."unicode-property-aliases-ecmascript-1.1.0" 11670 + sources."union-value-1.0.1" 11671 + sources."universalify-2.0.0" 11672 + (sources."unset-value-1.0.0" // { 11673 + dependencies = [ 11674 + (sources."has-value-0.3.1" // { 11675 + dependencies = [ 11676 + sources."isobject-2.1.0" 11677 + ]; 11678 + }) 11679 + sources."has-values-0.1.4" 11680 + ]; 11681 + }) 11682 + sources."upath-1.2.0" 11683 + sources."uri-js-4.4.1" 11684 + sources."urix-0.1.0" 11685 + sources."use-3.1.1" 11686 + sources."util-deprecate-1.0.2" 11687 + sources."uuid-8.3.2" 11688 + sources."v8-compile-cache-2.2.0" 11689 + (sources."v8-to-istanbul-7.1.0" // { 11690 + dependencies = [ 11691 + sources."source-map-0.7.3" 11692 + ]; 11693 + }) 11694 + sources."validate-npm-package-license-3.0.4" 11695 + sources."verror-1.10.0" 11696 + sources."vscode-textmate-5.2.0" 11697 + sources."w3c-hr-time-1.0.2" 11698 + sources."w3c-xmlserializer-2.0.0" 11699 + sources."walker-1.0.7" 11700 + sources."webidl-conversions-6.1.0" 11701 + sources."whatwg-encoding-1.0.5" 11702 + sources."whatwg-mimetype-2.3.0" 11703 + sources."whatwg-url-8.4.0" 11704 + sources."which-1.3.1" 11705 + sources."which-module-2.0.0" 11706 + sources."which-pm-runs-1.0.0" 11707 + sources."wide-align-1.1.3" 11708 + sources."word-wrap-1.2.3" 11709 + sources."wordwrap-1.0.0" 11710 + (sources."wrap-ansi-6.2.0" // { 11711 + dependencies = [ 11712 + sources."ansi-regex-5.0.0" 11713 + sources."ansi-styles-4.3.0" 11714 + sources."color-convert-2.0.1" 11715 + sources."color-name-1.1.4" 11716 + sources."is-fullwidth-code-point-3.0.0" 11717 + sources."string-width-4.2.2" 11718 + sources."strip-ansi-6.0.0" 11719 + ]; 11720 + }) 11721 + sources."wrappy-1.0.2" 11722 + sources."write-file-atomic-3.0.3" 11723 + sources."ws-7.4.3" 11724 + sources."xml-name-validator-3.0.0" 11725 + sources."xmlchars-2.2.0" 11726 + sources."y18n-4.0.1" 11727 + sources."yallist-4.0.0" 11728 + (sources."yargs-15.4.1" // { 11729 + dependencies = [ 11730 + sources."ansi-regex-5.0.0" 11731 + sources."is-fullwidth-code-point-3.0.0" 11732 + sources."string-width-4.2.2" 11733 + sources."strip-ansi-6.0.0" 11734 + ]; 11735 + }) 11736 + sources."yargs-parser-18.1.3" 11737 ]; 11738 }) 11739 ]; 11740 }) 11741 + sources."zigbee2mqtt-frontend-0.3.114" 11742 ]; 11743 buildInputs = globalBuildInputs; 11744 meta = { 11745 description = "Zigbee to MQTT bridge using Zigbee-herdsman"; 11746 + homepage = "https://koenkk.github.io/zigbee2mqtt"; 11747 license = "GPL-3.0"; 11748 }; 11749 production = true; ··· 11757 tarball = nodeEnv.buildNodeSourceDist args; 11758 package = nodeEnv.buildNodePackage args; 11759 shell = nodeEnv.buildNodeShell args; 11760 + nodeDependencies = nodeEnv.buildNodeDependencies (lib.overrideExisting args { 11761 + src = stdenv.mkDerivation { 11762 + name = args.name + "-package-json"; 11763 + src = nix-gitignore.gitignoreSourcePure [ 11764 + "*" 11765 + "!package.json" 11766 + "!package-lock.json" 11767 + ] args.src; 11768 + dontBuild = true; 11769 + installPhase = "mkdir -p $out; cp -r ./* $out;"; 11770 + }; 11771 + }); 11772 }
+5 -5
pkgs/servers/zigbee2mqtt/node.nix
··· 1 - # This file has been generated by node2nix 1.8.0. Do not edit! 2 3 {pkgs ? import <nixpkgs> { 4 inherit system; 5 }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-12_x"}: 6 7 let 8 - nodeEnv = import ./node-env.nix { 9 - inherit (pkgs) lib stdenv python2 util-linux runCommand writeTextFile; 10 - inherit nodejs; 11 libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null; 12 }; 13 in 14 import ./node-packages.nix { 15 - inherit (pkgs) fetchurl fetchgit; 16 inherit nodeEnv; 17 }
··· 1 + # This file has been generated by node2nix 1.9.0. Do not edit! 2 3 {pkgs ? import <nixpkgs> { 4 inherit system; 5 }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-12_x"}: 6 7 let 8 + nodeEnv = import ../../development/node-packages/node-env.nix { 9 + inherit (pkgs) stdenv lib python2 runCommand writeTextFile; 10 + inherit pkgs nodejs; 11 libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null; 12 }; 13 in 14 import ./node-packages.nix { 15 + inherit (pkgs) fetchurl nix-gitignore stdenv lib fetchgit; 16 inherit nodeEnv; 17 }
+4 -2
pkgs/tools/backup/duplicity/default.nix
··· 1 { lib, stdenv 2 - , fetchpatch 3 , fetchurl 4 , pythonPackages 5 , librsync ··· 9 , par2cmdline 10 , util-linux 11 , rsync 12 - , backblaze-b2 13 , makeWrapper 14 , gettext 15 }: ··· 34 # to make the testing code stop assuming it is run from the source directory. 35 ./use-installed-scripts-in-test.patch 36 ] ++ lib.optionals stdenv.isLinux [ 37 ./linux-disable-timezone-test.patch 38 ]; 39 40 nativeBuildInputs = [ 41 makeWrapper 42 gettext 43 pythonPackages.wrapPython 44 ]; 45 buildInputs = [ 46 librsync
··· 1 { lib, stdenv 2 , fetchurl 3 , pythonPackages 4 , librsync ··· 8 , par2cmdline 9 , util-linux 10 , rsync 11 , makeWrapper 12 , gettext 13 }: ··· 32 # to make the testing code stop assuming it is run from the source directory. 33 ./use-installed-scripts-in-test.patch 34 ] ++ lib.optionals stdenv.isLinux [ 35 + # Broken on Linux in Nix' build environment 36 ./linux-disable-timezone-test.patch 37 ]; 38 39 + SETUPTOOLS_SCM_PRETEND_VERSION = version; 40 + 41 nativeBuildInputs = [ 42 makeWrapper 43 gettext 44 pythonPackages.wrapPython 45 + pythonPackages.setuptools-scm 46 ]; 47 buildInputs = [ 48 librsync
+3 -3
pkgs/tools/misc/duf/default.nix
··· 2 3 buildGoModule rec { 4 pname = "duf"; 5 - version = "0.6.0"; 6 7 src = fetchFromGitHub { 8 owner = "muesli"; 9 repo = "duf"; 10 rev = "v${version}"; 11 - sha256 = "sha256-Wm3gfir6blQFLLi+2bT5Y/5tf7qUxEddJQ7tCYfBGgM="; 12 }; 13 14 - vendorSha256 = "0icxy6wbqjqawr6i5skwp1z37fq303p8f95crd8lwn6pjjiqzk4i"; 15 16 buildFlagsArray = [ "-ldflags=-s -w -X=main.Version=${version}" ]; 17
··· 2 3 buildGoModule rec { 4 pname = "duf"; 5 + version = "0.6.2"; 6 7 src = fetchFromGitHub { 8 owner = "muesli"; 9 repo = "duf"; 10 rev = "v${version}"; 11 + sha256 = "sha256-aRXm31sGHvHPpqPck5+jplbWT52OzaiQIgU/C7llJs8="; 12 }; 13 14 + vendorSha256 = "153z0ccd556c0wpnxgyjq7m0c4y2z6fxsqq2p77kly9nr8cpzdb9"; 15 16 buildFlagsArray = [ "-ldflags=-s -w -X=main.Version=${version}" ]; 17
+2 -2
pkgs/tools/networking/swagger-codegen/default.nix
··· 1 { lib, stdenv, fetchurl, jre, makeWrapper }: 2 3 stdenv.mkDerivation rec { 4 - version = "2.4.17"; 5 pname = "swagger-codegen"; 6 7 jarfilename = "${pname}-cli-${version}.jar"; ··· 12 13 src = fetchurl { 14 url = "https://repo1.maven.org/maven2/io/swagger/${pname}-cli/${version}/${jarfilename}"; 15 - sha256 = "06xx42ayh4xqpr71lq1hj7kv1v6m9ld9jm1d15fhs935zqckv32a"; 16 }; 17 18 phases = [ "installPhase" ];
··· 1 { lib, stdenv, fetchurl, jre, makeWrapper }: 2 3 stdenv.mkDerivation rec { 4 + version = "2.4.19"; 5 pname = "swagger-codegen"; 6 7 jarfilename = "${pname}-cli-${version}.jar"; ··· 12 13 src = fetchurl { 14 url = "https://repo1.maven.org/maven2/io/swagger/${pname}-cli/${version}/${jarfilename}"; 15 + sha256 = "04wl5k8k1ziqz7k5w0g7i6zdfn41pbh3k0m8vq434k1886inf8yn"; 16 }; 17 18 phases = [ "installPhase" ];
+2 -2
pkgs/tools/text/miller/default.nix
··· 3 stdenv.mkDerivation rec { 4 pname = "miller"; 5 6 - version = "5.10.1"; 7 8 src = fetchFromGitHub { 9 owner = "johnkerl"; 10 repo = "miller"; 11 rev = "v${version}"; 12 - sha256 = "sha256-S3OGc7rirNkP5aSnaASP6n7b7zYHSaDDWRVRWWTM2hc="; 13 }; 14 15 nativeBuildInputs = [ autoreconfHook flex libtool ];
··· 3 stdenv.mkDerivation rec { 4 pname = "miller"; 5 6 + version = "5.10.2"; 7 8 src = fetchFromGitHub { 9 owner = "johnkerl"; 10 repo = "miller"; 11 rev = "v${version}"; 12 + sha256 = "sha256-NI57U3FpUfQ6ouBEYrzzG+9kpL58BD4HoAuRAFJMO9k="; 13 }; 14 15 nativeBuildInputs = [ autoreconfHook flex libtool ];
+1
pkgs/top-level/aliases.nix
··· 584 python2nix = throw "python2nix has been removed as it is outdated. Use e.g. nixpkgs-pytools instead."; # added 2021-03-08 585 qca-qt5 = libsForQt5.qca-qt5; # added 2015-12-19 586 qcsxcad = libsForQt5.qcsxcad; # added 2020-11-05 587 qr-filetransfer = throw ''"qr-filetransfer" has been renamed to "qrcp"''; # added 2020-12-02 588 quake3game = ioquake3; # added 2016-01-14 589 qvim = throw "qvim has been removed."; # added 2020-08-31
··· 584 python2nix = throw "python2nix has been removed as it is outdated. Use e.g. nixpkgs-pytools instead."; # added 2021-03-08 585 qca-qt5 = libsForQt5.qca-qt5; # added 2015-12-19 586 qcsxcad = libsForQt5.qcsxcad; # added 2020-11-05 587 + qmk_firmware = throw "qmk_firmware has been removed because it was broken"; # added 2021-04-02 588 qr-filetransfer = throw ''"qr-filetransfer" has been renamed to "qrcp"''; # added 2020-12-02 589 quake3game = ioquake3; # added 2016-01-14 590 qvim = throw "qvim has been removed."; # added 2020-08-31
+6 -7
pkgs/top-level/all-packages.nix
··· 25508 25509 split2flac = callPackage ../applications/audio/split2flac { }; 25510 25511 spotify-tui = callPackage ../applications/audio/spotify-tui { 25512 inherit (darwin.apple_sdk.frameworks) AppKit Security; 25513 }; ··· 29303 29304 cups-brother-hll2340dw = pkgsi686Linux.callPackage ../misc/cups/drivers/hll2340dw { }; 29305 29306 # this driver ships with pre-compiled 32-bit binary libraries 29307 cnijfilter_2_80 = pkgsi686Linux.callPackage ../misc/cups/drivers/cnijfilter_2_80 { }; 29308 ··· 29539 }; 29540 29541 martyr = callPackage ../development/libraries/martyr { }; 29542 29543 moltengamepad = callPackage ../misc/drivers/moltengamepad { }; 29544 ··· 30616 bcompare = libsForQt5.callPackage ../applications/version-management/bcompare {}; 30617 30618 pentablet-driver = libsForQt5.callPackage ../misc/drivers/pentablet-driver { }; 30619 - 30620 - qmk_firmware = callPackage ../development/misc/qmk_firmware { 30621 - avrgcc = pkgsCross.avr.buildPackages.gcc; 30622 - avrbinutils = pkgsCross.avr.buildPackages.binutils; 30623 - gcc-arm-embedded = pkgsCross.arm-embedded.buildPackages.gcc; 30624 - gcc-armhf-embedded = pkgsCross.armhf-embedded.buildPackages.gcc; 30625 - }; 30626 30627 new-session-manager = callPackage ../applications/audio/new-session-manager { }; 30628
··· 25508 25509 split2flac = callPackage ../applications/audio/split2flac { }; 25510 25511 + spotify-qt = libsForQt5.callPackage ../applications/audio/spotify-qt { }; 25512 + 25513 spotify-tui = callPackage ../applications/audio/spotify-tui { 25514 inherit (darwin.apple_sdk.frameworks) AppKit Security; 25515 }; ··· 29305 29306 cups-brother-hll2340dw = pkgsi686Linux.callPackage ../misc/cups/drivers/hll2340dw { }; 29307 29308 + cups-drv-rastertosag-gdi = callPackage ../misc/cups/drivers/cups-drv-rastertosag-gdi { }; 29309 + 29310 # this driver ships with pre-compiled 32-bit binary libraries 29311 cnijfilter_2_80 = pkgsi686Linux.callPackage ../misc/cups/drivers/cnijfilter_2_80 { }; 29312 ··· 29543 }; 29544 29545 martyr = callPackage ../development/libraries/martyr { }; 29546 + 29547 + mas = callPackage ../os-specific/darwin/mas { }; 29548 29549 moltengamepad = callPackage ../misc/drivers/moltengamepad { }; 29550 ··· 30622 bcompare = libsForQt5.callPackage ../applications/version-management/bcompare {}; 30623 30624 pentablet-driver = libsForQt5.callPackage ../misc/drivers/pentablet-driver { }; 30625 30626 new-session-manager = callPackage ../applications/audio/new-session-manager { }; 30627
+2
pkgs/top-level/python-packages.nix
··· 5966 5967 pymeeus = callPackage ../development/python-modules/pymeeus { }; 5968 5969 pymemoize = callPackage ../development/python-modules/pymemoize { }; 5970 5971 pyment = callPackage ../development/python-modules/pyment { };
··· 5966 5967 pymeeus = callPackage ../development/python-modules/pymeeus { }; 5968 5969 + pymemcache = callPackage ../development/python-modules/pymemcache { }; 5970 + 5971 pymemoize = callPackage ../development/python-modules/pymemoize { }; 5972 5973 pyment = callPackage ../development/python-modules/pyment { };