nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
cd071cbd 8fae407b

+371 -5296
+18 -6
maintainers/maintainer-list.nix
··· 3770 3770 githubId = 57923898; 3771 3771 name = "Elyhaka"; 3772 3772 }; 3773 - em0lar = { 3774 - email = "nix@em0lar.dev"; 3775 - github = "em0lar"; 3776 - githubId = 11006031; 3777 - name = "Leo Maroni"; 3778 - }; 3779 3773 emmabastas = { 3780 3774 email = "emma.bastas@protonmail.com"; 3781 3775 matrix = "@emmabastas:matrix.org"; ··· 7282 7288 githubId = 8355305; 7283 7289 name = "leo60228"; 7284 7290 }; 7291 + leona = { 7292 + email = "nix@leona.is"; 7293 + github = "leona-ya"; 7294 + githubId = 11006031; 7295 + name = "Leona Maroni"; 7296 + }; 7285 7297 leonardoce = { 7286 7298 email = "leonardo.cecchi@gmail.com"; 7287 7299 github = "leonardoce"; ··· 10235 10235 githubId = 10473184; 10236 10236 name = "Jia Xiaodong"; 10237 10237 }; 10238 + pogobanane = { 10239 + email = "mail@peter-okelmann.de"; 10240 + github = "pogobanane"; 10241 + githubId = 38314551; 10242 + name = "Peter Okelmann"; 10243 + }; 10238 10244 polarmutex = { 10239 10245 email = "brian@brianryall.xyz"; 10240 10246 github = "polarmutex"; ··· 12011 12005 github = "solson"; 12012 12006 githubId = 26806; 12013 12007 name = "Scott Olson"; 12008 + }; 12009 + somasis = { 12010 + email = "kylie@somas.is"; 12011 + github = "somasis"; 12012 + githubId = 264788; 12013 + name = "Kylie McClain"; 12014 12014 }; 12015 12015 SomeoneSerge = { 12016 12016 email = "sergei.kozlukov@aalto.fi";
+5 -1
nixos/modules/services/continuous-integration/hydra/default.nix
··· 310 310 311 311 mkdir -m 0700 -p ${baseDir}/queue-runner 312 312 mkdir -m 0750 -p ${baseDir}/build-logs 313 - chown hydra-queue-runner:hydra ${baseDir}/queue-runner ${baseDir}/build-logs 313 + mkdir -m 0750 -p ${baseDir}/runcommand-logs 314 + chown hydra-queue-runner.hydra \ 315 + ${baseDir}/queue-runner \ 316 + ${baseDir}/build-logs \ 317 + ${baseDir}/runcommand-logs 314 318 315 319 ${optionalString haveLocalDB '' 316 320 if ! [ -e ${baseDir}/.db-created ]; then
-3
nixos/modules/services/logging/syslog-ng.nix
··· 51 51 extraModulePaths = mkOption { 52 52 type = types.listOf types.str; 53 53 default = []; 54 - example = literalExpression '' 55 - [ "''${pkgs.syslogng_incubator}/lib/syslog-ng" ] 56 - ''; 57 54 description = '' 58 55 A list of paths that should be included in syslog-ng's 59 56 <literal>--module-path</literal> option. They should usually
+13
nixos/release.nix
··· 17 17 # Run the tests for each platform. You can run a test by doing 18 18 # e.g. ‘nix-build -A tests.login.x86_64-linux’, or equivalently, 19 19 # ‘nix-build tests/login.nix -A result’. 20 + # See also nixosTests in pkgs/top-level/all-packages.nix 20 21 allTestsForSystem = system: 21 22 import ./tests/all-tests.nix { 22 23 inherit system; ··· 25 24 callTest = t: { 26 25 ${system} = hydraJob t.test; 27 26 }; 27 + } // { 28 + # for typechecking of the scripts and evaluation of 29 + # the nodes, without running VMs. 30 + allDrivers = 31 + import ./tests/all-tests.nix { 32 + inherit system; 33 + pkgs = import ./.. { inherit system; }; 34 + callTest = t: { 35 + ${system} = hydraJob t.test.driver; 36 + }; 37 + }; 28 38 }; 39 + 29 40 allTests = 30 41 foldAttrs recursiveUpdate {} (map allTestsForSystem supportedSystems); 31 42
+2 -17
nixos/tests/all-tests.nix
··· 27 27 }; 28 28 evalMinimalConfig = module: nixosLib.evalModules { modules = [ module ]; }; 29 29 30 - allDrivers = getDrivers tests; 31 - 32 - getDrivers = ts: 33 - if isDerivation ts 34 - then ts.driver or null 35 - else if isAttrs ts 36 - then recurseIntoAttrs (mapAttrs (k: getDrivers) ts) 37 - else null; 38 - 39 - tests = { 40 - 41 - # for typechecking of the scripts and evaluation of 42 - # the nodes, without running VMs. 43 - inherit allDrivers; 44 - 30 + in { 45 31 _3proxy = handleTest ./3proxy.nix {}; 46 32 acme = handleTest ./acme.nix {}; 47 33 adguardhome = handleTest ./adguardhome.nix {}; ··· 620 634 zookeeper = handleTest ./zookeeper.nix {}; 621 635 zrepl = handleTest ./zrepl.nix {}; 622 636 zsh-history = handleTest ./zsh-history.nix {}; 623 - }; 624 - in tests 637 + }
+1 -1
nixos/tests/radarr.nix
··· 12 12 13 13 testScript = '' 14 14 machine.wait_for_unit("radarr.service") 15 - machine.wait_for_open_port("7878") 15 + machine.wait_for_open_port(7878) 16 16 machine.succeed("curl --fail http://localhost:7878/") 17 17 ''; 18 18 })
+1 -3
nixos/tests/vikunja.nix
··· 1 1 import ./make-test-python.nix ({ pkgs, lib, ... }: { 2 2 name = "vikunja"; 3 3 4 - meta = with lib.maintainers; { 5 - maintainers = [ em0lar ]; 6 - }; 4 + meta.maintainers = with lib.maintainers; [ leona ]; 7 5 8 6 nodes = { 9 7 vikunjaSqlite = { ... }: {
+4 -4
pkgs/applications/audio/amberol/default.nix
··· 19 19 20 20 stdenv.mkDerivation rec { 21 21 pname = "amberol"; 22 - version = "0.6.3"; 22 + version = "0.7.0"; 23 23 24 24 src = fetchFromGitLab { 25 25 domain = "gitlab.gnome.org"; 26 26 owner = "World"; 27 27 repo = pname; 28 28 rev = version; 29 - hash = "sha256-KV3nYJbLaQxpMpC7aCzfpNMe9bYpZKrdoOtYA++eC74="; 29 + hash = "sha256-cBHFyPqhgcFOeYqMhF1aX3XCGAtqEZpI7Mj7b78Etmo="; 30 30 }; 31 31 32 32 cargoDeps = rustPlatform.fetchCargoTarball { 33 33 inherit src; 34 34 name = "${pname}-${version}"; 35 - hash = "sha256-UjHL/5iVht2jPnOiYjoIKWJdvwQQkNuKfF8rpi48j3c="; 35 + hash = "sha256-GaMJsIrTbhI1tmahEMlI1v5hmjw+tFEv9Wdne/kiYIA="; 36 36 }; 37 37 38 38 postPatch = '' ··· 68 68 ]; 69 69 70 70 meta = with lib; { 71 - homepage = "https://gitlab.gnome.org/ebassi/amberol"; 71 + homepage = "https://gitlab.gnome.org/World/amberol"; 72 72 description = "A small and simple sound and music player"; 73 73 maintainers = with maintainers; [ linsui ]; 74 74 license = licenses.gpl3Plus;
+8 -2
pkgs/applications/audio/tauon/default.nix
··· 5 5 , python3Packages 6 6 , ffmpeg 7 7 , flac 8 + , libjxl 8 9 , librsvg 9 10 , gobject-introspection 10 11 , gtk3 ··· 15 14 , mpg123 16 15 , libopenmpt 17 16 , opusfile 17 + , wavpack 18 18 , pango 19 19 , pulseaudio 20 20 , withDiscordRPC ? false ··· 23 21 24 22 stdenv.mkDerivation rec { 25 23 pname = "tauon"; 26 - version = "7.1.3"; 24 + version = "7.2.1"; 27 25 28 26 src = fetchFromGitHub { 29 27 owner = "Taiko2k"; 30 28 repo = "TauonMusicBox"; 31 29 rev = "v${version}"; 32 - sha256 = "sha256-UadE8qsQxRjE+POHLAUY1tRUInNXsMEqTAP02zSDSZ4="; 30 + sha256 = "sha256-wEGdqMKLhKjnxNTgqNQpUpYkMk/FuRAKsWX+P/9nUG4="; 33 31 }; 34 32 35 33 postPatch = '' ··· 72 70 opusfile 73 71 pango 74 72 pulseaudio 73 + wavpack 75 74 ]; 76 75 77 76 pythonPath = with python3Packages; [ ··· 80 77 gst-python 81 78 dbus-python 82 79 isounidecode 80 + libjxl 83 81 musicbrainzngs 84 82 mutagen 83 + natsort 85 84 pillow 86 85 plexapi 87 86 pulsectl 88 87 pycairo 88 + PyChromecast 89 89 pylast 90 90 pygobject3 91 91 pylyrics
-73
pkgs/applications/graphics/vimiv/default.nix
··· 1 - { lib, python3Packages, fetchFromGitHub, imagemagick, librsvg, gtk3, jhead 2 - , gnome 3 - 4 - # Test requirements 5 - , dbus, xvfb-run, xdotool 6 - }: 7 - 8 - python3Packages.buildPythonApplication rec { 9 - pname = "vimiv"; 10 - version = "0.7.3"; 11 - 12 - src = fetchFromGitHub { 13 - owner = "karlch"; 14 - repo = "vimiv"; 15 - rev = "v${version}"; 16 - sha256 = "18dn81n8hcrqhrqfida34qz7a0ar9rz2rrmzsvyp54zc6nyvv1cn"; 17 - }; 18 - 19 - testimages = fetchFromGitHub { 20 - owner = "karlch"; 21 - repo = "vimiv"; 22 - rev = "6f4d1372b27f2065c56eafdb521d230d9bb8f4e2"; 23 - sha256 = "0a3aybzpms0381dz9japhm4c7j5klhmw91prcac6zaww6x34nmxb"; 24 - }; 25 - 26 - postPatch = '' 27 - patchShebangs scripts/install_icons.sh 28 - sed -i -e 's,/usr,,g' -e '/setup\.py/d' Makefile scripts/install_icons.sh 29 - 30 - sed -i \ 31 - -e 's,/etc/vimiv/\(vimivrc\|keys\.conf\),'"$out"'&,g' \ 32 - man/* vimiv/parser.py 33 - 34 - sed -i \ 35 - -e 's!"mogrify"!"${imagemagick}/bin/mogrify"!g' \ 36 - -e '/cmd *=/s!"jhead"!"${jhead}/bin/jhead"!g' \ 37 - vimiv/imageactions.py 38 - ''; 39 - 40 - checkInputs = [ python3Packages.nose dbus.daemon xvfb-run xdotool ]; 41 - buildInputs = [ gnome.adwaita-icon-theme librsvg ]; 42 - propagatedBuildInputs = with python3Packages; [ pillow pygobject3 gtk3 ]; 43 - 44 - makeWrapperArgs = [ 45 - "--prefix GI_TYPELIB_PATH : \"$GI_TYPELIB_PATH\"" 46 - "--suffix XDG_DATA_DIRS : \"$XDG_ICON_DIRS:$out/share\"" 47 - "--set GDK_PIXBUF_MODULE_FILE \"$GDK_PIXBUF_MODULE_FILE\"" 48 - ]; 49 - 50 - postCheck = '' 51 - # Some tests assume that the directory only contains one vimiv directory 52 - rm -rf vimiv.egg-info vimiv.desktop 53 - 54 - # Re-use the wrapper args from the main program 55 - makeWrapper "$SHELL" run-tests $makeWrapperArgs 56 - 57 - cp -Rd --no-preserve=mode "$testimages/testimages" vimiv/testimages 58 - HOME="$(mktemp -d)" PATH="$out/bin:$PATH" \ 59 - xvfb-run -s '-screen 0 800x600x24' dbus-run-session \ 60 - --config-file=${dbus.daemon}/share/dbus-1/session.conf \ 61 - ./run-tests -c 'python tests/main_test.py && nosetests -vx' 62 - ''; 63 - 64 - postInstall = "make DESTDIR=\"$out\" install"; 65 - 66 - meta = { 67 - homepage = "https://github.com/karlch/vimiv"; 68 - description = "An image viewer with Vim-like keybindings"; 69 - license = lib.licenses.mit; 70 - platforms = lib.platforms.linux; 71 - broken = true; 72 - }; 73 - }
+1 -1
pkgs/applications/misc/ArchiSteamFarm/default.nix
··· 41 41 ''; 42 42 43 43 passthru = { 44 - updateScript = ./updater.sh; 44 + updateScript = ./update.sh; 45 45 ui = callPackage ./web-ui { }; 46 46 }; 47 47
+11 -8
pkgs/applications/misc/ArchiSteamFarm/updater.sh pkgs/applications/misc/ArchiSteamFarm/update.sh
··· 1 1 #!/usr/bin/env nix-shell 2 2 #!nix-shell -I nixpkgs=../../../.. -i bash -p curl gnused jq common-updater-scripts nuget-to-nix 3 - set -exo pipefail 3 + set -euox pipefail 4 4 cd "$(dirname "${BASH_SOURCE[0]}")" 5 5 6 6 deps_file="$(realpath ./deps)" ··· 15 15 fi 16 16 fi 17 17 18 + asf_path=$(pwd) 18 19 cd ../../../.. 19 20 20 21 nixpkgs_path=$(pwd) 21 - if [[ "$1" != "--deps-only" ]]; then 22 + if [[ "${1:-}" != "--deps-only" ]]; then 22 23 update-source-version ArchiSteamFarm "$new_version" 23 24 fi 24 25 store_src="$(nix-build -A ArchiSteamFarm.src --no-out-link)" 25 26 platforms="$(nix-instantiate --strict --eval --json -A ArchiSteamFarm.meta.platforms | jq -r .[])" 26 27 src="$(mktemp -d /tmp/ArchiSteamFarm-src.XXX)" 28 + 29 + trap ' 30 + rm -r "$src" 31 + ' EXIT 32 + 27 33 cp -rT "$store_src" "$src" 28 34 chmod -R +w "$src" 29 35 ··· 42 36 nix-shell -I nixpkgs="$nixpkgs_path" -p dotnet-sdk_6 --argstr system $i --run " 43 37 mkdir ./nuget_pkgs-$i 44 38 for project in ArchiSteamFarm/ArchiSteamFarm.csproj ArchiSteamFarm.Tests/ArchiSteamFarm.Tests.csproj; do 45 - dotnet restore $project --packages ./nuget_pkgs-$i 39 + dotnet restore \$project --packages ./nuget_pkgs-$i 46 40 done; 47 41 48 42 nuget-to-nix ./nuget_pkgs-$i > $deps_file-$i.nix" \ 49 43 || echo "Did you set up binformat for $i?"; 50 - 51 44 done; 52 45 53 - trap ' 54 - popd 55 - rm -r "$src" 56 - ' EXIT 46 + cd "$asf_path" 47 + ./web-ui/update.sh
+9 -7
pkgs/applications/misc/ArchiSteamFarm/web-ui/update.sh
··· 1 1 #!/usr/bin/env nix-shell 2 - #! nix-shell -i bash -p nodePackages.node2nix gnused jq curl 2 + #! nix-shell -I nixpkgs=../../../.. -i bash -p nodePackages.node2nix gnused jq curl 3 + set -eoux pipefail 3 4 5 + pushd ../../../.. 4 6 version=$(nix-instantiate --strict --eval -A ArchiSteamFarm.version | jq -r) 5 - ui=$(curl ${GITHUB_TOKEN:+" -u \":$GITHUB_TOKEN\""} https://api.github.com/repos/JustArchiNET/ArchiSteamFarm/contents/ASF-ui?ref=${version} | jq -r .sha) 7 + popd 8 + pushd "$(dirname "$0")" 9 + ui=$(curl ${GITHUB_TOKEN:+" -u \":$GITHUB_TOKEN\""} "https://api.github.com/repos/JustArchiNET/ArchiSteamFarm/contents/ASF-ui?ref=$version" | jq -r .sha) 6 10 7 - pushd $(dirname "$0") 8 - 9 - curl https://raw.githubusercontent.com/JustArchiNET/ASF-ui/${ui}/package-lock.json -o package-lock.json 10 - curl https://raw.githubusercontent.com/JustArchiNET/ASF-ui/${ui}/package.json -o package.json 11 + curl "https://raw.githubusercontent.com/JustArchiNET/ASF-ui/$ui/package-lock.json" -o package-lock.json 12 + curl "https://raw.githubusercontent.com/JustArchiNET/ASF-ui/$ui/package.json" -o package.json 11 13 12 14 # update-source-version doesn't work for some reason 13 15 sed -i "s/rev\\s*=\\s*.*/rev = \"$ui\";/" default.nix 14 - sed -i "s/sha256\\s*=\\s*.*/sha256 = \"$(nix-prefetch-url --unpack https://github.com/JustArchiNET/ASF-ui/archive/$ui.tar.gz)\";/" default.nix 16 + sed -i "s/sha256\\s*=\\s*.*/sha256 = \"$(nix-prefetch-url --unpack "https://github.com/JustArchiNET/ASF-ui/archive/$ui.tar.gz")\";/" default.nix 15 17 16 18 node2nix \ 17 19 --nodejs-14 \
+13 -16
pkgs/applications/misc/cubiomes-viewer/default.nix
··· 3 3 , fetchFromGitHub 4 4 , qtbase 5 5 , qmake 6 + , qttools 6 7 , wrapQtAppsHook 7 - , copyDesktopItems 8 - , makeDesktopItem 9 8 }: 10 9 11 10 stdenv.mkDerivation rec { 12 11 pname = "cubiomes-viewer"; 13 - version = "2.1.1"; 12 + version = "2.2.2"; 14 13 15 14 src = fetchFromGitHub { 16 15 owner = "Cubitect"; 17 16 repo = pname; 18 17 rev = version; 19 - sha256 = "sha256-cIA6W82XEeW0k9WNygZ/KVFZE31QThpkV4OazVEvmtw="; 18 + sha256 = "sha256-jwYmgA2JtWpEbuuFPwGdKKaSZ2uAs3t7CCCeu6eD9nI="; 20 19 fetchSubmodules = true; 21 20 }; 21 + 22 + postPatch = '' 23 + substituteInPlace cubiomes-viewer.pro \ 24 + --replace '$$[QT_INSTALL_BINS]/lupdate' lupdate \ 25 + --replace '$$[QT_INSTALL_BINS]/lrelease' lrelease 26 + ''; 22 27 23 28 buildInputs = [ 24 29 qtbase ··· 31 26 32 27 nativeBuildInputs = [ 33 28 qmake 29 + qttools 34 30 wrapQtAppsHook 35 - copyDesktopItems 36 31 ]; 37 - 38 - desktopItems = [ (makeDesktopItem { 39 - name = pname; 40 - desktopName = "Cubiomes Viewer"; 41 - exec = pname; 42 - icon = pname; 43 - categories = [ "Game" ]; 44 - comment = meta.description; 45 - }) ]; 46 32 47 33 preBuild = '' 48 34 # QMAKE_PRE_LINK is not executed (I dont know why) ··· 46 50 mkdir -p $out/bin 47 51 cp cubiomes-viewer $out/bin 48 52 49 - mkdir -p $out/share/pixmaps 50 - cp rc/icons/map.png $out/share/pixmaps/cubiomes-viewer.png 53 + mkdir -p $out/share/{pixmaps,applications} 54 + cp rc/icons/map.png $out/share/pixmaps/com.github.cubitect.cubiomes-viewer.png 55 + cp etc/com.github.cubitect.cubiomes-viewer.desktop $out/share/applications 51 56 52 57 runHook postInstall 53 58 '';
-19
pkgs/applications/misc/toggldesktop/TogglDesktop.pro
··· 1 - QT += core network widgets 2 - 3 - DEFINES += APP_ENVIRONMENT=\\\"production\\\" 4 - DEFINES += APP_VERSION=\\\"@version@\\\" 5 - 6 - TARGET = toggldesktop 7 - TEMPLATE = app 8 - 9 - SOURCES += *.cpp 10 - HEADERS += *.h 11 - FORMS += *.ui 12 - RESOURCES += *.qrc 13 - 14 - target.path = $$PREFIX 15 - 16 - INSTALLS += target 17 - 18 - CONFIG += link_pkgconfig 19 - PKGCONFIG += bugsnag-qt qxtglobalshortcut qt-oauth-lib toggl x11 xscrnsaver
-157
pkgs/applications/misc/toggldesktop/default.nix
··· 1 - { mkDerivation, lib, fetchFromGitHub, buildEnv, makeDesktopItem, runCommand, writeText, pkg-config 2 - , cmake, qmake, cacert, jsoncpp, libX11, libXScrnSaver, lua, openssl, poco 3 - , qtbase, qtwebengine, qtx11extras, sqlite }: 4 - 5 - let 6 - name = "toggldesktop-${version}"; 7 - version = "7.4.231"; 8 - 9 - src = fetchFromGitHub { 10 - owner = "toggl"; 11 - repo = "toggldesktop"; 12 - rev = "v${version}"; 13 - sha256 = "sha256-YaeeUlwz42i1ik5nUKSIy0IBrvu1moi95dBK2lKfGAY="; 14 - }; 15 - 16 - bugsnag-qt = mkDerivation rec { 17 - pname = "bugsnag-qt"; 18 - version = "20180522.005732"; 19 - 20 - src = fetchFromGitHub { 21 - owner = "alpakido"; 22 - repo = "bugsnag-qt"; 23 - rev = version; 24 - sha256 = "sha256-2L7pxdQOniwrp1Kgq3Q8BFbjb2yGtGoKUiQC+B6tRgs="; 25 - }; 26 - 27 - nativeBuildInputs = [ qmake ]; 28 - buildInputs = [ qtbase ]; 29 - }; 30 - 31 - qxtglobalshortcut = mkDerivation rec { 32 - pname = "qxtglobalshortcut"; 33 - version = "f584471dada2099ba06c574bdfdd8b078c2e3550"; 34 - 35 - src = fetchFromGitHub { 36 - owner = "hluk"; 37 - repo = "qxtglobalshortcut"; 38 - rev = version; 39 - sha256 = "sha256-gb94rqK8j1mbD4YSXdOaxCdczZJFC6MU+iBsdf07wcc="; 40 - }; 41 - 42 - nativeBuildInputs = [ cmake ]; 43 - buildInputs = [ qtbase qtx11extras ]; 44 - }; 45 - 46 - qt-oauth-lib = mkDerivation rec { 47 - pname = "qt-oauth-lib"; 48 - version = "20190125.190943"; 49 - 50 - src = fetchFromGitHub { 51 - owner = "alpakido"; 52 - repo = "qt-oauth-lib"; 53 - rev = version; 54 - sha256 = "sha256-MjtNAN4F9JJFxM8MYpCv8tPe26RHtbXdq+lY49p+rn4="; 55 - }; 56 - 57 - nativeBuildInputs = [ qmake ]; 58 - buildInputs = [ qtbase qtwebengine ]; 59 - }; 60 - 61 - poco-pc = writeText "poco.pc" '' 62 - Name: Poco 63 - Description: ${poco.meta.description} 64 - Version: ${poco.version} 65 - Libs: -L${poco}/lib -lPocoDataSQLite -lPocoData -lPocoNet -lPocoNetSSL -lPocoCrypto -lPocoUtil -lPocoXML -lPocoFoundation 66 - Cflags: -I${poco}/include/Poco 67 - ''; 68 - 69 - poco-pc-wrapped = runCommand "poco-pc-wrapped" {} '' 70 - mkdir -p $out/lib/pkgconfig && ln -s ${poco-pc} $_/poco.pc 71 - ''; 72 - 73 - libtoggl = mkDerivation { 74 - name = "libtoggl-${version}"; 75 - inherit src version; 76 - 77 - sourceRoot = "source/src"; 78 - 79 - nativeBuildInputs = [ qmake pkg-config ]; 80 - buildInputs = [ jsoncpp lua openssl poco poco-pc-wrapped sqlite libX11 ]; 81 - 82 - postPatch = '' 83 - cat ${./libtoggl.pro} > libtoggl.pro 84 - rm get_focused_window_{mac,windows}.cc 85 - ''; 86 - }; 87 - 88 - toggldesktop = mkDerivation { 89 - name = "${name}-unwrapped"; 90 - inherit src version; 91 - 92 - sourceRoot = "source/src/ui/linux/TogglDesktop"; 93 - 94 - postPatch = '' 95 - substituteAll ${./TogglDesktop.pro} TogglDesktop.pro 96 - substituteInPlace toggl.cpp \ 97 - --replace ./../../../toggl_api.h toggl_api.h 98 - ''; 99 - 100 - postInstall = '' 101 - ln -s ${cacert}/etc/ssl/certs/ca-bundle.crt $out/cacert.pem 102 - ''; 103 - 104 - nativeBuildInputs = [ qmake pkg-config ]; 105 - 106 - buildInputs = [ 107 - bugsnag-qt 108 - libtoggl 109 - qxtglobalshortcut 110 - qtbase 111 - qtwebengine 112 - qt-oauth-lib 113 - qtx11extras 114 - libX11 115 - libXScrnSaver 116 - ]; 117 - }; 118 - 119 - toggldesktop-icons = mkDerivation { 120 - name = "${name}-icons"; 121 - inherit (toggldesktop) src sourceRoot; 122 - 123 - installPhase = '' 124 - for f in icons/*; do 125 - mkdir -p $out/share/icons/hicolor/$(basename $f)/apps 126 - mv $f/toggldesktop.png $_ 127 - done 128 - ''; 129 - }; 130 - 131 - toggldesktop-wrapped = runCommand "toggldesktop-wrapped" {} '' 132 - mkdir -p $out/bin && ln -s ${toggldesktop}/toggldesktop $_ 133 - ''; 134 - 135 - desktopItem = makeDesktopItem rec { 136 - categories = [ "Utility" ]; 137 - desktopName = "Toggl"; 138 - genericName = desktopName; 139 - name = "toggldesktop"; 140 - exec = "${toggldesktop-wrapped}/bin/toggldesktop"; 141 - icon = "toggldesktop"; 142 - }; 143 - in 144 - 145 - buildEnv { 146 - inherit name; 147 - paths = [ desktopItem toggldesktop-icons toggldesktop-wrapped ]; 148 - 149 - meta = with lib; { 150 - broken = true; # libtoggl is broken 151 - description = "Client for Toggl time tracking service"; 152 - homepage = "https://github.com/toggl/toggldesktop"; 153 - license = licenses.bsd3; 154 - maintainers = with maintainers; [ yana ]; 155 - platforms = platforms.linux; 156 - }; 157 - }
-20
pkgs/applications/misc/toggldesktop/libtoggl.pro
··· 1 - TARGET = toggl 2 - TEMPLATE = lib 3 - 4 - SOURCES += *.cc 5 - HEADERS += *.h 6 - 7 - headers.files = $$HEADERS 8 - headers.path = $$PREFIX/include 9 - target.path = $$PREFIX/lib 10 - 11 - INSTALLS += headers target 12 - 13 - CONFIG += create_prl create_pc link_pkgconfig 14 - PKGCONFIG += jsoncpp openssl lua poco sqlite3 x11 15 - 16 - QMAKE_PKGCONFIG_NAME = $$TARGET 17 - QMAKE_PKGCONFIG_PREFIX = $$PREFIX 18 - QMAKE_PKGCONFIG_LIBDIR = $$target.path 19 - QMAKE_PKGCONFIG_INCDIR = $$headers.path 20 - QMAKE_PKGCONFIG_DESTDIR = pkgconfig
+9
pkgs/applications/networking/cluster/terraform-providers/providers.json
··· 978 978 "vendorSha256": "sha256-MMUit5RxsymBNX9fH8B6D2gJ/k5zaN6FCyP9N/+TV+E=", 979 979 "version": "3.2.0" 980 980 }, 981 + "remote": { 982 + "owner": "tenstad", 983 + "provider-source-address": "registry.terraform.io/tenstad/remote", 984 + "repo": "terraform-provider-remote", 985 + "rev": "v0.0.24", 986 + "sha256": "sha256-ksOp9okCdJXOQOsJrJ6tD+aLpPIuwkIxuIGtQ+d7e4k=", 987 + "vendorSha256": "sha256-AAqilm26uz3Kt/JxwEbi8GULZstIs/6Vc+uShXbsZTs=", 988 + "version": "0.0.24" 989 + }, 981 990 "rundeck": { 982 991 "owner": "rundeck", 983 992 "provider-source-address": "registry.terraform.io/rundeck/rundeck",
-27
pkgs/applications/networking/instant-messengers/telepathy/salut/default.nix
··· 1 - { lib, stdenv, fetchurl, libxslt, glib, libxml2, telepathy-glib, python2, avahi, libsoup 2 - , libuuid, openssl, pcre, sqlite, pkg-config }: 3 - 4 - stdenv.mkDerivation rec { 5 - pname = "telepathy-salut"; 6 - version = "0.8.1"; 7 - 8 - src = fetchurl { 9 - url = "https://telepathy.freedesktop.org/releases/telepathy-salut/telepathy-salut-${version}.tar.gz"; 10 - sha256 = "13k112vrr3zghzr03pnbqc1id65qvpj0sn0virlbf4dmr2511fbh"; 11 - }; 12 - 13 - # pcre needed because https://github.com/NixOS/nixpkgs/pull/15046 14 - buildInputs = [ glib libxml2 telepathy-glib avahi libsoup libuuid openssl 15 - sqlite pcre python2 ]; 16 - 17 - nativeBuildInputs = [ libxslt pkg-config ]; 18 - 19 - configureFlags = [ "--disable-avahi-tests" ]; 20 - 21 - meta = with lib; { 22 - description = "Link-local XMPP connection manager for Telepathy"; 23 - platforms = platforms.gnu ++ platforms.linux; # Random choice 24 - maintainers = [ ]; 25 - broken = true; 26 - }; 27 - }
-34
pkgs/applications/networking/iptraf/default.nix
··· 1 - {lib, stdenv, fetchurl, ncurses}: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "iptraf"; 5 - version = "3.0.1"; 6 - 7 - src = fetchurl { 8 - url = "ftp://iptraf.seul.org/pub/iptraf/iptraf-${version}tar.gz"; 9 - sha256 = "12n059j9iihhpf6spmlaspqzxz3wqan6kkpnhmlj08jdijpnk84m"; 10 - }; 11 - 12 - hardeningDisable = [ "format" ]; 13 - 14 - patchPhase = '' 15 - sed -i -e 's,#include <linux/if_tr.h>,#include <netinet/if_tr.h>,' src/* 16 - ''; 17 - 18 - preConfigure = "cd src"; 19 - 20 - installPhase = '' 21 - mkdir -p $out/bin 22 - cp iptraf $out/bin 23 - ''; 24 - 25 - buildInputs = [ncurses]; 26 - 27 - meta = { 28 - homepage = "http://iptraf.seul.org/"; 29 - license = lib.licenses.gpl2Plus; 30 - description = "Console-based network statistics utility for Linux"; 31 - platforms = lib.platforms.linux; 32 - broken = true; # required isdn headers have been removed from the linux kernel 33 - }; 34 - }
-66
pkgs/applications/networking/syncthing-gtk/default.nix
··· 1 - { lib, fetchFromGitHub, fetchpatch, libnotify, librsvg, killall 2 - , gtk3, libappindicator-gtk3, substituteAll, syncthing, wrapGAppsHook 3 - , gnome, buildPythonApplication, python-dateutil, pyinotify, pygobject3 4 - , bcrypt, gobject-introspection, gsettings-desktop-schemas 5 - , pango, gdk-pixbuf, atk }: 6 - 7 - buildPythonApplication rec { 8 - version = "0.9.4.4"; 9 - pname = "syncthing-gtk"; 10 - 11 - src = fetchFromGitHub { 12 - owner = "syncthing"; 13 - repo = "syncthing-gtk"; 14 - rev = "v${version}"; 15 - sha256 = "0nc0wd7qvyri7841c3dd9in5d7367hys0isyw8znv5fj4c0a6v1f"; 16 - }; 17 - 18 - nativeBuildInputs = [ 19 - wrapGAppsHook 20 - # For setup hook populating GI_TYPELIB_PATH 21 - gobject-introspection 22 - pango gdk-pixbuf atk libnotify 23 - ]; 24 - 25 - buildInputs = [ 26 - gtk3 librsvg libappindicator-gtk3 27 - libnotify gnome.adwaita-icon-theme 28 - # Schemas with proxy configuration 29 - gsettings-desktop-schemas 30 - ]; 31 - 32 - propagatedBuildInputs = [ 33 - python-dateutil pyinotify pygobject3 bcrypt 34 - ]; 35 - 36 - patches = [ 37 - (substituteAll { 38 - src = ./paths.patch; 39 - killall = "${killall}/bin/killall"; 40 - syncthing = "${syncthing}/bin/syncthing"; 41 - }) 42 - ]; 43 - 44 - # repo doesn't have any tests 45 - doCheck = false; 46 - 47 - setupPyBuildFlags = [ "build_py" "--nofinddaemon" "--nostdownloader" ]; 48 - 49 - postPatch = '' 50 - substituteInPlace setup.py --replace "version = get_version()" "version = '${version}'" 51 - substituteInPlace scripts/syncthing-gtk --replace "/usr/share" "$out/share" 52 - substituteInPlace syncthing_gtk/app.py --replace "/usr/share" "$out/share" 53 - substituteInPlace syncthing_gtk/uisettingsdialog.py --replace "/usr/share" "$out/share" 54 - substituteInPlace syncthing_gtk/wizard.py --replace "/usr/share" "$out/share" 55 - substituteInPlace syncthing-gtk.desktop --replace "/usr/bin/syncthing-gtk" "$out/bin/syncthing-gtk" 56 - ''; 57 - 58 - meta = with lib; { 59 - description = "GTK3 & python based GUI for Syncthing"; 60 - homepage = "https://github.com/syncthing/syncthing-gtk"; 61 - license = licenses.gpl2; 62 - broken = true; 63 - maintainers = with maintainers; [ ]; 64 - platforms = syncthing.meta.platforms; 65 - }; 66 - }
-67
pkgs/applications/science/math/scilab/default.nix
··· 1 - {stdenv, fetchurl, lib, gfortran 2 - , ncurses 3 - , withXaw3d ? false 4 - #, withPVMlib ? false 5 - , tcl, tk, withTk ? true 6 - , gtk2, withGtk ? false # working ? 7 - #, withF2c ? false 8 - , ocaml, withOCaml ? true 9 - #, withJava ? false 10 - #, atlasMath, withAtlas ? false 11 - , xlibsWrapper, withX ? true 12 - }: 13 - 14 - stdenv.mkDerivation rec { 15 - version = "4.1.2"; 16 - pname = "scilab"; 17 - src = fetchurl { 18 - url = "https://www.scilab.org/download/${version}/${pname}-${version}-src.tar.gz"; 19 - sha256 = "1adk6jqlj7i3gjklvlf1j3il1nb22axnp4rvwl314an62siih0sc"; 20 - }; 21 - 22 - nativeBuildInputs = [ gfortran ]; 23 - 24 - buildInputs = [ ncurses ] 25 - ++ lib.optionals withGtk [ gtk2 ] 26 - ++ lib.optionals withOCaml [ ocaml ] 27 - ++ lib.optional withX xlibsWrapper; 28 - 29 - 30 - /* 31 - --with-atlas-library=DIR Atlas library files are in DIR and we use Atlas 32 - */ 33 - configureFlags = [ 34 - # use gcc C compiler and gnu Fortran compiler (g77 or gfortran) 35 - "--with-gcc" "--with-g77" 36 - # do not compile with PVM library 37 - "--without-pvm" 38 - # compile with GTK 39 - (lib.enableFeature withGtk "gtk") 40 - (lib.enableFeature withGtk "gtk2") 41 - # compile with ocaml 42 - (lib.withFeature withOCaml "ocaml") 43 - # do not compile Java interface 44 - "--without-java" 45 - # use the X Window System 46 - (lib.withFeature withX "x") 47 - # compile with TCL/TK 48 - ] ++ lib.optionals withTk [ 49 - "--with-tk" 50 - "--with-tcl-library=${tcl}/lib" 51 - "--with-tcl-include=${tcl}/include" 52 - "--with-tk-library=${tk}/lib" 53 - "--with-tk-include=${tk}/include" 54 - ] # use Xaw3d widgets given with Scilab 55 - ++ lib.optional (!withXaw3d) "--with-local-xaw" 56 - ; 57 - 58 - makeFlags = [ "all" ]; 59 - 60 - meta = { 61 - homepage = "http://www.scilab.org/"; 62 - description = "Scientific software package for numerical computations (Matlab lookalike)"; 63 - # see http://www.scilab.org/legal 64 - license = "SciLab"; 65 - broken = true; 66 - }; 67 - }
+5 -5
pkgs/applications/version-management/gitlab/data.json
··· 1 1 { 2 - "version": "15.0.1", 3 - "repo_hash": "sha256-GMdR8drmnLR5KH/N0iyLmPi2sggeQX7PT2KP3QO5+/Y=", 2 + "version": "15.0.2", 3 + "repo_hash": "sha256-B5zD8yBY6d+jkIghuxShsR73+2X7Jd9mai1ouraEM44=", 4 4 "yarn_hash": "1a8k3x3b9sirzicqkwmr10m27n593iljfh8awdc9700akbj155lr", 5 5 "owner": "gitlab-org", 6 6 "repo": "gitlab", 7 - "rev": "v15.0.1-ee", 7 + "rev": "v15.0.2-ee", 8 8 "passthru": { 9 - "GITALY_SERVER_VERSION": "15.0.1", 9 + "GITALY_SERVER_VERSION": "15.0.2", 10 10 "GITLAB_PAGES_VERSION": "1.58.0", 11 11 "GITLAB_SHELL_VERSION": "14.3.0", 12 - "GITLAB_WORKHORSE_VERSION": "15.0.1" 12 + "GITLAB_WORKHORSE_VERSION": "15.0.2" 13 13 } 14 14 }
+2 -2
pkgs/applications/version-management/gitlab/gitaly/default.nix
··· 11 11 gemdir = ./.; 12 12 }; 13 13 14 - version = "15.0.1"; 14 + version = "15.0.2"; 15 15 package_version = "v14"; 16 16 gitaly_package = "gitlab.com/gitlab-org/gitaly/${package_version}"; 17 17 in ··· 24 24 owner = "gitlab-org"; 25 25 repo = "gitaly"; 26 26 rev = "v${version}"; 27 - sha256 = "sha256-pNVeXB2A8jYUVir6t8jz6ifBksWucZjUn6RIszXdwJY="; 27 + sha256 = "sha256-jwPXar16FOq0xCg3xUXH72YPmoVa91ae3bgz95ZmYo4="; 28 28 }; 29 29 30 30 vendorSha256 = "sha256-/tHKWo09ZV31TSIqlOk36V3y7gNikziUJHf+nS1gHEw=";
+1 -1
pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix
··· 5 5 buildGoModule rec { 6 6 pname = "gitlab-workhorse"; 7 7 8 - version = "15.0.1"; 8 + version = "15.0.2"; 9 9 10 10 src = fetchFromGitLab { 11 11 owner = data.owner;
-35
pkgs/applications/version-management/sit/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, rustPlatform, cmake, libzip, gnupg, 2 - # Darwin 3 - libiconv, CoreFoundation, Security }: 4 - 5 - rustPlatform.buildRustPackage rec { 6 - pname = "sit"; 7 - version = "0.4.1"; 8 - 9 - src = fetchFromGitHub { 10 - owner = "sit-fyi"; 11 - repo = "sit"; 12 - rev = "v${version}"; 13 - sha256 = "06xkhlfix0h6di6cnvc4blbj3mjy90scbh89dvywbx16wjlc79pf"; 14 - }; 15 - 16 - nativeBuildInputs = [ cmake ]; 17 - buildInputs = [ libzip gnupg ] 18 - ++ (lib.optionals stdenv.isDarwin [ libiconv CoreFoundation Security ]); 19 - 20 - preCheck = '' 21 - export HOME=$(mktemp -d) 22 - ''; 23 - 24 - cargoSha256 = "1ghr01jcq12ddna5qadvjy6zbgqgma5nf0qv06ayxnra37d2l92l"; 25 - 26 - meta = with lib; { 27 - description = "Serverless Information Tracker"; 28 - homepage = "https://sit.fyi/"; 29 - license = with licenses; [ asl20 /* or */ mit ]; 30 - maintainers = with maintainers; [ dywedir yrashk ]; 31 - # Upstream has not had a release in several years, and dependencies no 32 - # longer compile with the latest Rust compiler. 33 - broken = true; 34 - }; 35 - }
+62 -24
pkgs/applications/window-managers/jwm/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook, gettext 2 - , which, xorg, libX11, libXext, libXinerama, libXpm, libXft, libXau, libXdmcp 3 - , libXmu, libpng, libjpeg, expat, xorgproto, librsvg, freetype, fontconfig }: 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , autoconf 5 + , automake 6 + , expat 7 + , fontconfig 8 + , freetype 9 + , gettext 10 + , libX11 11 + , libXau 12 + , libXdmcp 13 + , libXext 14 + , libXft 15 + , libXinerama 16 + , libXmu 17 + , libXpm 18 + , libjpeg 19 + , libpng 20 + , librsvg 21 + , pango 22 + , pkg-config 23 + , which 24 + , xorg 25 + , xorgproto 26 + , gitUpdater 27 + }: 4 28 5 29 stdenv.mkDerivation rec { 6 30 pname = "jwm"; 7 - version = "2.4.1"; 31 + version = "2.4.2"; 8 32 9 33 src = fetchFromGitHub { 10 34 owner = "joewing"; 11 35 repo = "jwm"; 12 36 rev = "v${version}"; 13 - sha256 = "sha256-7CEL2ddlABM7SYjMVUs3pu0O+2cVsz04slsdUIbgZuM="; 37 + sha256 = "sha256-rvuz2Pmon3XBqRMgDwZNrQlWDyLNSK30JPmmQTlN+Rs="; 14 38 }; 15 39 16 - nativeBuildInputs = [ pkg-config gettext which autoreconfHook ]; 17 - 18 - buildInputs = [ 19 - libX11 20 - libXext 21 - libXinerama 22 - libXpm 23 - libXft 24 - xorg.libXrender 25 - libXau 26 - libXdmcp 27 - libXmu 28 - libpng 29 - libjpeg 30 - expat 31 - xorgproto 32 - librsvg 33 - freetype 34 - fontconfig 40 + nativeBuildInputs = [ 41 + autoconf 42 + automake 43 + gettext 44 + pkg-config 45 + which 35 46 ]; 36 47 48 + buildInputs = [ 49 + expat 50 + fontconfig 51 + freetype 52 + libX11 53 + libXau 54 + libXdmcp 55 + libXext 56 + libXft 57 + libXinerama 58 + libXmu 59 + libXpm 60 + libjpeg 61 + libpng 62 + librsvg 63 + pango 64 + xorg.libXrender 65 + xorgproto 66 + ]; 67 + 68 + preConfigure = "NOCONFIGURE=1 ./autogen.sh"; 69 + 37 70 enableParallelBuilding = true; 71 + 72 + passthru.updateScript = gitUpdater { 73 + inherit pname version; 74 + rev-prefix = "v"; 75 + }; 38 76 39 77 meta = { 40 78 homepage = "http://joewing.net/projects/jwm/";
-12
pkgs/data/documentation/rnrs/builder.sh
··· 1 - source "$stdenv/setup" || exit 1 2 - 3 - # XXX: Eventually we could consider building the PDF/PS files as well. 4 - 5 - echo "source is \`$src', report name is \`$reportName'" 6 - 7 - mkdir -p "$out/share/info" && \ 8 - makeinfo -o "$out/share/info/${reportName}.info" "$src" 9 - 10 - # XXX: HTML output is apparently broken. 11 - #mkdir -p "$out/share/doc/${reportName}" && \ 12 - #makeinfo -o "$out/share/doc/${reportName}/html" --html --force "$src"
-30
pkgs/data/documentation/rnrs/common.nix
··· 1 - { fetchurl, stdenv, texinfo, revision, sha256 }: 2 - 3 - stdenv.mkDerivation rec { 4 - name = "r${toString revision}rs"; 5 - src = fetchurl { 6 - url = "http://swiss.csail.mit.edu/ftpdir/scm/${name}.txi"; 7 - inherit sha256; 8 - }; 9 - 10 - buildInputs = [ texinfo ]; 11 - 12 - # Tell the builder about the name of the report. 13 - reportName = name; 14 - 15 - builder = ./builder.sh; 16 - 17 - meta = { 18 - description = "Revised^${toString revision} Report on the Algorithmic Language Scheme"; 19 - 20 - longDescription = '' 21 - This package contains the GNU Info version of the 22 - the ${toString revision}th revision of the Report on the 23 - Algorithmic Language Scheme. 24 - ''; 25 - 26 - homepage = "http://swiss.csail.mit.edu/~jaffer/Scheme"; 27 - 28 - broken = true; 29 - }; 30 - }
-7
pkgs/data/documentation/rnrs/r4rs.nix
··· 1 - { fetchurl, stdenv, texinfo }: 2 - 3 - import ./common.nix { 4 - inherit fetchurl stdenv texinfo; 5 - revision = 4; 6 - sha256 = "02jgy0lvi5ymkdxwjasg50zl03zmyj8sgnfxxnjnbmif72c0k4p8"; 7 - }
-7
pkgs/data/documentation/rnrs/r5rs.nix
··· 1 - { fetchurl, stdenv, texinfo }: 2 - 3 - import ./common.nix { 4 - inherit fetchurl stdenv texinfo; 5 - revision = 5; 6 - sha256 = "1s2wcslwcgb9j89vjn7qs63qlnsv1481jaw1sgg33fgbgk6a8wrk"; 7 - }
+1 -1
pkgs/development/libraries/bwidget/default.nix
··· 22 22 description = "High-level widget set for Tcl/Tk"; 23 23 maintainers = with lib.maintainers; [ agbrooks ]; 24 24 license = lib.licenses.tcltk; 25 - platforms = lib.platforms.linux; 25 + platforms = lib.platforms.unix; 26 26 }; 27 27 }
-27
pkgs/development/libraries/stlport/default.nix
··· 1 - {lib, stdenv, fetchurl}: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "STLport"; 5 - version = "5.2.1"; 6 - 7 - src = fetchurl { 8 - url = "mirror://sourceforge/stlport/${pname}-${version}.tar.bz2"; 9 - sha256 = "1jbgak1m1qk7d4gyn1p2grbws2icsf7grbs3dh44ai9ck1xh0nvm"; 10 - }; 11 - 12 - # fix hardcoded /usr/bin; not recognizing the standard --disable-static flag 13 - configurePhase = '' 14 - echo Preconf: build/Makefiles/gmake/*/sys.mak 15 - for f in build/Makefiles/gmake/*/sys.mak; do 16 - substituteInPlace "$f" --replace /usr/bin/ "" 17 - done 18 - ./configure --prefix=$out 19 - ''; 20 - 21 - meta = { 22 - description = "An implementation of the C++ Standard Library"; 23 - homepage = "https://sourceforge.net/projects/stlport/"; 24 - license = lib.licenses.free; # seems BSD-like 25 - broken = true; # probably glibc-2.20 -related issue 26 - }; 27 - }
+47
pkgs/development/python-modules/aioskybell/default.nix
··· 1 + { lib 2 + , aiofiles 3 + , aiohttp 4 + , aresponses 5 + , buildPythonPackage 6 + , fetchFromGitHub 7 + , pytest-asyncio 8 + , pytestCheckHook 9 + , pythonOlder 10 + }: 11 + 12 + buildPythonPackage rec { 13 + pname = "aioskybell"; 14 + version = "22.6.0"; 15 + format = "setuptools"; 16 + 17 + disabled = pythonOlder "3.9"; 18 + 19 + src = fetchFromGitHub { 20 + owner = "tkdrob"; 21 + repo = pname; 22 + rev = version; 23 + hash = "sha256-2AsEVGZ4cA1GeoxtGFuvjZ05W4FjQ5GFSM8euu9iY4s=="; 24 + }; 25 + 26 + propagatedBuildInputs = [ 27 + aiohttp 28 + aiofiles 29 + ]; 30 + 31 + checkInputs = [ 32 + aresponses 33 + pytest-asyncio 34 + pytestCheckHook 35 + ]; 36 + 37 + pythonImportsCheck = [ 38 + "aioskybell" 39 + ]; 40 + 41 + meta = with lib; { 42 + description = "API client for Skybell doorbells"; 43 + homepage = "https://github.com/tkdrob/aioskybell"; 44 + license = with licenses; [ mit ]; 45 + maintainers = with maintainers; [ fab ]; 46 + }; 47 + }
+1 -1
pkgs/development/python-modules/flask-restful/default.nix
··· 26 26 hash = "sha256-zOxlC4NdSBkhOMhTKa4Dc15s7VjpstnCFG1shMBvpT4="; 27 27 }; 28 28 29 - patches = [ 29 + patches = lib.optionals (lib.versionAtLeast werkzeug.version "2.1.0") [ 30 30 ./werkzeug-2.1.0-compat.patch 31 31 ]; 32 32
+3 -3
pkgs/development/python-modules/holidays/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "holidays"; 14 - version = "0.13"; 14 + version = "0.14.2"; 15 15 format = "setuptools"; 16 16 17 - disabled = pythonOlder "3.6"; 17 + disabled = pythonOlder "3.7"; 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 - sha256 = "sha256-xvfDq4ralIBnAtqTHZTTfNYbz6kstNOdNRtqnFIQZ1w="; 21 + hash = "sha256-DnD9F0gErqHIcLFRMZ+uvNXNsNlVt4IwQ04a/Rd4SY4="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+7 -7
pkgs/development/python-modules/omnilogic/default.nix
··· 2 2 , aiohttp 3 3 , xmltodict 4 4 , buildPythonPackage 5 + , pythonOlder 5 6 , fetchFromGitHub 6 7 }: 7 8 8 9 buildPythonPackage rec { 9 10 pname = "omnilogic"; 10 - version = "0.4.5"; 11 + version = "0.4.6"; 12 + 13 + disabled = pythonOlder "3.4"; 14 + 15 + format = "setuptools"; 11 16 12 17 src = fetchFromGitHub { 13 18 owner = "djtimca"; 14 19 repo = "omnilogic-api"; 15 20 rev = version; 16 - sha256 = "081awb0fl40b5ighc9yxfq1xkgxz7l5dvz5544hx965q2r20wvsg"; 21 + hash = "sha256-XyAniuUr/Kt8VfBtovD4kKLG+ehOqE26egEG7j8q9LY="; 17 22 }; 18 23 19 24 propagatedBuildInputs = [ 20 25 aiohttp 21 26 xmltodict 22 27 ]; 23 - 24 - postPatch = '' 25 - # Is not used but still present in setup.py 26 - substituteInPlace setup.py --replace "'config'," "" 27 - ''; 28 28 29 29 # Project has no tests 30 30 doCheck = false;
+2 -2
pkgs/development/python-modules/pynx584/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "pynx584"; 16 - version = "0.7"; 16 + version = "0.8"; 17 17 disabled = pythonOlder "3.6"; 18 18 19 19 ··· 21 21 owner = "kk7ds"; 22 22 repo = pname; 23 23 rev = version; 24 - sha256 = "sha256-44JFq19fpJmpZzLeVcBILs8c9bOfWyMrb2jA4Yx8+Co="; 24 + sha256 = "sha256-aTwAQnz3my58MgXNe61lStLth6PZXLVLLDI2HUJiNm8="; 25 25 }; 26 26 27 27 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pywemo/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "pywemo"; 16 - version = "0.8.1"; 16 + version = "0.9.0"; 17 17 format = "pyproject"; 18 18 19 19 disabled = pythonOlder "3.7"; ··· 22 22 owner = pname; 23 23 repo = pname; 24 24 rev = "refs/tags/${version}"; 25 - hash = "sha256-kkZmn+rGRZGh9WmrHAmpqxTjw6MyCSWCeesJ0JGarKM="; 25 + hash = "sha256-x4wIn+X70z5cCIhOfpQCj7qy0kEagnMcscxUls1697o="; 26 26 }; 27 27 28 28 nativeBuildInputs = [
+1 -1
pkgs/development/python-modules/safety/default.nix
··· 14 14 pname = "safety"; 15 15 version = "1.10.3"; 16 16 17 - diabled = pythonOlder "3.5"; 17 + disabled = pythonOlder "3.5"; 18 18 19 19 format = "setuptools"; 20 20
+2 -2
pkgs/development/python-modules/wallbox/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "wallbox"; 12 - version = "0.4.8"; 12 + version = "0.4.9"; 13 13 14 14 disabled = pythonOlder "3.7"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - sha256 = "f8965b0ae3a873f570986e712a4e667d0b6634c9e3afb51fbd5596856412878c"; 18 + sha256 = "90e664cf7d99eb1baf20a9ff5fd415dfa14ddafabcefd606e15b5bcd25f969e9"; 19 19 }; 20 20 21 21 propagatedBuildInputs = [
-27
pkgs/development/tools/tychus/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, buildGoPackage, CoreFoundation }: 2 - 3 - buildGoPackage rec { 4 - pname = "tychus"; 5 - version = "0.6.3"; 6 - 7 - goPackagePath = "github.com/devlocker/tychus"; 8 - goDeps = ./deps.nix; 9 - subPackages = []; 10 - 11 - src = fetchFromGitHub { 12 - owner = "devlocker"; 13 - repo = "tychus"; 14 - rev = "v${version}"; 15 - sha256 = "02ybxjsfga89gpg0k21zmykhhnpx1vy3ny8fcwj0qsg73i11alvw"; 16 - }; 17 - 18 - buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ CoreFoundation ]; 19 - 20 - tags = [ "release" ]; 21 - 22 - meta = { 23 - description = "Command line utility to live-reload your application"; 24 - homepage = "https://github.com/devlocker/tychus"; 25 - license = lib.licenses.mit; 26 - }; 27 - }
-30
pkgs/development/tools/tychus/deps.nix
··· 1 - # file generated from Gopkg.lock using dep2nix (https://github.com/nixcloud/dep2nix) 2 - [ 3 - { 4 - goPackagePath = "github.com/inconshreveable/mousetrap"; 5 - fetch = { 6 - type = "git"; 7 - url = "https://github.com/inconshreveable/mousetrap"; 8 - rev = "76626ae9c91c4f2a10f34cad8ce83ea42c93bb75"; 9 - sha256 = "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152"; 10 - }; 11 - } 12 - { 13 - goPackagePath = "github.com/spf13/cobra"; 14 - fetch = { 15 - type = "git"; 16 - url = "https://github.com/spf13/cobra"; 17 - rev = "f91529fc609202eededff4de2dc0ba2f662240a3"; 18 - sha256 = "10c3d5dp98rys134dnsl19ldj8bca183z91lj8rkbsy78qzrr9af"; 19 - }; 20 - } 21 - { 22 - goPackagePath = "github.com/spf13/pflag"; 23 - fetch = { 24 - type = "git"; 25 - url = "https://github.com/spf13/pflag"; 26 - rev = "e57e3eeb33f795204c1ca35f56c44f83227c6e66"; 27 - sha256 = "13mhx4i913jil32j295m3a36jzvq1y64xig0naadiz7q9ja011r2"; 28 - }; 29 - } 30 - ]
-22
pkgs/development/tools/ws/default.nix
··· 1 - { lib, buildGoPackage, fetchFromGitHub }: 2 - 3 - buildGoPackage rec { 4 - pname = "ws"; 5 - version = "0.2.1"; 6 - 7 - goPackagePath = "github.com/hashrocket/ws"; 8 - 9 - src = fetchFromGitHub { 10 - owner = "hashrocket"; 11 - repo = "ws"; 12 - rev = "e9404cb37e339333088b36f6a7909ff3be76931d"; 13 - sha256 = "sha256-q6c761Evz7Q6nH1fHgEn2uCFokoN0OzqhyxIFn6mWqQ="; 14 - }; 15 - 16 - meta = with lib; { 17 - description = "websocket command line tool"; 18 - homepage = "https://github.com/hashrocket/ws"; 19 - license = licenses.mit; 20 - platforms = platforms.unix; 21 - }; 22 - }
-74
pkgs/development/web/remarkjs/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, nodejs, pkgs }: 2 - 3 - with lib; 4 - 5 - let 6 - 7 - # highlight.js is a git submodule of remark 8 - highlightjs = fetchFromGitHub { 9 - owner = "isagalaev"; 10 - repo = "highlight.js"; 11 - rev = "10b9500b67983f0a9c42d8ce8bf8e8c469f7078c"; 12 - sha256 = "1yy8by15kfklw8lwh17z1swpj067q0skjjih12yawbryraig41m0"; 13 - }; 14 - 15 - nodePackages = import ./nodepkgs.nix { 16 - inherit pkgs; 17 - inherit (stdenv.hostPlatform) system; 18 - }; 19 - 20 - in 21 - stdenv.mkDerivation rec { 22 - pname = "remarkjs"; 23 - 24 - version = "0.7.0"; 25 - 26 - src = fetchFromGitHub { 27 - owner = "gnab"; 28 - repo = "remark"; 29 - rev = "v${version}"; 30 - sha256 = "sha256-zhHuW4pBqXQEBlSxuyvHKh+ftyIdcqpYgIZZHArUtns="; 31 - }; 32 - 33 - buildInputs = [ nodejs ] ++ (with nodePackages; [ 34 - marked 35 - browserify 36 - uglify-js 37 - less 38 - mocha 39 - #mocha-phantomjs 40 - should 41 - sinon 42 - jshint 43 - shelljs 44 - ]); 45 - 46 - configurePhase = '' 47 - mkdir -p node_modules/.bin 48 - ${concatStrings (map (dep: '' 49 - test -d ${dep}/bin && (for b in $(ls ${dep}/bin); do 50 - ln -sv -t node_modules/.bin ${dep}/bin/$b 51 - done) 52 - '') buildInputs)} 53 - ''; 54 - 55 - buildPhase = '' 56 - substituteInPlace make.js --replace "target.test();" "" 57 - substituteInPlace make.js --replace vendor/highlight.js ${highlightjs} 58 - node make all 59 - ''; 60 - 61 - installPhase = '' 62 - mkdir -p $out/lib 63 - cp -v out/* $out/lib/ 64 - ''; 65 - 66 - meta = { 67 - homepage = "https://remarkjs.com"; 68 - description = "A simple, in-browser, markdown-driven slideshow tool"; 69 - maintainers = [ ]; 70 - platforms = lib.platforms.linux; 71 - license = lib.licenses.mit; 72 - broken = true; 73 - }; 74 - }
-3
pkgs/development/web/remarkjs/generate.sh
··· 1 - #!/bin/sh -e 2 - 3 - node2nix --nodejs-10 -i pkgs.json -c nodepkgs.nix -e ../../node-packages/node-env.nix
-3722
pkgs/development/web/remarkjs/node-packages.nix
··· 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 - "@sinonjs/commons-1.8.2" = { 8 - name = "_at_sinonjs_slash_commons"; 9 - packageName = "@sinonjs/commons"; 10 - version = "1.8.2"; 11 - src = fetchurl { 12 - url = "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.2.tgz"; 13 - sha512 = "sruwd86RJHdsVf/AtBoijDmUqJp3B6hF/DGC23C+JaegnDHaZyewCjoVGTdg3J0uz3Zs7NnIT05OBOmML72lQw=="; 14 - }; 15 - }; 16 - "@sinonjs/fake-timers-6.0.1" = { 17 - name = "_at_sinonjs_slash_fake-timers"; 18 - packageName = "@sinonjs/fake-timers"; 19 - version = "6.0.1"; 20 - src = fetchurl { 21 - url = "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz"; 22 - sha512 = "MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA=="; 23 - }; 24 - }; 25 - "@sinonjs/samsam-5.3.1" = { 26 - name = "_at_sinonjs_slash_samsam"; 27 - packageName = "@sinonjs/samsam"; 28 - version = "5.3.1"; 29 - src = fetchurl { 30 - url = "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-5.3.1.tgz"; 31 - sha512 = "1Hc0b1TtyfBu8ixF/tpfSHTVWKwCBLY4QJbkgnE7HcwyvT2xArDxb4K7dMgqRm3szI+LJbzmW/s4xxEhv6hwDg=="; 32 - }; 33 - }; 34 - "@sinonjs/text-encoding-0.7.1" = { 35 - name = "_at_sinonjs_slash_text-encoding"; 36 - packageName = "@sinonjs/text-encoding"; 37 - version = "0.7.1"; 38 - src = fetchurl { 39 - url = "https://registry.npmjs.org/@sinonjs/text-encoding/-/text-encoding-0.7.1.tgz"; 40 - sha512 = "+iTbntw2IZPb/anVDbypzfQa+ay64MW0Zo8aJ8gZPWMMK6/OubMVb6lUPMagqjOPnmtauXnFCACVl3O7ogjeqQ=="; 41 - }; 42 - }; 43 - "@ungap/promise-all-settled-1.1.2" = { 44 - name = "_at_ungap_slash_promise-all-settled"; 45 - packageName = "@ungap/promise-all-settled"; 46 - version = "1.1.2"; 47 - src = fetchurl { 48 - url = "https://registry.npmjs.org/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz"; 49 - sha512 = "sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q=="; 50 - }; 51 - }; 52 - "JSONStream-1.3.5" = { 53 - name = "JSONStream"; 54 - packageName = "JSONStream"; 55 - version = "1.3.5"; 56 - src = fetchurl { 57 - url = "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz"; 58 - sha512 = "E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ=="; 59 - }; 60 - }; 61 - "abbrev-1.1.1" = { 62 - name = "abbrev"; 63 - packageName = "abbrev"; 64 - version = "1.1.1"; 65 - src = fetchurl { 66 - url = "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz"; 67 - sha512 = "nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="; 68 - }; 69 - }; 70 - "acorn-7.4.1" = { 71 - name = "acorn"; 72 - packageName = "acorn"; 73 - version = "7.4.1"; 74 - src = fetchurl { 75 - url = "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz"; 76 - sha512 = "nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="; 77 - }; 78 - }; 79 - "acorn-node-1.8.2" = { 80 - name = "acorn-node"; 81 - packageName = "acorn-node"; 82 - version = "1.8.2"; 83 - src = fetchurl { 84 - url = "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz"; 85 - sha512 = "8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A=="; 86 - }; 87 - }; 88 - "acorn-walk-7.2.0" = { 89 - name = "acorn-walk"; 90 - packageName = "acorn-walk"; 91 - version = "7.2.0"; 92 - src = fetchurl { 93 - url = "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz"; 94 - sha512 = "OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA=="; 95 - }; 96 - }; 97 - "adm-zip-0.2.1" = { 98 - name = "adm-zip"; 99 - packageName = "adm-zip"; 100 - version = "0.2.1"; 101 - src = fetchurl { 102 - url = "https://registry.npmjs.org/adm-zip/-/adm-zip-0.2.1.tgz"; 103 - sha1 = "e801cedeb5bd9a4e98d699c5c0f4239e2731dcbf"; 104 - }; 105 - }; 106 - "ansi-colors-4.1.1" = { 107 - name = "ansi-colors"; 108 - packageName = "ansi-colors"; 109 - version = "4.1.1"; 110 - src = fetchurl { 111 - url = "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz"; 112 - sha512 = "JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA=="; 113 - }; 114 - }; 115 - "ansi-regex-3.0.0" = { 116 - name = "ansi-regex"; 117 - packageName = "ansi-regex"; 118 - version = "3.0.0"; 119 - src = fetchurl { 120 - url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz"; 121 - sha1 = "ed0317c322064f79466c02966bddb605ab37d998"; 122 - }; 123 - }; 124 - "ansi-regex-4.1.0" = { 125 - name = "ansi-regex"; 126 - packageName = "ansi-regex"; 127 - version = "4.1.0"; 128 - src = fetchurl { 129 - url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz"; 130 - sha512 = "1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="; 131 - }; 132 - }; 133 - "ansi-styles-3.2.1" = { 134 - name = "ansi-styles"; 135 - packageName = "ansi-styles"; 136 - version = "3.2.1"; 137 - src = fetchurl { 138 - url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"; 139 - sha512 = "VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="; 140 - }; 141 - }; 142 - "ansi-styles-4.3.0" = { 143 - name = "ansi-styles"; 144 - packageName = "ansi-styles"; 145 - version = "4.3.0"; 146 - src = fetchurl { 147 - url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"; 148 - sha512 = "zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="; 149 - }; 150 - }; 151 - "anymatch-3.1.1" = { 152 - name = "anymatch"; 153 - packageName = "anymatch"; 154 - version = "3.1.1"; 155 - src = fetchurl { 156 - url = "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz"; 157 - sha512 = "mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg=="; 158 - }; 159 - }; 160 - "argparse-1.0.10" = { 161 - name = "argparse"; 162 - packageName = "argparse"; 163 - version = "1.0.10"; 164 - src = fetchurl { 165 - url = "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz"; 166 - sha512 = "o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg=="; 167 - }; 168 - }; 169 - "array-filter-1.0.0" = { 170 - name = "array-filter"; 171 - packageName = "array-filter"; 172 - version = "1.0.0"; 173 - src = fetchurl { 174 - url = "https://registry.npmjs.org/array-filter/-/array-filter-1.0.0.tgz"; 175 - sha1 = "baf79e62e6ef4c2a4c0b831232daffec251f9d83"; 176 - }; 177 - }; 178 - "asn1-0.1.11" = { 179 - name = "asn1"; 180 - packageName = "asn1"; 181 - version = "0.1.11"; 182 - src = fetchurl { 183 - url = "https://registry.npmjs.org/asn1/-/asn1-0.1.11.tgz"; 184 - sha1 = "559be18376d08a4ec4dbe80877d27818639b2df7"; 185 - }; 186 - }; 187 - "asn1.js-5.4.1" = { 188 - name = "asn1.js"; 189 - packageName = "asn1.js"; 190 - version = "5.4.1"; 191 - src = fetchurl { 192 - url = "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz"; 193 - sha512 = "+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA=="; 194 - }; 195 - }; 196 - "assert-1.5.0" = { 197 - name = "assert"; 198 - packageName = "assert"; 199 - version = "1.5.0"; 200 - src = fetchurl { 201 - url = "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz"; 202 - sha512 = "EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA=="; 203 - }; 204 - }; 205 - "assert-plus-0.1.5" = { 206 - name = "assert-plus"; 207 - packageName = "assert-plus"; 208 - version = "0.1.5"; 209 - src = fetchurl { 210 - url = "https://registry.npmjs.org/assert-plus/-/assert-plus-0.1.5.tgz"; 211 - sha1 = "ee74009413002d84cec7219c6ac811812e723160"; 212 - }; 213 - }; 214 - "async-0.9.2" = { 215 - name = "async"; 216 - packageName = "async"; 217 - version = "0.9.2"; 218 - src = fetchurl { 219 - url = "https://registry.npmjs.org/async/-/async-0.9.2.tgz"; 220 - sha1 = "aea74d5e61c1f899613bf64bda66d4c78f2fd17d"; 221 - }; 222 - }; 223 - "available-typed-arrays-1.0.2" = { 224 - name = "available-typed-arrays"; 225 - packageName = "available-typed-arrays"; 226 - version = "1.0.2"; 227 - src = fetchurl { 228 - url = "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.2.tgz"; 229 - sha512 = "XWX3OX8Onv97LMk/ftVyBibpGwY5a8SmuxZPzeOxqmuEqUCOM9ZE+uIaD1VNJ5QnvU2UQusvmKbuM1FR8QWGfQ=="; 230 - }; 231 - }; 232 - "aws-sign2-0.5.0" = { 233 - name = "aws-sign2"; 234 - packageName = "aws-sign2"; 235 - version = "0.5.0"; 236 - src = fetchurl { 237 - url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.5.0.tgz"; 238 - sha1 = "c57103f7a17fc037f02d7c2e64b602ea223f7d63"; 239 - }; 240 - }; 241 - "balanced-match-1.0.0" = { 242 - name = "balanced-match"; 243 - packageName = "balanced-match"; 244 - version = "1.0.0"; 245 - src = fetchurl { 246 - url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz"; 247 - sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767"; 248 - }; 249 - }; 250 - "base64-js-1.5.1" = { 251 - name = "base64-js"; 252 - packageName = "base64-js"; 253 - version = "1.5.1"; 254 - src = fetchurl { 255 - url = "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz"; 256 - sha512 = "AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="; 257 - }; 258 - }; 259 - "binary-extensions-2.2.0" = { 260 - name = "binary-extensions"; 261 - packageName = "binary-extensions"; 262 - version = "2.2.0"; 263 - src = fetchurl { 264 - url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz"; 265 - sha512 = "jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA=="; 266 - }; 267 - }; 268 - "bn.js-4.11.9" = { 269 - name = "bn.js"; 270 - packageName = "bn.js"; 271 - version = "4.11.9"; 272 - src = fetchurl { 273 - url = "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz"; 274 - sha512 = "E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw=="; 275 - }; 276 - }; 277 - "bn.js-5.1.3" = { 278 - name = "bn.js"; 279 - packageName = "bn.js"; 280 - version = "5.1.3"; 281 - src = fetchurl { 282 - url = "https://registry.npmjs.org/bn.js/-/bn.js-5.1.3.tgz"; 283 - sha512 = "GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ=="; 284 - }; 285 - }; 286 - "boom-0.4.2" = { 287 - name = "boom"; 288 - packageName = "boom"; 289 - version = "0.4.2"; 290 - src = fetchurl { 291 - url = "https://registry.npmjs.org/boom/-/boom-0.4.2.tgz"; 292 - sha1 = "7a636e9ded4efcefb19cef4947a3c67dfaee911b"; 293 - }; 294 - }; 295 - "brace-expansion-1.1.11" = { 296 - name = "brace-expansion"; 297 - packageName = "brace-expansion"; 298 - version = "1.1.11"; 299 - src = fetchurl { 300 - url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz"; 301 - sha512 = "iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="; 302 - }; 303 - }; 304 - "braces-3.0.2" = { 305 - name = "braces"; 306 - packageName = "braces"; 307 - version = "3.0.2"; 308 - src = fetchurl { 309 - url = "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz"; 310 - sha512 = "b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A=="; 311 - }; 312 - }; 313 - "brorand-1.1.0" = { 314 - name = "brorand"; 315 - packageName = "brorand"; 316 - version = "1.1.0"; 317 - src = fetchurl { 318 - url = "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz"; 319 - sha1 = "12c25efe40a45e3c323eb8675a0a0ce57b22371f"; 320 - }; 321 - }; 322 - "browser-pack-6.1.0" = { 323 - name = "browser-pack"; 324 - packageName = "browser-pack"; 325 - version = "6.1.0"; 326 - src = fetchurl { 327 - url = "https://registry.npmjs.org/browser-pack/-/browser-pack-6.1.0.tgz"; 328 - sha512 = "erYug8XoqzU3IfcU8fUgyHqyOXqIE4tUTTQ+7mqUjQlvnXkOO6OlT9c/ZoJVHYoAaqGxr09CN53G7XIsO4KtWA=="; 329 - }; 330 - }; 331 - "browser-resolve-2.0.0" = { 332 - name = "browser-resolve"; 333 - packageName = "browser-resolve"; 334 - version = "2.0.0"; 335 - src = fetchurl { 336 - url = "https://registry.npmjs.org/browser-resolve/-/browser-resolve-2.0.0.tgz"; 337 - sha512 = "7sWsQlYL2rGLy2IWm8WL8DCTJvYLc/qlOnsakDac87SOoCd16WLsaAMdCiAqsTNHIe+SXfaqyxyo6THoWqs8WQ=="; 338 - }; 339 - }; 340 - "browser-stdout-1.3.1" = { 341 - name = "browser-stdout"; 342 - packageName = "browser-stdout"; 343 - version = "1.3.1"; 344 - src = fetchurl { 345 - url = "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz"; 346 - sha512 = "qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw=="; 347 - }; 348 - }; 349 - "browserify-aes-1.2.0" = { 350 - name = "browserify-aes"; 351 - packageName = "browserify-aes"; 352 - version = "1.2.0"; 353 - src = fetchurl { 354 - url = "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz"; 355 - sha512 = "+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA=="; 356 - }; 357 - }; 358 - "browserify-cipher-1.0.1" = { 359 - name = "browserify-cipher"; 360 - packageName = "browserify-cipher"; 361 - version = "1.0.1"; 362 - src = fetchurl { 363 - url = "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz"; 364 - sha512 = "sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w=="; 365 - }; 366 - }; 367 - "browserify-des-1.0.2" = { 368 - name = "browserify-des"; 369 - packageName = "browserify-des"; 370 - version = "1.0.2"; 371 - src = fetchurl { 372 - url = "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz"; 373 - sha512 = "BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A=="; 374 - }; 375 - }; 376 - "browserify-rsa-4.1.0" = { 377 - name = "browserify-rsa"; 378 - packageName = "browserify-rsa"; 379 - version = "4.1.0"; 380 - src = fetchurl { 381 - url = "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz"; 382 - sha512 = "AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog=="; 383 - }; 384 - }; 385 - "browserify-sign-4.2.1" = { 386 - name = "browserify-sign"; 387 - packageName = "browserify-sign"; 388 - version = "4.2.1"; 389 - src = fetchurl { 390 - url = "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz"; 391 - sha512 = "/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg=="; 392 - }; 393 - }; 394 - "browserify-zlib-0.2.0" = { 395 - name = "browserify-zlib"; 396 - packageName = "browserify-zlib"; 397 - version = "0.2.0"; 398 - src = fetchurl { 399 - url = "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz"; 400 - sha512 = "Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA=="; 401 - }; 402 - }; 403 - "buffer-5.2.1" = { 404 - name = "buffer"; 405 - packageName = "buffer"; 406 - version = "5.2.1"; 407 - src = fetchurl { 408 - url = "https://registry.npmjs.org/buffer/-/buffer-5.2.1.tgz"; 409 - sha512 = "c+Ko0loDaFfuPWiL02ls9Xd3GO3cPVmUobQ6t3rXNUk304u6hGq+8N/kFi+QEIKhzK3uwolVhLzszmfLmMLnqg=="; 410 - }; 411 - }; 412 - "buffer-from-1.1.1" = { 413 - name = "buffer-from"; 414 - packageName = "buffer-from"; 415 - version = "1.1.1"; 416 - src = fetchurl { 417 - url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz"; 418 - sha512 = "MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A=="; 419 - }; 420 - }; 421 - "buffer-xor-1.0.3" = { 422 - name = "buffer-xor"; 423 - packageName = "buffer-xor"; 424 - version = "1.0.3"; 425 - src = fetchurl { 426 - url = "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz"; 427 - sha1 = "26e61ed1422fb70dd42e6e36729ed51d855fe8d9"; 428 - }; 429 - }; 430 - "builtin-status-codes-3.0.0" = { 431 - name = "builtin-status-codes"; 432 - packageName = "builtin-status-codes"; 433 - version = "3.0.0"; 434 - src = fetchurl { 435 - url = "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz"; 436 - sha1 = "85982878e21b98e1c66425e03d0174788f569ee8"; 437 - }; 438 - }; 439 - "cached-path-relative-1.0.2" = { 440 - name = "cached-path-relative"; 441 - packageName = "cached-path-relative"; 442 - version = "1.0.2"; 443 - src = fetchurl { 444 - url = "https://registry.npmjs.org/cached-path-relative/-/cached-path-relative-1.0.2.tgz"; 445 - sha512 = "5r2GqsoEb4qMTTN9J+WzXfjov+hjxT+j3u5K+kIVNIwAd99DLCJE9pBIMP1qVeybV6JiijL385Oz0DcYxfbOIg=="; 446 - }; 447 - }; 448 - "call-bind-1.0.2" = { 449 - name = "call-bind"; 450 - packageName = "call-bind"; 451 - version = "1.0.2"; 452 - src = fetchurl { 453 - url = "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz"; 454 - sha512 = "7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA=="; 455 - }; 456 - }; 457 - "camelcase-5.3.1" = { 458 - name = "camelcase"; 459 - packageName = "camelcase"; 460 - version = "5.3.1"; 461 - src = fetchurl { 462 - url = "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz"; 463 - sha512 = "L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="; 464 - }; 465 - }; 466 - "camelcase-6.2.0" = { 467 - name = "camelcase"; 468 - packageName = "camelcase"; 469 - version = "6.2.0"; 470 - src = fetchurl { 471 - url = "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz"; 472 - sha512 = "c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg=="; 473 - }; 474 - }; 475 - "chalk-4.1.0" = { 476 - name = "chalk"; 477 - packageName = "chalk"; 478 - version = "4.1.0"; 479 - src = fetchurl { 480 - url = "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz"; 481 - sha512 = "qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A=="; 482 - }; 483 - }; 484 - "chokidar-3.4.3" = { 485 - name = "chokidar"; 486 - packageName = "chokidar"; 487 - version = "3.4.3"; 488 - src = fetchurl { 489 - url = "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz"; 490 - sha512 = "DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ=="; 491 - }; 492 - }; 493 - "cipher-base-1.0.4" = { 494 - name = "cipher-base"; 495 - packageName = "cipher-base"; 496 - version = "1.0.4"; 497 - src = fetchurl { 498 - url = "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz"; 499 - sha512 = "Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q=="; 500 - }; 501 - }; 502 - "cli-1.0.1" = { 503 - name = "cli"; 504 - packageName = "cli"; 505 - version = "1.0.1"; 506 - src = fetchurl { 507 - url = "https://registry.npmjs.org/cli/-/cli-1.0.1.tgz"; 508 - sha1 = "22817534f24bfa4950c34d532d48ecbc621b8c14"; 509 - }; 510 - }; 511 - "cliui-5.0.0" = { 512 - name = "cliui"; 513 - packageName = "cliui"; 514 - version = "5.0.0"; 515 - src = fetchurl { 516 - url = "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz"; 517 - sha512 = "PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA=="; 518 - }; 519 - }; 520 - "color-convert-1.9.3" = { 521 - name = "color-convert"; 522 - packageName = "color-convert"; 523 - version = "1.9.3"; 524 - src = fetchurl { 525 - url = "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz"; 526 - sha512 = "QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="; 527 - }; 528 - }; 529 - "color-convert-2.0.1" = { 530 - name = "color-convert"; 531 - packageName = "color-convert"; 532 - version = "2.0.1"; 533 - src = fetchurl { 534 - url = "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz"; 535 - sha512 = "RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="; 536 - }; 537 - }; 538 - "color-name-1.1.3" = { 539 - name = "color-name"; 540 - packageName = "color-name"; 541 - version = "1.1.3"; 542 - src = fetchurl { 543 - url = "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"; 544 - sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25"; 545 - }; 546 - }; 547 - "color-name-1.1.4" = { 548 - name = "color-name"; 549 - packageName = "color-name"; 550 - version = "1.1.4"; 551 - src = fetchurl { 552 - url = "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz"; 553 - sha512 = "dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="; 554 - }; 555 - }; 556 - "combine-source-map-0.8.0" = { 557 - name = "combine-source-map"; 558 - packageName = "combine-source-map"; 559 - version = "0.8.0"; 560 - src = fetchurl { 561 - url = "https://registry.npmjs.org/combine-source-map/-/combine-source-map-0.8.0.tgz"; 562 - sha1 = "a58d0df042c186fcf822a8e8015f5450d2d79a8b"; 563 - }; 564 - }; 565 - "combined-stream-0.0.7" = { 566 - name = "combined-stream"; 567 - packageName = "combined-stream"; 568 - version = "0.0.7"; 569 - src = fetchurl { 570 - url = "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.7.tgz"; 571 - sha1 = "0137e657baa5a7541c57ac37ac5fc07d73b4dc1f"; 572 - }; 573 - }; 574 - "commander-2.20.3" = { 575 - name = "commander"; 576 - packageName = "commander"; 577 - version = "2.20.3"; 578 - src = fetchurl { 579 - url = "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz"; 580 - sha512 = "GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="; 581 - }; 582 - }; 583 - "concat-map-0.0.1" = { 584 - name = "concat-map"; 585 - packageName = "concat-map"; 586 - version = "0.0.1"; 587 - src = fetchurl { 588 - url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"; 589 - sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b"; 590 - }; 591 - }; 592 - "concat-stream-1.6.2" = { 593 - name = "concat-stream"; 594 - packageName = "concat-stream"; 595 - version = "1.6.2"; 596 - src = fetchurl { 597 - url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz"; 598 - sha512 = "27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw=="; 599 - }; 600 - }; 601 - "config-chain-1.1.12" = { 602 - name = "config-chain"; 603 - packageName = "config-chain"; 604 - version = "1.1.12"; 605 - src = fetchurl { 606 - url = "https://registry.npmjs.org/config-chain/-/config-chain-1.1.12.tgz"; 607 - sha512 = "a1eOIcu8+7lUInge4Rpf/n4Krkf3Dd9lqhljRzII1/Zno/kRtUWnznPO3jOKBmTEktkt3fkxisUcivoj0ebzoA=="; 608 - }; 609 - }; 610 - "console-browserify-1.1.0" = { 611 - name = "console-browserify"; 612 - packageName = "console-browserify"; 613 - version = "1.1.0"; 614 - src = fetchurl { 615 - url = "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz"; 616 - sha1 = "f0241c45730a9fc6323b206dbf38edc741d0bb10"; 617 - }; 618 - }; 619 - "console-browserify-1.2.0" = { 620 - name = "console-browserify"; 621 - packageName = "console-browserify"; 622 - version = "1.2.0"; 623 - src = fetchurl { 624 - url = "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz"; 625 - sha512 = "ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA=="; 626 - }; 627 - }; 628 - "constants-browserify-1.0.0" = { 629 - name = "constants-browserify"; 630 - packageName = "constants-browserify"; 631 - version = "1.0.0"; 632 - src = fetchurl { 633 - url = "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz"; 634 - sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75"; 635 - }; 636 - }; 637 - "convert-source-map-1.1.3" = { 638 - name = "convert-source-map"; 639 - packageName = "convert-source-map"; 640 - version = "1.1.3"; 641 - src = fetchurl { 642 - url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.1.3.tgz"; 643 - sha1 = "4829c877e9fe49b3161f3bf3673888e204699860"; 644 - }; 645 - }; 646 - "copy-anything-2.0.1" = { 647 - name = "copy-anything"; 648 - packageName = "copy-anything"; 649 - version = "2.0.1"; 650 - src = fetchurl { 651 - url = "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.1.tgz"; 652 - sha512 = "lA57e7viQHOdPQcrytv5jFeudZZOXuyk47lZym279FiDQ8jeZomXiGuVf6ffMKkJ+3TIai3J1J3yi6M+/4U35g=="; 653 - }; 654 - }; 655 - "core-util-is-1.0.2" = { 656 - name = "core-util-is"; 657 - packageName = "core-util-is"; 658 - version = "1.0.2"; 659 - src = fetchurl { 660 - url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz"; 661 - sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; 662 - }; 663 - }; 664 - "create-ecdh-4.0.4" = { 665 - name = "create-ecdh"; 666 - packageName = "create-ecdh"; 667 - version = "4.0.4"; 668 - src = fetchurl { 669 - url = "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz"; 670 - sha512 = "mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A=="; 671 - }; 672 - }; 673 - "create-hash-1.2.0" = { 674 - name = "create-hash"; 675 - packageName = "create-hash"; 676 - version = "1.2.0"; 677 - src = fetchurl { 678 - url = "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz"; 679 - sha512 = "z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg=="; 680 - }; 681 - }; 682 - "create-hmac-1.1.7" = { 683 - name = "create-hmac"; 684 - packageName = "create-hmac"; 685 - version = "1.1.7"; 686 - src = fetchurl { 687 - url = "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz"; 688 - sha512 = "MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg=="; 689 - }; 690 - }; 691 - "cryptiles-0.2.2" = { 692 - name = "cryptiles"; 693 - packageName = "cryptiles"; 694 - version = "0.2.2"; 695 - src = fetchurl { 696 - url = "https://registry.npmjs.org/cryptiles/-/cryptiles-0.2.2.tgz"; 697 - sha1 = "ed91ff1f17ad13d3748288594f8a48a0d26f325c"; 698 - }; 699 - }; 700 - "crypto-browserify-3.12.0" = { 701 - name = "crypto-browserify"; 702 - packageName = "crypto-browserify"; 703 - version = "3.12.0"; 704 - src = fetchurl { 705 - url = "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz"; 706 - sha512 = "fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg=="; 707 - }; 708 - }; 709 - "ctype-0.5.3" = { 710 - name = "ctype"; 711 - packageName = "ctype"; 712 - version = "0.5.3"; 713 - src = fetchurl { 714 - url = "https://registry.npmjs.org/ctype/-/ctype-0.5.3.tgz"; 715 - sha1 = "82c18c2461f74114ef16c135224ad0b9144ca12f"; 716 - }; 717 - }; 718 - "dash-ast-1.0.0" = { 719 - name = "dash-ast"; 720 - packageName = "dash-ast"; 721 - version = "1.0.0"; 722 - src = fetchurl { 723 - url = "https://registry.npmjs.org/dash-ast/-/dash-ast-1.0.0.tgz"; 724 - sha512 = "Vy4dx7gquTeMcQR/hDkYLGUnwVil6vk4FOOct+djUnHOUWt+zJPJAaRIXaAFkPXtJjvlY7o3rfRu0/3hpnwoUA=="; 725 - }; 726 - }; 727 - "date-now-0.1.4" = { 728 - name = "date-now"; 729 - packageName = "date-now"; 730 - version = "0.1.4"; 731 - src = fetchurl { 732 - url = "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz"; 733 - sha1 = "eaf439fd4d4848ad74e5cc7dbef200672b9e345b"; 734 - }; 735 - }; 736 - "debug-3.2.7" = { 737 - name = "debug"; 738 - packageName = "debug"; 739 - version = "3.2.7"; 740 - src = fetchurl { 741 - url = "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz"; 742 - sha512 = "CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ=="; 743 - }; 744 - }; 745 - "debug-4.2.0" = { 746 - name = "debug"; 747 - packageName = "debug"; 748 - version = "4.2.0"; 749 - src = fetchurl { 750 - url = "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz"; 751 - sha512 = "IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg=="; 752 - }; 753 - }; 754 - "decamelize-1.2.0" = { 755 - name = "decamelize"; 756 - packageName = "decamelize"; 757 - version = "1.2.0"; 758 - src = fetchurl { 759 - url = "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"; 760 - sha1 = "f6534d15148269b20352e7bee26f501f9a191290"; 761 - }; 762 - }; 763 - "decamelize-4.0.0" = { 764 - name = "decamelize"; 765 - packageName = "decamelize"; 766 - version = "4.0.0"; 767 - src = fetchurl { 768 - url = "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz"; 769 - sha512 = "9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ=="; 770 - }; 771 - }; 772 - "define-properties-1.1.3" = { 773 - name = "define-properties"; 774 - packageName = "define-properties"; 775 - version = "1.1.3"; 776 - src = fetchurl { 777 - url = "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz"; 778 - sha512 = "3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ=="; 779 - }; 780 - }; 781 - "defined-1.0.0" = { 782 - name = "defined"; 783 - packageName = "defined"; 784 - version = "1.0.0"; 785 - src = fetchurl { 786 - url = "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz"; 787 - sha1 = "c98d9bcef75674188e110969151199e39b1fa693"; 788 - }; 789 - }; 790 - "delayed-stream-0.0.5" = { 791 - name = "delayed-stream"; 792 - packageName = "delayed-stream"; 793 - version = "0.0.5"; 794 - src = fetchurl { 795 - url = "https://registry.npmjs.org/delayed-stream/-/delayed-stream-0.0.5.tgz"; 796 - sha1 = "d4b1f43a93e8296dfe02694f4680bc37a313c73f"; 797 - }; 798 - }; 799 - "deps-sort-2.0.1" = { 800 - name = "deps-sort"; 801 - packageName = "deps-sort"; 802 - version = "2.0.1"; 803 - src = fetchurl { 804 - url = "https://registry.npmjs.org/deps-sort/-/deps-sort-2.0.1.tgz"; 805 - sha512 = "1orqXQr5po+3KI6kQb9A4jnXT1PBwggGl2d7Sq2xsnOeI9GPcE/tGcF9UiSZtZBM7MukY4cAh7MemS6tZYipfw=="; 806 - }; 807 - }; 808 - "des.js-1.0.1" = { 809 - name = "des.js"; 810 - packageName = "des.js"; 811 - version = "1.0.1"; 812 - src = fetchurl { 813 - url = "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz"; 814 - sha512 = "Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA=="; 815 - }; 816 - }; 817 - "detective-5.2.0" = { 818 - name = "detective"; 819 - packageName = "detective"; 820 - version = "5.2.0"; 821 - src = fetchurl { 822 - url = "https://registry.npmjs.org/detective/-/detective-5.2.0.tgz"; 823 - sha512 = "6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg=="; 824 - }; 825 - }; 826 - "diff-4.0.2" = { 827 - name = "diff"; 828 - packageName = "diff"; 829 - version = "4.0.2"; 830 - src = fetchurl { 831 - url = "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz"; 832 - sha512 = "58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A=="; 833 - }; 834 - }; 835 - "diffie-hellman-5.0.3" = { 836 - name = "diffie-hellman"; 837 - packageName = "diffie-hellman"; 838 - version = "5.0.3"; 839 - src = fetchurl { 840 - url = "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz"; 841 - sha512 = "kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg=="; 842 - }; 843 - }; 844 - "dom-serializer-0.2.2" = { 845 - name = "dom-serializer"; 846 - packageName = "dom-serializer"; 847 - version = "0.2.2"; 848 - src = fetchurl { 849 - url = "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz"; 850 - sha512 = "2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g=="; 851 - }; 852 - }; 853 - "domain-browser-1.2.0" = { 854 - name = "domain-browser"; 855 - packageName = "domain-browser"; 856 - version = "1.2.0"; 857 - src = fetchurl { 858 - url = "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz"; 859 - sha512 = "jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA=="; 860 - }; 861 - }; 862 - "domelementtype-1.3.1" = { 863 - name = "domelementtype"; 864 - packageName = "domelementtype"; 865 - version = "1.3.1"; 866 - src = fetchurl { 867 - url = "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz"; 868 - sha512 = "BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w=="; 869 - }; 870 - }; 871 - "domelementtype-2.1.0" = { 872 - name = "domelementtype"; 873 - packageName = "domelementtype"; 874 - version = "2.1.0"; 875 - src = fetchurl { 876 - url = "https://registry.npmjs.org/domelementtype/-/domelementtype-2.1.0.tgz"; 877 - sha512 = "LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w=="; 878 - }; 879 - }; 880 - "domhandler-2.3.0" = { 881 - name = "domhandler"; 882 - packageName = "domhandler"; 883 - version = "2.3.0"; 884 - src = fetchurl { 885 - url = "https://registry.npmjs.org/domhandler/-/domhandler-2.3.0.tgz"; 886 - sha1 = "2de59a0822d5027fabff6f032c2b25a2a8abe738"; 887 - }; 888 - }; 889 - "domutils-1.5.1" = { 890 - name = "domutils"; 891 - packageName = "domutils"; 892 - version = "1.5.1"; 893 - src = fetchurl { 894 - url = "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz"; 895 - sha1 = "dcd8488a26f563d61079e48c9f7b7e32373682cf"; 896 - }; 897 - }; 898 - "duplexer2-0.1.4" = { 899 - name = "duplexer2"; 900 - packageName = "duplexer2"; 901 - version = "0.1.4"; 902 - src = fetchurl { 903 - url = "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz"; 904 - sha1 = "8b12dab878c0d69e3e7891051662a32fc6bddcc1"; 905 - }; 906 - }; 907 - "elliptic-6.5.3" = { 908 - name = "elliptic"; 909 - packageName = "elliptic"; 910 - version = "6.5.3"; 911 - src = fetchurl { 912 - url = "https://registry.npmjs.org/elliptic/-/elliptic-6.5.3.tgz"; 913 - sha512 = "IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw=="; 914 - }; 915 - }; 916 - "emoji-regex-7.0.3" = { 917 - name = "emoji-regex"; 918 - packageName = "emoji-regex"; 919 - version = "7.0.3"; 920 - src = fetchurl { 921 - url = "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz"; 922 - sha512 = "CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA=="; 923 - }; 924 - }; 925 - "entities-1.0.0" = { 926 - name = "entities"; 927 - packageName = "entities"; 928 - version = "1.0.0"; 929 - src = fetchurl { 930 - url = "https://registry.npmjs.org/entities/-/entities-1.0.0.tgz"; 931 - sha1 = "b2987aa3821347fcde642b24fdfc9e4fb712bf26"; 932 - }; 933 - }; 934 - "entities-2.2.0" = { 935 - name = "entities"; 936 - packageName = "entities"; 937 - version = "2.2.0"; 938 - src = fetchurl { 939 - url = "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz"; 940 - sha512 = "p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A=="; 941 - }; 942 - }; 943 - "errno-0.1.8" = { 944 - name = "errno"; 945 - packageName = "errno"; 946 - version = "0.1.8"; 947 - src = fetchurl { 948 - url = "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz"; 949 - sha512 = "dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A=="; 950 - }; 951 - }; 952 - "es-abstract-1.18.0-next.2" = { 953 - name = "es-abstract"; 954 - packageName = "es-abstract"; 955 - version = "1.18.0-next.2"; 956 - src = fetchurl { 957 - url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.2.tgz"; 958 - sha512 = "Ih4ZMFHEtZupnUh6497zEL4y2+w8+1ljnCyaTa+adcoafI1GOvMwFlDjBLfWR7y9VLfrjRJe9ocuHY1PSR9jjw=="; 959 - }; 960 - }; 961 - "es-to-primitive-1.2.1" = { 962 - name = "es-to-primitive"; 963 - packageName = "es-to-primitive"; 964 - version = "1.2.1"; 965 - src = fetchurl { 966 - url = "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz"; 967 - sha512 = "QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA=="; 968 - }; 969 - }; 970 - "escape-string-regexp-4.0.0" = { 971 - name = "escape-string-regexp"; 972 - packageName = "escape-string-regexp"; 973 - version = "4.0.0"; 974 - src = fetchurl { 975 - url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"; 976 - sha512 = "TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="; 977 - }; 978 - }; 979 - "esprima-4.0.1" = { 980 - name = "esprima"; 981 - packageName = "esprima"; 982 - version = "4.0.1"; 983 - src = fetchurl { 984 - url = "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz"; 985 - sha512 = "eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="; 986 - }; 987 - }; 988 - "events-3.2.0" = { 989 - name = "events"; 990 - packageName = "events"; 991 - version = "3.2.0"; 992 - src = fetchurl { 993 - url = "https://registry.npmjs.org/events/-/events-3.2.0.tgz"; 994 - sha512 = "/46HWwbfCX2xTawVfkKLGxMifJYQBWMwY1mjywRtb4c9x8l5NP3KoJtnIOiL1hfdRkIuYhETxQlo62IF8tcnlg=="; 995 - }; 996 - }; 997 - "evp_bytestokey-1.0.3" = { 998 - name = "evp_bytestokey"; 999 - packageName = "evp_bytestokey"; 1000 - version = "1.0.3"; 1001 - src = fetchurl { 1002 - url = "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz"; 1003 - sha512 = "/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA=="; 1004 - }; 1005 - }; 1006 - "exit-0.1.2" = { 1007 - name = "exit"; 1008 - packageName = "exit"; 1009 - version = "0.1.2"; 1010 - src = fetchurl { 1011 - url = "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz"; 1012 - sha1 = "0632638f8d877cc82107d30a0fff1a17cba1cd0c"; 1013 - }; 1014 - }; 1015 - "fast-safe-stringify-2.0.7" = { 1016 - name = "fast-safe-stringify"; 1017 - packageName = "fast-safe-stringify"; 1018 - version = "2.0.7"; 1019 - src = fetchurl { 1020 - url = "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.0.7.tgz"; 1021 - sha512 = "Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA=="; 1022 - }; 1023 - }; 1024 - "fill-range-7.0.1" = { 1025 - name = "fill-range"; 1026 - packageName = "fill-range"; 1027 - version = "7.0.1"; 1028 - src = fetchurl { 1029 - url = "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz"; 1030 - sha512 = "qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ=="; 1031 - }; 1032 - }; 1033 - "find-up-3.0.0" = { 1034 - name = "find-up"; 1035 - packageName = "find-up"; 1036 - version = "3.0.0"; 1037 - src = fetchurl { 1038 - url = "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz"; 1039 - sha512 = "1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg=="; 1040 - }; 1041 - }; 1042 - "find-up-5.0.0" = { 1043 - name = "find-up"; 1044 - packageName = "find-up"; 1045 - version = "5.0.0"; 1046 - src = fetchurl { 1047 - url = "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz"; 1048 - sha512 = "78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng=="; 1049 - }; 1050 - }; 1051 - "flat-5.0.2" = { 1052 - name = "flat"; 1053 - packageName = "flat"; 1054 - version = "5.0.2"; 1055 - src = fetchurl { 1056 - url = "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz"; 1057 - sha512 = "b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ=="; 1058 - }; 1059 - }; 1060 - "foreach-2.0.5" = { 1061 - name = "foreach"; 1062 - packageName = "foreach"; 1063 - version = "2.0.5"; 1064 - src = fetchurl { 1065 - url = "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz"; 1066 - sha1 = "0bee005018aeb260d0a3af3ae658dd0136ec1b99"; 1067 - }; 1068 - }; 1069 - "forever-agent-0.5.2" = { 1070 - name = "forever-agent"; 1071 - packageName = "forever-agent"; 1072 - version = "0.5.2"; 1073 - src = fetchurl { 1074 - url = "https://registry.npmjs.org/forever-agent/-/forever-agent-0.5.2.tgz"; 1075 - sha1 = "6d0e09c4921f94a27f63d3b49c5feff1ea4c5130"; 1076 - }; 1077 - }; 1078 - "form-data-0.1.4" = { 1079 - name = "form-data"; 1080 - packageName = "form-data"; 1081 - version = "0.1.4"; 1082 - src = fetchurl { 1083 - url = "https://registry.npmjs.org/form-data/-/form-data-0.1.4.tgz"; 1084 - sha1 = "91abd788aba9702b1aabfa8bc01031a2ac9e3b12"; 1085 - }; 1086 - }; 1087 - "fs.realpath-1.0.0" = { 1088 - name = "fs.realpath"; 1089 - packageName = "fs.realpath"; 1090 - version = "1.0.0"; 1091 - src = fetchurl { 1092 - url = "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"; 1093 - sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f"; 1094 - }; 1095 - }; 1096 - "fsevents-2.1.3" = { 1097 - name = "fsevents"; 1098 - packageName = "fsevents"; 1099 - version = "2.1.3"; 1100 - src = fetchurl { 1101 - url = "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz"; 1102 - sha512 = "Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ=="; 1103 - }; 1104 - }; 1105 - "function-bind-1.1.1" = { 1106 - name = "function-bind"; 1107 - packageName = "function-bind"; 1108 - version = "1.1.1"; 1109 - src = fetchurl { 1110 - url = "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz"; 1111 - sha512 = "yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="; 1112 - }; 1113 - }; 1114 - "get-assigned-identifiers-1.2.0" = { 1115 - name = "get-assigned-identifiers"; 1116 - packageName = "get-assigned-identifiers"; 1117 - version = "1.2.0"; 1118 - src = fetchurl { 1119 - url = "https://registry.npmjs.org/get-assigned-identifiers/-/get-assigned-identifiers-1.2.0.tgz"; 1120 - sha512 = "mBBwmeGTrxEMO4pMaaf/uUEFHnYtwr8FTe8Y/mer4rcV/bye0qGm6pw1bGZFGStxC5O76c5ZAVBGnqHmOaJpdQ=="; 1121 - }; 1122 - }; 1123 - "get-caller-file-2.0.5" = { 1124 - name = "get-caller-file"; 1125 - packageName = "get-caller-file"; 1126 - version = "2.0.5"; 1127 - src = fetchurl { 1128 - url = "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz"; 1129 - sha512 = "DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="; 1130 - }; 1131 - }; 1132 - "get-intrinsic-1.1.0" = { 1133 - name = "get-intrinsic"; 1134 - packageName = "get-intrinsic"; 1135 - version = "1.1.0"; 1136 - src = fetchurl { 1137 - url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.0.tgz"; 1138 - sha512 = "M11rgtQp5GZMZzDL7jLTNxbDfurpzuau5uqRWDPvlHjfvg3TdScAZo96GLvhMjImrmR8uAt0FS2RLoMrfWGKlg=="; 1139 - }; 1140 - }; 1141 - "glob-7.1.6" = { 1142 - name = "glob"; 1143 - packageName = "glob"; 1144 - version = "7.1.6"; 1145 - src = fetchurl { 1146 - url = "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz"; 1147 - sha512 = "LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA=="; 1148 - }; 1149 - }; 1150 - "glob-parent-5.1.1" = { 1151 - name = "glob-parent"; 1152 - packageName = "glob-parent"; 1153 - version = "5.1.1"; 1154 - src = fetchurl { 1155 - url = "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz"; 1156 - sha512 = "FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ=="; 1157 - }; 1158 - }; 1159 - "graceful-fs-4.2.4" = { 1160 - name = "graceful-fs"; 1161 - packageName = "graceful-fs"; 1162 - version = "4.2.4"; 1163 - src = fetchurl { 1164 - url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz"; 1165 - sha512 = "WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw=="; 1166 - }; 1167 - }; 1168 - "growl-1.10.5" = { 1169 - name = "growl"; 1170 - packageName = "growl"; 1171 - version = "1.10.5"; 1172 - src = fetchurl { 1173 - url = "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz"; 1174 - sha512 = "qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA=="; 1175 - }; 1176 - }; 1177 - "has-1.0.3" = { 1178 - name = "has"; 1179 - packageName = "has"; 1180 - version = "1.0.3"; 1181 - src = fetchurl { 1182 - url = "https://registry.npmjs.org/has/-/has-1.0.3.tgz"; 1183 - sha512 = "f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw=="; 1184 - }; 1185 - }; 1186 - "has-flag-4.0.0" = { 1187 - name = "has-flag"; 1188 - packageName = "has-flag"; 1189 - version = "4.0.0"; 1190 - src = fetchurl { 1191 - url = "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz"; 1192 - sha512 = "EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="; 1193 - }; 1194 - }; 1195 - "has-symbols-1.0.1" = { 1196 - name = "has-symbols"; 1197 - packageName = "has-symbols"; 1198 - version = "1.0.1"; 1199 - src = fetchurl { 1200 - url = "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz"; 1201 - sha512 = "PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg=="; 1202 - }; 1203 - }; 1204 - "hash-base-3.1.0" = { 1205 - name = "hash-base"; 1206 - packageName = "hash-base"; 1207 - version = "3.1.0"; 1208 - src = fetchurl { 1209 - url = "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz"; 1210 - sha512 = "1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA=="; 1211 - }; 1212 - }; 1213 - "hash.js-1.1.7" = { 1214 - name = "hash.js"; 1215 - packageName = "hash.js"; 1216 - version = "1.1.7"; 1217 - src = fetchurl { 1218 - url = "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz"; 1219 - sha512 = "taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA=="; 1220 - }; 1221 - }; 1222 - "hawk-1.0.0" = { 1223 - name = "hawk"; 1224 - packageName = "hawk"; 1225 - version = "1.0.0"; 1226 - src = fetchurl { 1227 - url = "https://registry.npmjs.org/hawk/-/hawk-1.0.0.tgz"; 1228 - sha1 = "b90bb169807285411da7ffcb8dd2598502d3b52d"; 1229 - }; 1230 - }; 1231 - "he-1.2.0" = { 1232 - name = "he"; 1233 - packageName = "he"; 1234 - version = "1.2.0"; 1235 - src = fetchurl { 1236 - url = "https://registry.npmjs.org/he/-/he-1.2.0.tgz"; 1237 - sha512 = "F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw=="; 1238 - }; 1239 - }; 1240 - "hmac-drbg-1.0.1" = { 1241 - name = "hmac-drbg"; 1242 - packageName = "hmac-drbg"; 1243 - version = "1.0.1"; 1244 - src = fetchurl { 1245 - url = "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz"; 1246 - sha1 = "d2745701025a6c775a6c545793ed502fc0c649a1"; 1247 - }; 1248 - }; 1249 - "hoek-0.9.1" = { 1250 - name = "hoek"; 1251 - packageName = "hoek"; 1252 - version = "0.9.1"; 1253 - src = fetchurl { 1254 - url = "https://registry.npmjs.org/hoek/-/hoek-0.9.1.tgz"; 1255 - sha1 = "3d322462badf07716ea7eb85baf88079cddce505"; 1256 - }; 1257 - }; 1258 - "htmlescape-1.1.1" = { 1259 - name = "htmlescape"; 1260 - packageName = "htmlescape"; 1261 - version = "1.1.1"; 1262 - src = fetchurl { 1263 - url = "https://registry.npmjs.org/htmlescape/-/htmlescape-1.1.1.tgz"; 1264 - sha1 = "3a03edc2214bca3b66424a3e7959349509cb0351"; 1265 - }; 1266 - }; 1267 - "htmlparser2-3.8.3" = { 1268 - name = "htmlparser2"; 1269 - packageName = "htmlparser2"; 1270 - version = "3.8.3"; 1271 - src = fetchurl { 1272 - url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.8.3.tgz"; 1273 - sha1 = "996c28b191516a8be86501a7d79757e5c70c1068"; 1274 - }; 1275 - }; 1276 - "http-signature-0.10.1" = { 1277 - name = "http-signature"; 1278 - packageName = "http-signature"; 1279 - version = "0.10.1"; 1280 - src = fetchurl { 1281 - url = "https://registry.npmjs.org/http-signature/-/http-signature-0.10.1.tgz"; 1282 - sha1 = "4fbdac132559aa8323121e540779c0a012b27e66"; 1283 - }; 1284 - }; 1285 - "https-browserify-1.0.0" = { 1286 - name = "https-browserify"; 1287 - packageName = "https-browserify"; 1288 - version = "1.0.0"; 1289 - src = fetchurl { 1290 - url = "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz"; 1291 - sha1 = "ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73"; 1292 - }; 1293 - }; 1294 - "iconv-lite-0.4.24" = { 1295 - name = "iconv-lite"; 1296 - packageName = "iconv-lite"; 1297 - version = "0.4.24"; 1298 - src = fetchurl { 1299 - url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz"; 1300 - sha512 = "v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA=="; 1301 - }; 1302 - }; 1303 - "ieee754-1.2.1" = { 1304 - name = "ieee754"; 1305 - packageName = "ieee754"; 1306 - version = "1.2.1"; 1307 - src = fetchurl { 1308 - url = "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz"; 1309 - sha512 = "dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="; 1310 - }; 1311 - }; 1312 - "image-size-0.5.5" = { 1313 - name = "image-size"; 1314 - packageName = "image-size"; 1315 - version = "0.5.5"; 1316 - src = fetchurl { 1317 - url = "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz"; 1318 - sha1 = "09dfd4ab9d20e29eb1c3e80b8990378df9e3cb9c"; 1319 - }; 1320 - }; 1321 - "inflight-1.0.6" = { 1322 - name = "inflight"; 1323 - packageName = "inflight"; 1324 - version = "1.0.6"; 1325 - src = fetchurl { 1326 - url = "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz"; 1327 - sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9"; 1328 - }; 1329 - }; 1330 - "inherits-1.0.2" = { 1331 - name = "inherits"; 1332 - packageName = "inherits"; 1333 - version = "1.0.2"; 1334 - src = fetchurl { 1335 - url = "https://registry.npmjs.org/inherits/-/inherits-1.0.2.tgz"; 1336 - sha1 = "ca4309dadee6b54cc0b8d247e8d7c7a0975bdc9b"; 1337 - }; 1338 - }; 1339 - "inherits-2.0.1" = { 1340 - name = "inherits"; 1341 - packageName = "inherits"; 1342 - version = "2.0.1"; 1343 - src = fetchurl { 1344 - url = "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz"; 1345 - sha1 = "b17d08d326b4423e568eff719f91b0b1cbdf69f1"; 1346 - }; 1347 - }; 1348 - "inherits-2.0.4" = { 1349 - name = "inherits"; 1350 - packageName = "inherits"; 1351 - version = "2.0.4"; 1352 - src = fetchurl { 1353 - url = "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"; 1354 - sha512 = "k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="; 1355 - }; 1356 - }; 1357 - "ini-1.1.0" = { 1358 - name = "ini"; 1359 - packageName = "ini"; 1360 - version = "1.1.0"; 1361 - src = fetchurl { 1362 - url = "https://registry.npmjs.org/ini/-/ini-1.1.0.tgz"; 1363 - sha1 = "4e808c2ce144c6c1788918e034d6797bc6cf6281"; 1364 - }; 1365 - }; 1366 - "ini-1.3.8" = { 1367 - name = "ini"; 1368 - packageName = "ini"; 1369 - version = "1.3.8"; 1370 - src = fetchurl { 1371 - url = "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz"; 1372 - sha512 = "JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="; 1373 - }; 1374 - }; 1375 - "inline-source-map-0.6.2" = { 1376 - name = "inline-source-map"; 1377 - packageName = "inline-source-map"; 1378 - version = "0.6.2"; 1379 - src = fetchurl { 1380 - url = "https://registry.npmjs.org/inline-source-map/-/inline-source-map-0.6.2.tgz"; 1381 - sha1 = "f9393471c18a79d1724f863fa38b586370ade2a5"; 1382 - }; 1383 - }; 1384 - "insert-module-globals-7.2.1" = { 1385 - name = "insert-module-globals"; 1386 - packageName = "insert-module-globals"; 1387 - version = "7.2.1"; 1388 - src = fetchurl { 1389 - url = "https://registry.npmjs.org/insert-module-globals/-/insert-module-globals-7.2.1.tgz"; 1390 - sha512 = "ufS5Qq9RZN+Bu899eA9QCAYThY+gGW7oRkmb0vC93Vlyu/CFGcH0OYPEjVkDXA5FEbTt1+VWzdoOD3Ny9N+8tg=="; 1391 - }; 1392 - }; 1393 - "interpret-1.4.0" = { 1394 - name = "interpret"; 1395 - packageName = "interpret"; 1396 - version = "1.4.0"; 1397 - src = fetchurl { 1398 - url = "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz"; 1399 - sha512 = "agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA=="; 1400 - }; 1401 - }; 1402 - "is-arguments-1.1.0" = { 1403 - name = "is-arguments"; 1404 - packageName = "is-arguments"; 1405 - version = "1.1.0"; 1406 - src = fetchurl { 1407 - url = "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.0.tgz"; 1408 - sha512 = "1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg=="; 1409 - }; 1410 - }; 1411 - "is-binary-path-2.1.0" = { 1412 - name = "is-binary-path"; 1413 - packageName = "is-binary-path"; 1414 - version = "2.1.0"; 1415 - src = fetchurl { 1416 - url = "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz"; 1417 - sha512 = "ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw=="; 1418 - }; 1419 - }; 1420 - "is-buffer-1.1.6" = { 1421 - name = "is-buffer"; 1422 - packageName = "is-buffer"; 1423 - version = "1.1.6"; 1424 - src = fetchurl { 1425 - url = "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz"; 1426 - sha512 = "NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w=="; 1427 - }; 1428 - }; 1429 - "is-callable-1.2.3" = { 1430 - name = "is-callable"; 1431 - packageName = "is-callable"; 1432 - version = "1.2.3"; 1433 - src = fetchurl { 1434 - url = "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz"; 1435 - sha512 = "J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ=="; 1436 - }; 1437 - }; 1438 - "is-core-module-2.2.0" = { 1439 - name = "is-core-module"; 1440 - packageName = "is-core-module"; 1441 - version = "2.2.0"; 1442 - src = fetchurl { 1443 - url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.2.0.tgz"; 1444 - sha512 = "XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ=="; 1445 - }; 1446 - }; 1447 - "is-date-object-1.0.2" = { 1448 - name = "is-date-object"; 1449 - packageName = "is-date-object"; 1450 - version = "1.0.2"; 1451 - src = fetchurl { 1452 - url = "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz"; 1453 - sha512 = "USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g=="; 1454 - }; 1455 - }; 1456 - "is-extglob-2.1.1" = { 1457 - name = "is-extglob"; 1458 - packageName = "is-extglob"; 1459 - version = "2.1.1"; 1460 - src = fetchurl { 1461 - url = "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz"; 1462 - sha1 = "a88c02535791f02ed37c76a1b9ea9773c833f8c2"; 1463 - }; 1464 - }; 1465 - "is-fullwidth-code-point-2.0.0" = { 1466 - name = "is-fullwidth-code-point"; 1467 - packageName = "is-fullwidth-code-point"; 1468 - version = "2.0.0"; 1469 - src = fetchurl { 1470 - url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz"; 1471 - sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f"; 1472 - }; 1473 - }; 1474 - "is-generator-function-1.0.8" = { 1475 - name = "is-generator-function"; 1476 - packageName = "is-generator-function"; 1477 - version = "1.0.8"; 1478 - src = fetchurl { 1479 - url = "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.8.tgz"; 1480 - sha512 = "2Omr/twNtufVZFr1GhxjOMFPAj2sjc/dKaIqBhvo4qciXfJmITGH6ZGd8eZYNHza8t1y0e01AuqRhJwfWp26WQ=="; 1481 - }; 1482 - }; 1483 - "is-glob-4.0.1" = { 1484 - name = "is-glob"; 1485 - packageName = "is-glob"; 1486 - version = "4.0.1"; 1487 - src = fetchurl { 1488 - url = "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz"; 1489 - sha512 = "5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg=="; 1490 - }; 1491 - }; 1492 - "is-negative-zero-2.0.1" = { 1493 - name = "is-negative-zero"; 1494 - packageName = "is-negative-zero"; 1495 - version = "2.0.1"; 1496 - src = fetchurl { 1497 - url = "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz"; 1498 - sha512 = "2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w=="; 1499 - }; 1500 - }; 1501 - "is-number-7.0.0" = { 1502 - name = "is-number"; 1503 - packageName = "is-number"; 1504 - version = "7.0.0"; 1505 - src = fetchurl { 1506 - url = "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz"; 1507 - sha512 = "41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="; 1508 - }; 1509 - }; 1510 - "is-plain-obj-2.1.0" = { 1511 - name = "is-plain-obj"; 1512 - packageName = "is-plain-obj"; 1513 - version = "2.1.0"; 1514 - src = fetchurl { 1515 - url = "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz"; 1516 - sha512 = "YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA=="; 1517 - }; 1518 - }; 1519 - "is-regex-1.1.2" = { 1520 - name = "is-regex"; 1521 - packageName = "is-regex"; 1522 - version = "1.1.2"; 1523 - src = fetchurl { 1524 - url = "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz"; 1525 - sha512 = "axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg=="; 1526 - }; 1527 - }; 1528 - "is-symbol-1.0.3" = { 1529 - name = "is-symbol"; 1530 - packageName = "is-symbol"; 1531 - version = "1.0.3"; 1532 - src = fetchurl { 1533 - url = "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz"; 1534 - sha512 = "OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ=="; 1535 - }; 1536 - }; 1537 - "is-typed-array-1.1.4" = { 1538 - name = "is-typed-array"; 1539 - packageName = "is-typed-array"; 1540 - version = "1.1.4"; 1541 - src = fetchurl { 1542 - url = "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.4.tgz"; 1543 - sha512 = "ILaRgn4zaSrVNXNGtON6iFNotXW3hAPF3+0fB1usg2jFlWqo5fEDdmJkz0zBfoi7Dgskr8Khi2xZ8cXqZEfXNA=="; 1544 - }; 1545 - }; 1546 - "is-what-3.12.0" = { 1547 - name = "is-what"; 1548 - packageName = "is-what"; 1549 - version = "3.12.0"; 1550 - src = fetchurl { 1551 - url = "https://registry.npmjs.org/is-what/-/is-what-3.12.0.tgz"; 1552 - sha512 = "2ilQz5/f/o9V7WRWJQmpFYNmQFZ9iM+OXRonZKcYgTkCzjb949Vi4h282PD1UfmgHk666rcWonbRJ++KI41VGw=="; 1553 - }; 1554 - }; 1555 - "isarray-0.0.1" = { 1556 - name = "isarray"; 1557 - packageName = "isarray"; 1558 - version = "0.0.1"; 1559 - src = fetchurl { 1560 - url = "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz"; 1561 - sha1 = "8a18acfca9a8f4177e09abfc6038939b05d1eedf"; 1562 - }; 1563 - }; 1564 - "isarray-1.0.0" = { 1565 - name = "isarray"; 1566 - packageName = "isarray"; 1567 - version = "1.0.0"; 1568 - src = fetchurl { 1569 - url = "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz"; 1570 - sha1 = "bb935d48582cba168c06834957a54a3e07124f11"; 1571 - }; 1572 - }; 1573 - "isexe-2.0.0" = { 1574 - name = "isexe"; 1575 - packageName = "isexe"; 1576 - version = "2.0.0"; 1577 - src = fetchurl { 1578 - url = "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz"; 1579 - sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10"; 1580 - }; 1581 - }; 1582 - "js-yaml-3.14.0" = { 1583 - name = "js-yaml"; 1584 - packageName = "js-yaml"; 1585 - version = "3.14.0"; 1586 - src = fetchurl { 1587 - url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.0.tgz"; 1588 - sha512 = "/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A=="; 1589 - }; 1590 - }; 1591 - "json-stringify-safe-5.0.1" = { 1592 - name = "json-stringify-safe"; 1593 - packageName = "json-stringify-safe"; 1594 - version = "5.0.1"; 1595 - src = fetchurl { 1596 - url = "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz"; 1597 - sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"; 1598 - }; 1599 - }; 1600 - "jsonparse-1.3.1" = { 1601 - name = "jsonparse"; 1602 - packageName = "jsonparse"; 1603 - version = "1.3.1"; 1604 - src = fetchurl { 1605 - url = "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz"; 1606 - sha1 = "3f4dae4a91fac315f71062f8521cc239f1366280"; 1607 - }; 1608 - }; 1609 - "just-extend-4.1.1" = { 1610 - name = "just-extend"; 1611 - packageName = "just-extend"; 1612 - version = "4.1.1"; 1613 - src = fetchurl { 1614 - url = "https://registry.npmjs.org/just-extend/-/just-extend-4.1.1.tgz"; 1615 - sha512 = "aWgeGFW67BP3e5181Ep1Fv2v8z//iBJfrvyTnq8wG86vEESwmonn1zPBJ0VfmT9CJq2FIT0VsETtrNFm2a+SHA=="; 1616 - }; 1617 - }; 1618 - "kew-0.1.7" = { 1619 - name = "kew"; 1620 - packageName = "kew"; 1621 - version = "0.1.7"; 1622 - src = fetchurl { 1623 - url = "https://registry.npmjs.org/kew/-/kew-0.1.7.tgz"; 1624 - sha1 = "0a32a817ff1a9b3b12b8c9bacf4bc4d679af8e72"; 1625 - }; 1626 - }; 1627 - "labeled-stream-splicer-2.0.2" = { 1628 - name = "labeled-stream-splicer"; 1629 - packageName = "labeled-stream-splicer"; 1630 - version = "2.0.2"; 1631 - src = fetchurl { 1632 - url = "https://registry.npmjs.org/labeled-stream-splicer/-/labeled-stream-splicer-2.0.2.tgz"; 1633 - sha512 = "Ca4LSXFFZUjPScRaqOcFxneA0VpKZr4MMYCljyQr4LIewTLb3Y0IUTIsnBBsVubIeEfxeSZpSjSsRM8APEQaAw=="; 1634 - }; 1635 - }; 1636 - "locate-path-3.0.0" = { 1637 - name = "locate-path"; 1638 - packageName = "locate-path"; 1639 - version = "3.0.0"; 1640 - src = fetchurl { 1641 - url = "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz"; 1642 - sha512 = "7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A=="; 1643 - }; 1644 - }; 1645 - "locate-path-6.0.0" = { 1646 - name = "locate-path"; 1647 - packageName = "locate-path"; 1648 - version = "6.0.0"; 1649 - src = fetchurl { 1650 - url = "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz"; 1651 - sha512 = "iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw=="; 1652 - }; 1653 - }; 1654 - "lodash-4.17.20" = { 1655 - name = "lodash"; 1656 - packageName = "lodash"; 1657 - version = "4.17.20"; 1658 - src = fetchurl { 1659 - url = "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz"; 1660 - sha512 = "PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="; 1661 - }; 1662 - }; 1663 - "lodash.get-4.4.2" = { 1664 - name = "lodash.get"; 1665 - packageName = "lodash.get"; 1666 - version = "4.4.2"; 1667 - src = fetchurl { 1668 - url = "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz"; 1669 - sha1 = "2d177f652fa31e939b4438d5341499dfa3825e99"; 1670 - }; 1671 - }; 1672 - "lodash.memoize-3.0.4" = { 1673 - name = "lodash.memoize"; 1674 - packageName = "lodash.memoize"; 1675 - version = "3.0.4"; 1676 - src = fetchurl { 1677 - url = "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-3.0.4.tgz"; 1678 - sha1 = "2dcbd2c287cbc0a55cc42328bd0c736150d53e3f"; 1679 - }; 1680 - }; 1681 - "log-symbols-4.0.0" = { 1682 - name = "log-symbols"; 1683 - packageName = "log-symbols"; 1684 - version = "4.0.0"; 1685 - src = fetchurl { 1686 - url = "https://registry.npmjs.org/log-symbols/-/log-symbols-4.0.0.tgz"; 1687 - sha512 = "FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA=="; 1688 - }; 1689 - }; 1690 - "make-dir-2.1.0" = { 1691 - name = "make-dir"; 1692 - packageName = "make-dir"; 1693 - version = "2.1.0"; 1694 - src = fetchurl { 1695 - url = "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz"; 1696 - sha512 = "LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA=="; 1697 - }; 1698 - }; 1699 - "md5.js-1.3.5" = { 1700 - name = "md5.js"; 1701 - packageName = "md5.js"; 1702 - version = "1.3.5"; 1703 - src = fetchurl { 1704 - url = "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz"; 1705 - sha512 = "xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg=="; 1706 - }; 1707 - }; 1708 - "miller-rabin-4.0.1" = { 1709 - name = "miller-rabin"; 1710 - packageName = "miller-rabin"; 1711 - version = "4.0.1"; 1712 - src = fetchurl { 1713 - url = "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz"; 1714 - sha512 = "115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA=="; 1715 - }; 1716 - }; 1717 - "mime-1.2.11" = { 1718 - name = "mime"; 1719 - packageName = "mime"; 1720 - version = "1.2.11"; 1721 - src = fetchurl { 1722 - url = "https://registry.npmjs.org/mime/-/mime-1.2.11.tgz"; 1723 - sha1 = "58203eed86e3a5ef17aed2b7d9ebd47f0a60dd10"; 1724 - }; 1725 - }; 1726 - "mime-1.6.0" = { 1727 - name = "mime"; 1728 - packageName = "mime"; 1729 - version = "1.6.0"; 1730 - src = fetchurl { 1731 - url = "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz"; 1732 - sha512 = "x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg=="; 1733 - }; 1734 - }; 1735 - "minimalistic-assert-1.0.1" = { 1736 - name = "minimalistic-assert"; 1737 - packageName = "minimalistic-assert"; 1738 - version = "1.0.1"; 1739 - src = fetchurl { 1740 - url = "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz"; 1741 - sha512 = "UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A=="; 1742 - }; 1743 - }; 1744 - "minimalistic-crypto-utils-1.0.1" = { 1745 - name = "minimalistic-crypto-utils"; 1746 - packageName = "minimalistic-crypto-utils"; 1747 - version = "1.0.1"; 1748 - src = fetchurl { 1749 - url = "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz"; 1750 - sha1 = "f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"; 1751 - }; 1752 - }; 1753 - "minimatch-3.0.4" = { 1754 - name = "minimatch"; 1755 - packageName = "minimatch"; 1756 - version = "3.0.4"; 1757 - src = fetchurl { 1758 - url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz"; 1759 - sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA=="; 1760 - }; 1761 - }; 1762 - "minimist-1.2.5" = { 1763 - name = "minimist"; 1764 - packageName = "minimist"; 1765 - version = "1.2.5"; 1766 - src = fetchurl { 1767 - url = "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz"; 1768 - sha512 = "FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="; 1769 - }; 1770 - }; 1771 - "mkdirp-0.3.5" = { 1772 - name = "mkdirp"; 1773 - packageName = "mkdirp"; 1774 - version = "0.3.5"; 1775 - src = fetchurl { 1776 - url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.5.tgz"; 1777 - sha1 = "de3e5f8961c88c787ee1368df849ac4413eca8d7"; 1778 - }; 1779 - }; 1780 - "mkdirp-classic-0.5.3" = { 1781 - name = "mkdirp-classic"; 1782 - packageName = "mkdirp-classic"; 1783 - version = "0.5.3"; 1784 - src = fetchurl { 1785 - url = "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz"; 1786 - sha512 = "gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A=="; 1787 - }; 1788 - }; 1789 - "mocha-phantomjs-core-1.3.1" = { 1790 - name = "mocha-phantomjs-core"; 1791 - packageName = "mocha-phantomjs-core"; 1792 - version = "1.3.1"; 1793 - src = fetchurl { 1794 - url = "https://registry.npmjs.org/mocha-phantomjs-core/-/mocha-phantomjs-core-1.3.1.tgz"; 1795 - sha1 = "586538c8d71fa8de90c41a46acc0481c1fb83e18"; 1796 - }; 1797 - }; 1798 - "module-deps-6.2.3" = { 1799 - name = "module-deps"; 1800 - packageName = "module-deps"; 1801 - version = "6.2.3"; 1802 - src = fetchurl { 1803 - url = "https://registry.npmjs.org/module-deps/-/module-deps-6.2.3.tgz"; 1804 - sha512 = "fg7OZaQBcL4/L+AK5f4iVqf9OMbCclXfy/znXRxTVhJSeW5AIlS9AwheYwDaXM3lVW7OBeaeUEY3gbaC6cLlSA=="; 1805 - }; 1806 - }; 1807 - "ms-2.1.2" = { 1808 - name = "ms"; 1809 - packageName = "ms"; 1810 - version = "2.1.2"; 1811 - src = fetchurl { 1812 - url = "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"; 1813 - sha512 = "sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="; 1814 - }; 1815 - }; 1816 - "ms-2.1.3" = { 1817 - name = "ms"; 1818 - packageName = "ms"; 1819 - version = "2.1.3"; 1820 - src = fetchurl { 1821 - url = "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz"; 1822 - sha512 = "6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="; 1823 - }; 1824 - }; 1825 - "nanoid-3.1.12" = { 1826 - name = "nanoid"; 1827 - packageName = "nanoid"; 1828 - version = "3.1.12"; 1829 - src = fetchurl { 1830 - url = "https://registry.npmjs.org/nanoid/-/nanoid-3.1.12.tgz"; 1831 - sha512 = "1qstj9z5+x491jfiC4Nelk+f8XBad7LN20PmyWINJEMRSf3wcAjAWysw1qaA8z6NSKe2sjq1hRSDpBH5paCb6A=="; 1832 - }; 1833 - }; 1834 - "ncp-0.4.2" = { 1835 - name = "ncp"; 1836 - packageName = "ncp"; 1837 - version = "0.4.2"; 1838 - src = fetchurl { 1839 - url = "https://registry.npmjs.org/ncp/-/ncp-0.4.2.tgz"; 1840 - sha1 = "abcc6cbd3ec2ed2a729ff6e7c1fa8f01784a8574"; 1841 - }; 1842 - }; 1843 - "needle-2.6.0" = { 1844 - name = "needle"; 1845 - packageName = "needle"; 1846 - version = "2.6.0"; 1847 - src = fetchurl { 1848 - url = "https://registry.npmjs.org/needle/-/needle-2.6.0.tgz"; 1849 - sha512 = "KKYdza4heMsEfSWD7VPUIz3zX2XDwOyX2d+geb4vrERZMT5RMU6ujjaD+I5Yr54uZxQ2w6XRTAhHBbSCyovZBg=="; 1850 - }; 1851 - }; 1852 - "nise-4.0.4" = { 1853 - name = "nise"; 1854 - packageName = "nise"; 1855 - version = "4.0.4"; 1856 - src = fetchurl { 1857 - url = "https://registry.npmjs.org/nise/-/nise-4.0.4.tgz"; 1858 - sha512 = "bTTRUNlemx6deJa+ZyoCUTRvH3liK5+N6VQZ4NIw90AgDXY6iPnsqplNFf6STcj+ePk0H/xqxnP75Lr0J0Fq3A=="; 1859 - }; 1860 - }; 1861 - "node-uuid-1.4.8" = { 1862 - name = "node-uuid"; 1863 - packageName = "node-uuid"; 1864 - version = "1.4.8"; 1865 - src = fetchurl { 1866 - url = "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.8.tgz"; 1867 - sha1 = "b040eb0923968afabf8d32fb1f17f1167fdab907"; 1868 - }; 1869 - }; 1870 - "nopt-2.2.1" = { 1871 - name = "nopt"; 1872 - packageName = "nopt"; 1873 - version = "2.2.1"; 1874 - src = fetchurl { 1875 - url = "https://registry.npmjs.org/nopt/-/nopt-2.2.1.tgz"; 1876 - sha1 = "2aa09b7d1768487b3b89a9c5aa52335bff0baea7"; 1877 - }; 1878 - }; 1879 - "normalize-path-3.0.0" = { 1880 - name = "normalize-path"; 1881 - packageName = "normalize-path"; 1882 - version = "3.0.0"; 1883 - src = fetchurl { 1884 - url = "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz"; 1885 - sha512 = "6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="; 1886 - }; 1887 - }; 1888 - "npmconf-0.0.24" = { 1889 - name = "npmconf"; 1890 - packageName = "npmconf"; 1891 - version = "0.0.24"; 1892 - src = fetchurl { 1893 - url = "https://registry.npmjs.org/npmconf/-/npmconf-0.0.24.tgz"; 1894 - sha1 = "b78875b088ccc3c0afa3eceb3ce3244b1b52390c"; 1895 - }; 1896 - }; 1897 - "oauth-sign-0.3.0" = { 1898 - name = "oauth-sign"; 1899 - packageName = "oauth-sign"; 1900 - version = "0.3.0"; 1901 - src = fetchurl { 1902 - url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.3.0.tgz"; 1903 - sha1 = "cb540f93bb2b22a7d5941691a288d60e8ea9386e"; 1904 - }; 1905 - }; 1906 - "object-assign-4.1.1" = { 1907 - name = "object-assign"; 1908 - packageName = "object-assign"; 1909 - version = "4.1.1"; 1910 - src = fetchurl { 1911 - url = "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz"; 1912 - sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863"; 1913 - }; 1914 - }; 1915 - "object-inspect-1.9.0" = { 1916 - name = "object-inspect"; 1917 - packageName = "object-inspect"; 1918 - version = "1.9.0"; 1919 - src = fetchurl { 1920 - url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz"; 1921 - sha512 = "i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw=="; 1922 - }; 1923 - }; 1924 - "object-keys-1.1.1" = { 1925 - name = "object-keys"; 1926 - packageName = "object-keys"; 1927 - version = "1.1.1"; 1928 - src = fetchurl { 1929 - url = "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz"; 1930 - sha512 = "NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA=="; 1931 - }; 1932 - }; 1933 - "object.assign-4.1.2" = { 1934 - name = "object.assign"; 1935 - packageName = "object.assign"; 1936 - version = "4.1.2"; 1937 - src = fetchurl { 1938 - url = "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz"; 1939 - sha512 = "ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ=="; 1940 - }; 1941 - }; 1942 - "once-1.1.1" = { 1943 - name = "once"; 1944 - packageName = "once"; 1945 - version = "1.1.1"; 1946 - src = fetchurl { 1947 - url = "https://registry.npmjs.org/once/-/once-1.1.1.tgz"; 1948 - sha1 = "9db574933ccb08c3a7614d154032c09ea6f339e7"; 1949 - }; 1950 - }; 1951 - "once-1.4.0" = { 1952 - name = "once"; 1953 - packageName = "once"; 1954 - version = "1.4.0"; 1955 - src = fetchurl { 1956 - url = "https://registry.npmjs.org/once/-/once-1.4.0.tgz"; 1957 - sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1"; 1958 - }; 1959 - }; 1960 - "os-browserify-0.3.0" = { 1961 - name = "os-browserify"; 1962 - packageName = "os-browserify"; 1963 - version = "0.3.0"; 1964 - src = fetchurl { 1965 - url = "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz"; 1966 - sha1 = "854373c7f5c2315914fc9bfc6bd8238fdda1ec27"; 1967 - }; 1968 - }; 1969 - "osenv-0.0.3" = { 1970 - name = "osenv"; 1971 - packageName = "osenv"; 1972 - version = "0.0.3"; 1973 - src = fetchurl { 1974 - url = "https://registry.npmjs.org/osenv/-/osenv-0.0.3.tgz"; 1975 - sha1 = "cd6ad8ddb290915ad9e22765576025d411f29cb6"; 1976 - }; 1977 - }; 1978 - "p-limit-2.3.0" = { 1979 - name = "p-limit"; 1980 - packageName = "p-limit"; 1981 - version = "2.3.0"; 1982 - src = fetchurl { 1983 - url = "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz"; 1984 - sha512 = "//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w=="; 1985 - }; 1986 - }; 1987 - "p-limit-3.1.0" = { 1988 - name = "p-limit"; 1989 - packageName = "p-limit"; 1990 - version = "3.1.0"; 1991 - src = fetchurl { 1992 - url = "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz"; 1993 - sha512 = "TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ=="; 1994 - }; 1995 - }; 1996 - "p-locate-3.0.0" = { 1997 - name = "p-locate"; 1998 - packageName = "p-locate"; 1999 - version = "3.0.0"; 2000 - src = fetchurl { 2001 - url = "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz"; 2002 - sha512 = "x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ=="; 2003 - }; 2004 - }; 2005 - "p-locate-5.0.0" = { 2006 - name = "p-locate"; 2007 - packageName = "p-locate"; 2008 - version = "5.0.0"; 2009 - src = fetchurl { 2010 - url = "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz"; 2011 - sha512 = "LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw=="; 2012 - }; 2013 - }; 2014 - "p-try-2.2.0" = { 2015 - name = "p-try"; 2016 - packageName = "p-try"; 2017 - version = "2.2.0"; 2018 - src = fetchurl { 2019 - url = "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz"; 2020 - sha512 = "R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ=="; 2021 - }; 2022 - }; 2023 - "pako-1.0.11" = { 2024 - name = "pako"; 2025 - packageName = "pako"; 2026 - version = "1.0.11"; 2027 - src = fetchurl { 2028 - url = "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz"; 2029 - sha512 = "4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw=="; 2030 - }; 2031 - }; 2032 - "parents-1.0.1" = { 2033 - name = "parents"; 2034 - packageName = "parents"; 2035 - version = "1.0.1"; 2036 - src = fetchurl { 2037 - url = "https://registry.npmjs.org/parents/-/parents-1.0.1.tgz"; 2038 - sha1 = "fedd4d2bf193a77745fe71e371d73c3307d9c751"; 2039 - }; 2040 - }; 2041 - "parse-asn1-5.1.6" = { 2042 - name = "parse-asn1"; 2043 - packageName = "parse-asn1"; 2044 - version = "5.1.6"; 2045 - src = fetchurl { 2046 - url = "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz"; 2047 - sha512 = "RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw=="; 2048 - }; 2049 - }; 2050 - "parse-node-version-1.0.1" = { 2051 - name = "parse-node-version"; 2052 - packageName = "parse-node-version"; 2053 - version = "1.0.1"; 2054 - src = fetchurl { 2055 - url = "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz"; 2056 - sha512 = "3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA=="; 2057 - }; 2058 - }; 2059 - "path-browserify-1.0.1" = { 2060 - name = "path-browserify"; 2061 - packageName = "path-browserify"; 2062 - version = "1.0.1"; 2063 - src = fetchurl { 2064 - url = "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz"; 2065 - sha512 = "b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g=="; 2066 - }; 2067 - }; 2068 - "path-exists-3.0.0" = { 2069 - name = "path-exists"; 2070 - packageName = "path-exists"; 2071 - version = "3.0.0"; 2072 - src = fetchurl { 2073 - url = "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz"; 2074 - sha1 = "ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"; 2075 - }; 2076 - }; 2077 - "path-exists-4.0.0" = { 2078 - name = "path-exists"; 2079 - packageName = "path-exists"; 2080 - version = "4.0.0"; 2081 - src = fetchurl { 2082 - url = "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz"; 2083 - sha512 = "ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w=="; 2084 - }; 2085 - }; 2086 - "path-is-absolute-1.0.1" = { 2087 - name = "path-is-absolute"; 2088 - packageName = "path-is-absolute"; 2089 - version = "1.0.1"; 2090 - src = fetchurl { 2091 - url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; 2092 - sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"; 2093 - }; 2094 - }; 2095 - "path-parse-1.0.6" = { 2096 - name = "path-parse"; 2097 - packageName = "path-parse"; 2098 - version = "1.0.6"; 2099 - src = fetchurl { 2100 - url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz"; 2101 - sha512 = "GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw=="; 2102 - }; 2103 - }; 2104 - "path-platform-0.11.15" = { 2105 - name = "path-platform"; 2106 - packageName = "path-platform"; 2107 - version = "0.11.15"; 2108 - src = fetchurl { 2109 - url = "https://registry.npmjs.org/path-platform/-/path-platform-0.11.15.tgz"; 2110 - sha1 = "e864217f74c36850f0852b78dc7bf7d4a5721bf2"; 2111 - }; 2112 - }; 2113 - "path-to-regexp-1.8.0" = { 2114 - name = "path-to-regexp"; 2115 - packageName = "path-to-regexp"; 2116 - version = "1.8.0"; 2117 - src = fetchurl { 2118 - url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz"; 2119 - sha512 = "n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA=="; 2120 - }; 2121 - }; 2122 - "pbkdf2-3.1.1" = { 2123 - name = "pbkdf2"; 2124 - packageName = "pbkdf2"; 2125 - version = "3.1.1"; 2126 - src = fetchurl { 2127 - url = "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.1.tgz"; 2128 - sha512 = "4Ejy1OPxi9f2tt1rRV7Go7zmfDQ+ZectEQz3VGUQhgq62HtIRPDyG/JtnwIxs6x3uNMwo2V7q1fMvKjb+Tnpqg=="; 2129 - }; 2130 - }; 2131 - "phantomjs-1.9.7-15" = { 2132 - name = "phantomjs"; 2133 - packageName = "phantomjs"; 2134 - version = "1.9.7-15"; 2135 - src = fetchurl { 2136 - url = "https://registry.npmjs.org/phantomjs/-/phantomjs-1.9.7-15.tgz"; 2137 - sha1 = "0b3a7ce630486a83be91ff4e832eee20e971115b"; 2138 - }; 2139 - }; 2140 - "picomatch-2.2.2" = { 2141 - name = "picomatch"; 2142 - packageName = "picomatch"; 2143 - version = "2.2.2"; 2144 - src = fetchurl { 2145 - url = "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz"; 2146 - sha512 = "q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg=="; 2147 - }; 2148 - }; 2149 - "pify-4.0.1" = { 2150 - name = "pify"; 2151 - packageName = "pify"; 2152 - version = "4.0.1"; 2153 - src = fetchurl { 2154 - url = "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz"; 2155 - sha512 = "uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g=="; 2156 - }; 2157 - }; 2158 - "process-0.11.10" = { 2159 - name = "process"; 2160 - packageName = "process"; 2161 - version = "0.11.10"; 2162 - src = fetchurl { 2163 - url = "https://registry.npmjs.org/process/-/process-0.11.10.tgz"; 2164 - sha1 = "7332300e840161bda3e69a1d1d91a7d4bc16f182"; 2165 - }; 2166 - }; 2167 - "process-nextick-args-2.0.1" = { 2168 - name = "process-nextick-args"; 2169 - packageName = "process-nextick-args"; 2170 - version = "2.0.1"; 2171 - src = fetchurl { 2172 - url = "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz"; 2173 - sha512 = "3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="; 2174 - }; 2175 - }; 2176 - "progress-1.1.8" = { 2177 - name = "progress"; 2178 - packageName = "progress"; 2179 - version = "1.1.8"; 2180 - src = fetchurl { 2181 - url = "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz"; 2182 - sha1 = "e260c78f6161cdd9b0e56cc3e0a85de17c7a57be"; 2183 - }; 2184 - }; 2185 - "proto-list-1.2.4" = { 2186 - name = "proto-list"; 2187 - packageName = "proto-list"; 2188 - version = "1.2.4"; 2189 - src = fetchurl { 2190 - url = "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz"; 2191 - sha1 = "212d5bfe1318306a420f6402b8e26ff39647a849"; 2192 - }; 2193 - }; 2194 - "prr-1.0.1" = { 2195 - name = "prr"; 2196 - packageName = "prr"; 2197 - version = "1.0.1"; 2198 - src = fetchurl { 2199 - url = "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz"; 2200 - sha1 = "d3fc114ba06995a45ec6893f484ceb1d78f5f476"; 2201 - }; 2202 - }; 2203 - "psl-1.8.0" = { 2204 - name = "psl"; 2205 - packageName = "psl"; 2206 - version = "1.8.0"; 2207 - src = fetchurl { 2208 - url = "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz"; 2209 - sha512 = "RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ=="; 2210 - }; 2211 - }; 2212 - "public-encrypt-4.0.3" = { 2213 - name = "public-encrypt"; 2214 - packageName = "public-encrypt"; 2215 - version = "4.0.3"; 2216 - src = fetchurl { 2217 - url = "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz"; 2218 - sha512 = "zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q=="; 2219 - }; 2220 - }; 2221 - "punycode-1.3.2" = { 2222 - name = "punycode"; 2223 - packageName = "punycode"; 2224 - version = "1.3.2"; 2225 - src = fetchurl { 2226 - url = "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz"; 2227 - sha1 = "9653a036fb7c1ee42342f2325cceefea3926c48d"; 2228 - }; 2229 - }; 2230 - "punycode-1.4.1" = { 2231 - name = "punycode"; 2232 - packageName = "punycode"; 2233 - version = "1.4.1"; 2234 - src = fetchurl { 2235 - url = "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz"; 2236 - sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"; 2237 - }; 2238 - }; 2239 - "punycode-2.1.1" = { 2240 - name = "punycode"; 2241 - packageName = "punycode"; 2242 - version = "2.1.1"; 2243 - src = fetchurl { 2244 - url = "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz"; 2245 - sha512 = "XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="; 2246 - }; 2247 - }; 2248 - "qs-0.6.6" = { 2249 - name = "qs"; 2250 - packageName = "qs"; 2251 - version = "0.6.6"; 2252 - src = fetchurl { 2253 - url = "https://registry.npmjs.org/qs/-/qs-0.6.6.tgz"; 2254 - sha1 = "6e015098ff51968b8a3c819001d5f2c89bc4b107"; 2255 - }; 2256 - }; 2257 - "querystring-0.2.0" = { 2258 - name = "querystring"; 2259 - packageName = "querystring"; 2260 - version = "0.2.0"; 2261 - src = fetchurl { 2262 - url = "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz"; 2263 - sha1 = "b209849203bb25df820da756e747005878521620"; 2264 - }; 2265 - }; 2266 - "querystring-es3-0.2.1" = { 2267 - name = "querystring-es3"; 2268 - packageName = "querystring-es3"; 2269 - version = "0.2.1"; 2270 - src = fetchurl { 2271 - url = "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz"; 2272 - sha1 = "9ec61f79049875707d69414596fd907a4d711e73"; 2273 - }; 2274 - }; 2275 - "randombytes-2.1.0" = { 2276 - name = "randombytes"; 2277 - packageName = "randombytes"; 2278 - version = "2.1.0"; 2279 - src = fetchurl { 2280 - url = "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz"; 2281 - sha512 = "vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ=="; 2282 - }; 2283 - }; 2284 - "randomfill-1.0.4" = { 2285 - name = "randomfill"; 2286 - packageName = "randomfill"; 2287 - version = "1.0.4"; 2288 - src = fetchurl { 2289 - url = "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz"; 2290 - sha512 = "87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw=="; 2291 - }; 2292 - }; 2293 - "read-only-stream-2.0.0" = { 2294 - name = "read-only-stream"; 2295 - packageName = "read-only-stream"; 2296 - version = "2.0.0"; 2297 - src = fetchurl { 2298 - url = "https://registry.npmjs.org/read-only-stream/-/read-only-stream-2.0.0.tgz"; 2299 - sha1 = "2724fd6a8113d73764ac288d4386270c1dbf17f0"; 2300 - }; 2301 - }; 2302 - "readable-stream-1.1.14" = { 2303 - name = "readable-stream"; 2304 - packageName = "readable-stream"; 2305 - version = "1.1.14"; 2306 - src = fetchurl { 2307 - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz"; 2308 - sha1 = "7cf4c54ef648e3813084c636dd2079e166c081d9"; 2309 - }; 2310 - }; 2311 - "readable-stream-2.3.7" = { 2312 - name = "readable-stream"; 2313 - packageName = "readable-stream"; 2314 - version = "2.3.7"; 2315 - src = fetchurl { 2316 - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz"; 2317 - sha512 = "Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw=="; 2318 - }; 2319 - }; 2320 - "readable-stream-3.6.0" = { 2321 - name = "readable-stream"; 2322 - packageName = "readable-stream"; 2323 - version = "3.6.0"; 2324 - src = fetchurl { 2325 - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz"; 2326 - sha512 = "BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA=="; 2327 - }; 2328 - }; 2329 - "readdirp-3.5.0" = { 2330 - name = "readdirp"; 2331 - packageName = "readdirp"; 2332 - version = "3.5.0"; 2333 - src = fetchurl { 2334 - url = "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz"; 2335 - sha512 = "cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ=="; 2336 - }; 2337 - }; 2338 - "rechoir-0.6.2" = { 2339 - name = "rechoir"; 2340 - packageName = "rechoir"; 2341 - version = "0.6.2"; 2342 - src = fetchurl { 2343 - url = "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz"; 2344 - sha1 = "85204b54dba82d5742e28c96756ef43af50e3384"; 2345 - }; 2346 - }; 2347 - "request-2.36.0" = { 2348 - name = "request"; 2349 - packageName = "request"; 2350 - version = "2.36.0"; 2351 - src = fetchurl { 2352 - url = "https://registry.npmjs.org/request/-/request-2.36.0.tgz"; 2353 - sha1 = "28c6c04262c7b9ffdd21b9255374517ee6d943f5"; 2354 - }; 2355 - }; 2356 - "request-progress-0.3.1" = { 2357 - name = "request-progress"; 2358 - packageName = "request-progress"; 2359 - version = "0.3.1"; 2360 - src = fetchurl { 2361 - url = "https://registry.npmjs.org/request-progress/-/request-progress-0.3.1.tgz"; 2362 - sha1 = "0721c105d8a96ac6b2ce8b2c89ae2d5ecfcf6b3a"; 2363 - }; 2364 - }; 2365 - "require-directory-2.1.1" = { 2366 - name = "require-directory"; 2367 - packageName = "require-directory"; 2368 - version = "2.1.1"; 2369 - src = fetchurl { 2370 - url = "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz"; 2371 - sha1 = "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"; 2372 - }; 2373 - }; 2374 - "require-main-filename-2.0.0" = { 2375 - name = "require-main-filename"; 2376 - packageName = "require-main-filename"; 2377 - version = "2.0.0"; 2378 - src = fetchurl { 2379 - url = "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz"; 2380 - sha512 = "NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg=="; 2381 - }; 2382 - }; 2383 - "resolve-1.19.0" = { 2384 - name = "resolve"; 2385 - packageName = "resolve"; 2386 - version = "1.19.0"; 2387 - src = fetchurl { 2388 - url = "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz"; 2389 - sha512 = "rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg=="; 2390 - }; 2391 - }; 2392 - "rimraf-2.2.8" = { 2393 - name = "rimraf"; 2394 - packageName = "rimraf"; 2395 - version = "2.2.8"; 2396 - src = fetchurl { 2397 - url = "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz"; 2398 - sha1 = "e439be2aaee327321952730f99a8929e4fc50582"; 2399 - }; 2400 - }; 2401 - "ripemd160-2.0.2" = { 2402 - name = "ripemd160"; 2403 - packageName = "ripemd160"; 2404 - version = "2.0.2"; 2405 - src = fetchurl { 2406 - url = "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz"; 2407 - sha512 = "ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA=="; 2408 - }; 2409 - }; 2410 - "safe-buffer-5.1.2" = { 2411 - name = "safe-buffer"; 2412 - packageName = "safe-buffer"; 2413 - version = "5.1.2"; 2414 - src = fetchurl { 2415 - url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz"; 2416 - sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="; 2417 - }; 2418 - }; 2419 - "safe-buffer-5.2.1" = { 2420 - name = "safe-buffer"; 2421 - packageName = "safe-buffer"; 2422 - version = "5.2.1"; 2423 - src = fetchurl { 2424 - url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz"; 2425 - sha512 = "rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="; 2426 - }; 2427 - }; 2428 - "safer-buffer-2.1.2" = { 2429 - name = "safer-buffer"; 2430 - packageName = "safer-buffer"; 2431 - version = "2.1.2"; 2432 - src = fetchurl { 2433 - url = "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz"; 2434 - sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; 2435 - }; 2436 - }; 2437 - "sax-1.2.4" = { 2438 - name = "sax"; 2439 - packageName = "sax"; 2440 - version = "1.2.4"; 2441 - src = fetchurl { 2442 - url = "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz"; 2443 - sha512 = "NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="; 2444 - }; 2445 - }; 2446 - "semver-1.1.4" = { 2447 - name = "semver"; 2448 - packageName = "semver"; 2449 - version = "1.1.4"; 2450 - src = fetchurl { 2451 - url = "https://registry.npmjs.org/semver/-/semver-1.1.4.tgz"; 2452 - sha1 = "2e5a4e72bab03472cc97f72753b4508912ef5540"; 2453 - }; 2454 - }; 2455 - "semver-5.7.1" = { 2456 - name = "semver"; 2457 - packageName = "semver"; 2458 - version = "5.7.1"; 2459 - src = fetchurl { 2460 - url = "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz"; 2461 - sha512 = "sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ=="; 2462 - }; 2463 - }; 2464 - "serialize-javascript-5.0.1" = { 2465 - name = "serialize-javascript"; 2466 - packageName = "serialize-javascript"; 2467 - version = "5.0.1"; 2468 - src = fetchurl { 2469 - url = "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz"; 2470 - sha512 = "SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA=="; 2471 - }; 2472 - }; 2473 - "set-blocking-2.0.0" = { 2474 - name = "set-blocking"; 2475 - packageName = "set-blocking"; 2476 - version = "2.0.0"; 2477 - src = fetchurl { 2478 - url = "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz"; 2479 - sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7"; 2480 - }; 2481 - }; 2482 - "sha.js-2.4.11" = { 2483 - name = "sha.js"; 2484 - packageName = "sha.js"; 2485 - version = "2.4.11"; 2486 - src = fetchurl { 2487 - url = "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz"; 2488 - sha512 = "QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ=="; 2489 - }; 2490 - }; 2491 - "shasum-object-1.0.0" = { 2492 - name = "shasum-object"; 2493 - packageName = "shasum-object"; 2494 - version = "1.0.0"; 2495 - src = fetchurl { 2496 - url = "https://registry.npmjs.org/shasum-object/-/shasum-object-1.0.0.tgz"; 2497 - sha512 = "Iqo5rp/3xVi6M4YheapzZhhGPVs0yZwHj7wvwQ1B9z8H6zk+FEnI7y3Teq7qwnekfEhu8WmG2z0z4iWZaxLWVg=="; 2498 - }; 2499 - }; 2500 - "shell-quote-1.7.2" = { 2501 - name = "shell-quote"; 2502 - packageName = "shell-quote"; 2503 - version = "1.7.2"; 2504 - src = fetchurl { 2505 - url = "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz"; 2506 - sha512 = "mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg=="; 2507 - }; 2508 - }; 2509 - "shelljs-0.3.0" = { 2510 - name = "shelljs"; 2511 - packageName = "shelljs"; 2512 - version = "0.3.0"; 2513 - src = fetchurl { 2514 - url = "https://registry.npmjs.org/shelljs/-/shelljs-0.3.0.tgz"; 2515 - sha1 = "3596e6307a781544f591f37da618360f31db57b1"; 2516 - }; 2517 - }; 2518 - "should-equal-2.0.0" = { 2519 - name = "should-equal"; 2520 - packageName = "should-equal"; 2521 - version = "2.0.0"; 2522 - src = fetchurl { 2523 - url = "https://registry.npmjs.org/should-equal/-/should-equal-2.0.0.tgz"; 2524 - sha512 = "ZP36TMrK9euEuWQYBig9W55WPC7uo37qzAEmbjHz4gfyuXrEUgF8cUvQVO+w+d3OMfPvSRQJ22lSm8MQJ43LTA=="; 2525 - }; 2526 - }; 2527 - "should-format-3.0.3" = { 2528 - name = "should-format"; 2529 - packageName = "should-format"; 2530 - version = "3.0.3"; 2531 - src = fetchurl { 2532 - url = "https://registry.npmjs.org/should-format/-/should-format-3.0.3.tgz"; 2533 - sha1 = "9bfc8f74fa39205c53d38c34d717303e277124f1"; 2534 - }; 2535 - }; 2536 - "should-type-1.4.0" = { 2537 - name = "should-type"; 2538 - packageName = "should-type"; 2539 - version = "1.4.0"; 2540 - src = fetchurl { 2541 - url = "https://registry.npmjs.org/should-type/-/should-type-1.4.0.tgz"; 2542 - sha1 = "0756d8ce846dfd09843a6947719dfa0d4cff5cf3"; 2543 - }; 2544 - }; 2545 - "should-type-adaptors-1.1.0" = { 2546 - name = "should-type-adaptors"; 2547 - packageName = "should-type-adaptors"; 2548 - version = "1.1.0"; 2549 - src = fetchurl { 2550 - url = "https://registry.npmjs.org/should-type-adaptors/-/should-type-adaptors-1.1.0.tgz"; 2551 - sha512 = "JA4hdoLnN+kebEp2Vs8eBe9g7uy0zbRo+RMcU0EsNy+R+k049Ki+N5tT5Jagst2g7EAja+euFuoXFCa8vIklfA=="; 2552 - }; 2553 - }; 2554 - "should-util-1.0.1" = { 2555 - name = "should-util"; 2556 - packageName = "should-util"; 2557 - version = "1.0.1"; 2558 - src = fetchurl { 2559 - url = "https://registry.npmjs.org/should-util/-/should-util-1.0.1.tgz"; 2560 - sha512 = "oXF8tfxx5cDk8r2kYqlkUJzZpDBqVY/II2WhvU0n9Y3XYvAYRmeaf1PvvIvTgPnv4KJ+ES5M0PyDq5Jp+Ygy2g=="; 2561 - }; 2562 - }; 2563 - "simple-concat-1.0.1" = { 2564 - name = "simple-concat"; 2565 - packageName = "simple-concat"; 2566 - version = "1.0.1"; 2567 - src = fetchurl { 2568 - url = "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz"; 2569 - sha512 = "cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q=="; 2570 - }; 2571 - }; 2572 - "sntp-0.2.4" = { 2573 - name = "sntp"; 2574 - packageName = "sntp"; 2575 - version = "0.2.4"; 2576 - src = fetchurl { 2577 - url = "https://registry.npmjs.org/sntp/-/sntp-0.2.4.tgz"; 2578 - sha1 = "fb885f18b0f3aad189f824862536bceeec750900"; 2579 - }; 2580 - }; 2581 - "source-map-0.5.7" = { 2582 - name = "source-map"; 2583 - packageName = "source-map"; 2584 - version = "0.5.7"; 2585 - src = fetchurl { 2586 - url = "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz"; 2587 - sha1 = "8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"; 2588 - }; 2589 - }; 2590 - "source-map-0.6.1" = { 2591 - name = "source-map"; 2592 - packageName = "source-map"; 2593 - version = "0.6.1"; 2594 - src = fetchurl { 2595 - url = "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz"; 2596 - sha512 = "UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="; 2597 - }; 2598 - }; 2599 - "sprintf-js-1.0.3" = { 2600 - name = "sprintf-js"; 2601 - packageName = "sprintf-js"; 2602 - version = "1.0.3"; 2603 - src = fetchurl { 2604 - url = "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz"; 2605 - sha1 = "04e6926f662895354f3dd015203633b857297e2c"; 2606 - }; 2607 - }; 2608 - "stream-browserify-3.0.0" = { 2609 - name = "stream-browserify"; 2610 - packageName = "stream-browserify"; 2611 - version = "3.0.0"; 2612 - src = fetchurl { 2613 - url = "https://registry.npmjs.org/stream-browserify/-/stream-browserify-3.0.0.tgz"; 2614 - sha512 = "H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA=="; 2615 - }; 2616 - }; 2617 - "stream-combiner2-1.1.1" = { 2618 - name = "stream-combiner2"; 2619 - packageName = "stream-combiner2"; 2620 - version = "1.1.1"; 2621 - src = fetchurl { 2622 - url = "https://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.1.1.tgz"; 2623 - sha1 = "fb4d8a1420ea362764e21ad4780397bebcb41cbe"; 2624 - }; 2625 - }; 2626 - "stream-http-3.1.1" = { 2627 - name = "stream-http"; 2628 - packageName = "stream-http"; 2629 - version = "3.1.1"; 2630 - src = fetchurl { 2631 - url = "https://registry.npmjs.org/stream-http/-/stream-http-3.1.1.tgz"; 2632 - sha512 = "S7OqaYu0EkFpgeGFb/NPOoPLxFko7TPqtEeFg5DXPB4v/KETHG0Ln6fRFrNezoelpaDKmycEmmZ81cC9DAwgYg=="; 2633 - }; 2634 - }; 2635 - "stream-splicer-2.0.1" = { 2636 - name = "stream-splicer"; 2637 - packageName = "stream-splicer"; 2638 - version = "2.0.1"; 2639 - src = fetchurl { 2640 - url = "https://registry.npmjs.org/stream-splicer/-/stream-splicer-2.0.1.tgz"; 2641 - sha512 = "Xizh4/NPuYSyAXyT7g8IvdJ9HJpxIGL9PjyhtywCZvvP0OPIdqyrr4dMikeuvY8xahpdKEBlBTySe583totajg=="; 2642 - }; 2643 - }; 2644 - "string-width-2.1.1" = { 2645 - name = "string-width"; 2646 - packageName = "string-width"; 2647 - version = "2.1.1"; 2648 - src = fetchurl { 2649 - url = "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz"; 2650 - sha512 = "nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw=="; 2651 - }; 2652 - }; 2653 - "string-width-3.1.0" = { 2654 - name = "string-width"; 2655 - packageName = "string-width"; 2656 - version = "3.1.0"; 2657 - src = fetchurl { 2658 - url = "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz"; 2659 - sha512 = "vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w=="; 2660 - }; 2661 - }; 2662 - "string.prototype.trimend-1.0.3" = { 2663 - name = "string.prototype.trimend"; 2664 - packageName = "string.prototype.trimend"; 2665 - version = "1.0.3"; 2666 - src = fetchurl { 2667 - url = "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz"; 2668 - sha512 = "ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw=="; 2669 - }; 2670 - }; 2671 - "string.prototype.trimstart-1.0.3" = { 2672 - name = "string.prototype.trimstart"; 2673 - packageName = "string.prototype.trimstart"; 2674 - version = "1.0.3"; 2675 - src = fetchurl { 2676 - url = "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz"; 2677 - sha512 = "oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg=="; 2678 - }; 2679 - }; 2680 - "string_decoder-0.10.31" = { 2681 - name = "string_decoder"; 2682 - packageName = "string_decoder"; 2683 - version = "0.10.31"; 2684 - src = fetchurl { 2685 - url = "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz"; 2686 - sha1 = "62e203bc41766c6c28c9fc84301dab1c5310fa94"; 2687 - }; 2688 - }; 2689 - "string_decoder-1.1.1" = { 2690 - name = "string_decoder"; 2691 - packageName = "string_decoder"; 2692 - version = "1.1.1"; 2693 - src = fetchurl { 2694 - url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz"; 2695 - sha512 = "n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="; 2696 - }; 2697 - }; 2698 - "string_decoder-1.3.0" = { 2699 - name = "string_decoder"; 2700 - packageName = "string_decoder"; 2701 - version = "1.3.0"; 2702 - src = fetchurl { 2703 - url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz"; 2704 - sha512 = "hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA=="; 2705 - }; 2706 - }; 2707 - "strip-ansi-4.0.0" = { 2708 - name = "strip-ansi"; 2709 - packageName = "strip-ansi"; 2710 - version = "4.0.0"; 2711 - src = fetchurl { 2712 - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz"; 2713 - sha1 = "a8479022eb1ac368a871389b635262c505ee368f"; 2714 - }; 2715 - }; 2716 - "strip-ansi-5.2.0" = { 2717 - name = "strip-ansi"; 2718 - packageName = "strip-ansi"; 2719 - version = "5.2.0"; 2720 - src = fetchurl { 2721 - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz"; 2722 - sha512 = "DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA=="; 2723 - }; 2724 - }; 2725 - "strip-json-comments-1.0.4" = { 2726 - name = "strip-json-comments"; 2727 - packageName = "strip-json-comments"; 2728 - version = "1.0.4"; 2729 - src = fetchurl { 2730 - url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz"; 2731 - sha1 = "1e15fbcac97d3ee99bf2d73b4c656b082bbafb91"; 2732 - }; 2733 - }; 2734 - "strip-json-comments-3.1.1" = { 2735 - name = "strip-json-comments"; 2736 - packageName = "strip-json-comments"; 2737 - version = "3.1.1"; 2738 - src = fetchurl { 2739 - url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz"; 2740 - sha512 = "6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig=="; 2741 - }; 2742 - }; 2743 - "subarg-1.0.0" = { 2744 - name = "subarg"; 2745 - packageName = "subarg"; 2746 - version = "1.0.0"; 2747 - src = fetchurl { 2748 - url = "https://registry.npmjs.org/subarg/-/subarg-1.0.0.tgz"; 2749 - sha1 = "f62cf17581e996b48fc965699f54c06ae268b8d2"; 2750 - }; 2751 - }; 2752 - "supports-color-7.2.0" = { 2753 - name = "supports-color"; 2754 - packageName = "supports-color"; 2755 - version = "7.2.0"; 2756 - src = fetchurl { 2757 - url = "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz"; 2758 - sha512 = "qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="; 2759 - }; 2760 - }; 2761 - "syntax-error-1.4.0" = { 2762 - name = "syntax-error"; 2763 - packageName = "syntax-error"; 2764 - version = "1.4.0"; 2765 - src = fetchurl { 2766 - url = "https://registry.npmjs.org/syntax-error/-/syntax-error-1.4.0.tgz"; 2767 - sha512 = "YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w=="; 2768 - }; 2769 - }; 2770 - "throttleit-0.0.2" = { 2771 - name = "throttleit"; 2772 - packageName = "throttleit"; 2773 - version = "0.0.2"; 2774 - src = fetchurl { 2775 - url = "https://registry.npmjs.org/throttleit/-/throttleit-0.0.2.tgz"; 2776 - sha1 = "cfedf88e60c00dd9697b61fdd2a8343a9b680eaf"; 2777 - }; 2778 - }; 2779 - "through-2.3.8" = { 2780 - name = "through"; 2781 - packageName = "through"; 2782 - version = "2.3.8"; 2783 - src = fetchurl { 2784 - url = "https://registry.npmjs.org/through/-/through-2.3.8.tgz"; 2785 - sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"; 2786 - }; 2787 - }; 2788 - "through2-2.0.5" = { 2789 - name = "through2"; 2790 - packageName = "through2"; 2791 - version = "2.0.5"; 2792 - src = fetchurl { 2793 - url = "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz"; 2794 - sha512 = "/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ=="; 2795 - }; 2796 - }; 2797 - "timers-browserify-1.4.2" = { 2798 - name = "timers-browserify"; 2799 - packageName = "timers-browserify"; 2800 - version = "1.4.2"; 2801 - src = fetchurl { 2802 - url = "https://registry.npmjs.org/timers-browserify/-/timers-browserify-1.4.2.tgz"; 2803 - sha1 = "c9c58b575be8407375cb5e2462dacee74359f41d"; 2804 - }; 2805 - }; 2806 - "to-regex-range-5.0.1" = { 2807 - name = "to-regex-range"; 2808 - packageName = "to-regex-range"; 2809 - version = "5.0.1"; 2810 - src = fetchurl { 2811 - url = "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz"; 2812 - sha512 = "65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ=="; 2813 - }; 2814 - }; 2815 - "tough-cookie-4.0.0" = { 2816 - name = "tough-cookie"; 2817 - packageName = "tough-cookie"; 2818 - version = "4.0.0"; 2819 - src = fetchurl { 2820 - url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz"; 2821 - sha512 = "tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg=="; 2822 - }; 2823 - }; 2824 - "tslib-1.14.1" = { 2825 - name = "tslib"; 2826 - packageName = "tslib"; 2827 - version = "1.14.1"; 2828 - src = fetchurl { 2829 - url = "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz"; 2830 - sha512 = "Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="; 2831 - }; 2832 - }; 2833 - "tty-browserify-0.0.1" = { 2834 - name = "tty-browserify"; 2835 - packageName = "tty-browserify"; 2836 - version = "0.0.1"; 2837 - src = fetchurl { 2838 - url = "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.1.tgz"; 2839 - sha512 = "C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw=="; 2840 - }; 2841 - }; 2842 - "tunnel-agent-0.4.3" = { 2843 - name = "tunnel-agent"; 2844 - packageName = "tunnel-agent"; 2845 - version = "0.4.3"; 2846 - src = fetchurl { 2847 - url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.3.tgz"; 2848 - sha1 = "6373db76909fe570e08d73583365ed828a74eeeb"; 2849 - }; 2850 - }; 2851 - "type-detect-4.0.8" = { 2852 - name = "type-detect"; 2853 - packageName = "type-detect"; 2854 - version = "4.0.8"; 2855 - src = fetchurl { 2856 - url = "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz"; 2857 - sha512 = "0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g=="; 2858 - }; 2859 - }; 2860 - "typedarray-0.0.6" = { 2861 - name = "typedarray"; 2862 - packageName = "typedarray"; 2863 - version = "0.0.6"; 2864 - src = fetchurl { 2865 - url = "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz"; 2866 - sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777"; 2867 - }; 2868 - }; 2869 - "umd-3.0.3" = { 2870 - name = "umd"; 2871 - packageName = "umd"; 2872 - version = "3.0.3"; 2873 - src = fetchurl { 2874 - url = "https://registry.npmjs.org/umd/-/umd-3.0.3.tgz"; 2875 - sha512 = "4IcGSufhFshvLNcMCV80UnQVlZ5pMOC8mvNPForqwA4+lzYQuetTESLDQkeLmihq8bRcnpbQa48Wb8Lh16/xow=="; 2876 - }; 2877 - }; 2878 - "undeclared-identifiers-1.1.3" = { 2879 - name = "undeclared-identifiers"; 2880 - packageName = "undeclared-identifiers"; 2881 - version = "1.1.3"; 2882 - src = fetchurl { 2883 - url = "https://registry.npmjs.org/undeclared-identifiers/-/undeclared-identifiers-1.1.3.tgz"; 2884 - sha512 = "pJOW4nxjlmfwKApE4zvxLScM/njmwj/DiUBv7EabwE4O8kRUy+HIwxQtZLBPll/jx1LJyBcqNfB3/cpv9EZwOw=="; 2885 - }; 2886 - }; 2887 - "universalify-0.1.2" = { 2888 - name = "universalify"; 2889 - packageName = "universalify"; 2890 - version = "0.1.2"; 2891 - src = fetchurl { 2892 - url = "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz"; 2893 - sha512 = "rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg=="; 2894 - }; 2895 - }; 2896 - "url-0.11.0" = { 2897 - name = "url"; 2898 - packageName = "url"; 2899 - version = "0.11.0"; 2900 - src = fetchurl { 2901 - url = "https://registry.npmjs.org/url/-/url-0.11.0.tgz"; 2902 - sha1 = "3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"; 2903 - }; 2904 - }; 2905 - "util-0.10.3" = { 2906 - name = "util"; 2907 - packageName = "util"; 2908 - version = "0.10.3"; 2909 - src = fetchurl { 2910 - url = "https://registry.npmjs.org/util/-/util-0.10.3.tgz"; 2911 - sha1 = "7afb1afe50805246489e3db7fe0ed379336ac0f9"; 2912 - }; 2913 - }; 2914 - "util-0.12.3" = { 2915 - name = "util"; 2916 - packageName = "util"; 2917 - version = "0.12.3"; 2918 - src = fetchurl { 2919 - url = "https://registry.npmjs.org/util/-/util-0.12.3.tgz"; 2920 - sha512 = "I8XkoQwE+fPQEhy9v012V+TSdH2kp9ts29i20TaaDUXsg7x/onePbhFJUExBfv/2ay1ZOp/Vsm3nDlmnFGSAog=="; 2921 - }; 2922 - }; 2923 - "util-deprecate-1.0.2" = { 2924 - name = "util-deprecate"; 2925 - packageName = "util-deprecate"; 2926 - version = "1.0.2"; 2927 - src = fetchurl { 2928 - url = "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"; 2929 - sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf"; 2930 - }; 2931 - }; 2932 - "vm-browserify-1.1.2" = { 2933 - name = "vm-browserify"; 2934 - packageName = "vm-browserify"; 2935 - version = "1.1.2"; 2936 - src = fetchurl { 2937 - url = "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz"; 2938 - sha512 = "2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ=="; 2939 - }; 2940 - }; 2941 - "which-1.0.9" = { 2942 - name = "which"; 2943 - packageName = "which"; 2944 - version = "1.0.9"; 2945 - src = fetchurl { 2946 - url = "https://registry.npmjs.org/which/-/which-1.0.9.tgz"; 2947 - sha1 = "460c1da0f810103d0321a9b633af9e575e64486f"; 2948 - }; 2949 - }; 2950 - "which-2.0.2" = { 2951 - name = "which"; 2952 - packageName = "which"; 2953 - version = "2.0.2"; 2954 - src = fetchurl { 2955 - url = "https://registry.npmjs.org/which/-/which-2.0.2.tgz"; 2956 - sha512 = "BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA=="; 2957 - }; 2958 - }; 2959 - "which-module-2.0.0" = { 2960 - name = "which-module"; 2961 - packageName = "which-module"; 2962 - version = "2.0.0"; 2963 - src = fetchurl { 2964 - url = "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz"; 2965 - sha1 = "d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"; 2966 - }; 2967 - }; 2968 - "which-typed-array-1.1.4" = { 2969 - name = "which-typed-array"; 2970 - packageName = "which-typed-array"; 2971 - version = "1.1.4"; 2972 - src = fetchurl { 2973 - url = "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.4.tgz"; 2974 - sha512 = "49E0SpUe90cjpoc7BOJwyPHRqSAd12c10Qm2amdEZrJPCY2NDxaW01zHITrem+rnETY3dwrbH3UUrUwagfCYDA=="; 2975 - }; 2976 - }; 2977 - "wide-align-1.1.3" = { 2978 - name = "wide-align"; 2979 - packageName = "wide-align"; 2980 - version = "1.1.3"; 2981 - src = fetchurl { 2982 - url = "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz"; 2983 - sha512 = "QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA=="; 2984 - }; 2985 - }; 2986 - "workerpool-6.0.2" = { 2987 - name = "workerpool"; 2988 - packageName = "workerpool"; 2989 - version = "6.0.2"; 2990 - src = fetchurl { 2991 - url = "https://registry.npmjs.org/workerpool/-/workerpool-6.0.2.tgz"; 2992 - sha512 = "DSNyvOpFKrNusaaUwk+ej6cBj1bmhLcBfj80elGk+ZIo5JSkq+unB1dLKEOcNfJDZgjGICfhQ0Q5TbP0PvF4+Q=="; 2993 - }; 2994 - }; 2995 - "wrap-ansi-5.1.0" = { 2996 - name = "wrap-ansi"; 2997 - packageName = "wrap-ansi"; 2998 - version = "5.1.0"; 2999 - src = fetchurl { 3000 - url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz"; 3001 - sha512 = "QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q=="; 3002 - }; 3003 - }; 3004 - "wrappy-1.0.2" = { 3005 - name = "wrappy"; 3006 - packageName = "wrappy"; 3007 - version = "1.0.2"; 3008 - src = fetchurl { 3009 - url = "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"; 3010 - sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"; 3011 - }; 3012 - }; 3013 - "xtend-4.0.2" = { 3014 - name = "xtend"; 3015 - packageName = "xtend"; 3016 - version = "4.0.2"; 3017 - src = fetchurl { 3018 - url = "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz"; 3019 - sha512 = "LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="; 3020 - }; 3021 - }; 3022 - "y18n-4.0.1" = { 3023 - name = "y18n"; 3024 - packageName = "y18n"; 3025 - version = "4.0.1"; 3026 - src = fetchurl { 3027 - url = "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz"; 3028 - sha512 = "wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ=="; 3029 - }; 3030 - }; 3031 - "yargs-13.3.2" = { 3032 - name = "yargs"; 3033 - packageName = "yargs"; 3034 - version = "13.3.2"; 3035 - src = fetchurl { 3036 - url = "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz"; 3037 - sha512 = "AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw=="; 3038 - }; 3039 - }; 3040 - "yargs-parser-13.1.2" = { 3041 - name = "yargs-parser"; 3042 - packageName = "yargs-parser"; 3043 - version = "13.1.2"; 3044 - src = fetchurl { 3045 - url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz"; 3046 - sha512 = "3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg=="; 3047 - }; 3048 - }; 3049 - "yargs-unparser-2.0.0" = { 3050 - name = "yargs-unparser"; 3051 - packageName = "yargs-unparser"; 3052 - version = "2.0.0"; 3053 - src = fetchurl { 3054 - url = "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz"; 3055 - sha512 = "7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA=="; 3056 - }; 3057 - }; 3058 - "yocto-queue-0.1.0" = { 3059 - name = "yocto-queue"; 3060 - packageName = "yocto-queue"; 3061 - version = "0.1.0"; 3062 - src = fetchurl { 3063 - url = "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz"; 3064 - sha512 = "rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q=="; 3065 - }; 3066 - }; 3067 - }; 3068 - in 3069 - { 3070 - marked = nodeEnv.buildNodePackage { 3071 - name = "marked"; 3072 - packageName = "marked"; 3073 - version = "1.2.8"; 3074 - src = fetchurl { 3075 - url = "https://registry.npmjs.org/marked/-/marked-1.2.8.tgz"; 3076 - sha512 = "lzmFjGnzWHkmbk85q/ILZjFoHHJIQGF+SxGEfIdGk/XhiTPhqGs37gbru6Kkd48diJnEyYwnG67nru0Z2gQtuQ=="; 3077 - }; 3078 - buildInputs = globalBuildInputs; 3079 - meta = { 3080 - description = "A markdown parser built for speed"; 3081 - homepage = "https://marked.js.org"; 3082 - license = "MIT"; 3083 - }; 3084 - production = true; 3085 - bypassCache = true; 3086 - reconstructLock = true; 3087 - }; 3088 - browserify = nodeEnv.buildNodePackage { 3089 - name = "browserify"; 3090 - packageName = "browserify"; 3091 - version = "17.0.0"; 3092 - src = fetchurl { 3093 - url = "https://registry.npmjs.org/browserify/-/browserify-17.0.0.tgz"; 3094 - sha512 = "SaHqzhku9v/j6XsQMRxPyBrSP3gnwmE27gLJYZgMT2GeK3J0+0toN+MnuNYDfHwVGQfLiMZ7KSNSIXHemy905w=="; 3095 - }; 3096 - dependencies = [ 3097 - sources."JSONStream-1.3.5" 3098 - sources."acorn-7.4.1" 3099 - sources."acorn-node-1.8.2" 3100 - sources."acorn-walk-7.2.0" 3101 - sources."array-filter-1.0.0" 3102 - (sources."asn1.js-5.4.1" // { 3103 - dependencies = [ 3104 - sources."bn.js-4.11.9" 3105 - ]; 3106 - }) 3107 - (sources."assert-1.5.0" // { 3108 - dependencies = [ 3109 - sources."inherits-2.0.1" 3110 - sources."util-0.10.3" 3111 - ]; 3112 - }) 3113 - sources."available-typed-arrays-1.0.2" 3114 - sources."balanced-match-1.0.0" 3115 - sources."base64-js-1.5.1" 3116 - sources."bn.js-5.1.3" 3117 - sources."brace-expansion-1.1.11" 3118 - sources."brorand-1.1.0" 3119 - sources."browser-pack-6.1.0" 3120 - sources."browser-resolve-2.0.0" 3121 - sources."browserify-aes-1.2.0" 3122 - sources."browserify-cipher-1.0.1" 3123 - sources."browserify-des-1.0.2" 3124 - sources."browserify-rsa-4.1.0" 3125 - (sources."browserify-sign-4.2.1" // { 3126 - dependencies = [ 3127 - sources."readable-stream-3.6.0" 3128 - ]; 3129 - }) 3130 - sources."browserify-zlib-0.2.0" 3131 - sources."buffer-5.2.1" 3132 - sources."buffer-from-1.1.1" 3133 - sources."buffer-xor-1.0.3" 3134 - sources."builtin-status-codes-3.0.0" 3135 - sources."cached-path-relative-1.0.2" 3136 - sources."call-bind-1.0.2" 3137 - sources."cipher-base-1.0.4" 3138 - sources."combine-source-map-0.8.0" 3139 - sources."concat-map-0.0.1" 3140 - sources."concat-stream-1.6.2" 3141 - sources."console-browserify-1.2.0" 3142 - sources."constants-browserify-1.0.0" 3143 - sources."convert-source-map-1.1.3" 3144 - sources."core-util-is-1.0.2" 3145 - (sources."create-ecdh-4.0.4" // { 3146 - dependencies = [ 3147 - sources."bn.js-4.11.9" 3148 - ]; 3149 - }) 3150 - sources."create-hash-1.2.0" 3151 - sources."create-hmac-1.1.7" 3152 - sources."crypto-browserify-3.12.0" 3153 - sources."dash-ast-1.0.0" 3154 - sources."define-properties-1.1.3" 3155 - sources."defined-1.0.0" 3156 - sources."deps-sort-2.0.1" 3157 - sources."des.js-1.0.1" 3158 - sources."detective-5.2.0" 3159 - (sources."diffie-hellman-5.0.3" // { 3160 - dependencies = [ 3161 - sources."bn.js-4.11.9" 3162 - ]; 3163 - }) 3164 - sources."domain-browser-1.2.0" 3165 - sources."duplexer2-0.1.4" 3166 - (sources."elliptic-6.5.3" // { 3167 - dependencies = [ 3168 - sources."bn.js-4.11.9" 3169 - ]; 3170 - }) 3171 - sources."es-abstract-1.18.0-next.2" 3172 - sources."es-to-primitive-1.2.1" 3173 - sources."events-3.2.0" 3174 - sources."evp_bytestokey-1.0.3" 3175 - sources."fast-safe-stringify-2.0.7" 3176 - sources."foreach-2.0.5" 3177 - sources."fs.realpath-1.0.0" 3178 - sources."function-bind-1.1.1" 3179 - sources."get-assigned-identifiers-1.2.0" 3180 - sources."get-intrinsic-1.1.0" 3181 - sources."glob-7.1.6" 3182 - sources."has-1.0.3" 3183 - sources."has-symbols-1.0.1" 3184 - (sources."hash-base-3.1.0" // { 3185 - dependencies = [ 3186 - sources."readable-stream-3.6.0" 3187 - ]; 3188 - }) 3189 - sources."hash.js-1.1.7" 3190 - sources."hmac-drbg-1.0.1" 3191 - sources."htmlescape-1.1.1" 3192 - sources."https-browserify-1.0.0" 3193 - sources."ieee754-1.2.1" 3194 - sources."inflight-1.0.6" 3195 - sources."inherits-2.0.4" 3196 - sources."inline-source-map-0.6.2" 3197 - sources."insert-module-globals-7.2.1" 3198 - sources."is-arguments-1.1.0" 3199 - sources."is-buffer-1.1.6" 3200 - sources."is-callable-1.2.3" 3201 - sources."is-core-module-2.2.0" 3202 - sources."is-date-object-1.0.2" 3203 - sources."is-generator-function-1.0.8" 3204 - sources."is-negative-zero-2.0.1" 3205 - sources."is-regex-1.1.2" 3206 - sources."is-symbol-1.0.3" 3207 - sources."is-typed-array-1.1.4" 3208 - sources."isarray-1.0.0" 3209 - sources."jsonparse-1.3.1" 3210 - sources."labeled-stream-splicer-2.0.2" 3211 - sources."lodash.memoize-3.0.4" 3212 - sources."md5.js-1.3.5" 3213 - (sources."miller-rabin-4.0.1" // { 3214 - dependencies = [ 3215 - sources."bn.js-4.11.9" 3216 - ]; 3217 - }) 3218 - sources."minimalistic-assert-1.0.1" 3219 - sources."minimalistic-crypto-utils-1.0.1" 3220 - sources."minimatch-3.0.4" 3221 - sources."minimist-1.2.5" 3222 - sources."mkdirp-classic-0.5.3" 3223 - sources."module-deps-6.2.3" 3224 - sources."object-assign-4.1.1" 3225 - sources."object-inspect-1.9.0" 3226 - sources."object-keys-1.1.1" 3227 - sources."object.assign-4.1.2" 3228 - sources."once-1.4.0" 3229 - sources."os-browserify-0.3.0" 3230 - sources."pako-1.0.11" 3231 - sources."parents-1.0.1" 3232 - sources."parse-asn1-5.1.6" 3233 - sources."path-browserify-1.0.1" 3234 - sources."path-is-absolute-1.0.1" 3235 - sources."path-parse-1.0.6" 3236 - sources."path-platform-0.11.15" 3237 - sources."pbkdf2-3.1.1" 3238 - sources."process-0.11.10" 3239 - sources."process-nextick-args-2.0.1" 3240 - (sources."public-encrypt-4.0.3" // { 3241 - dependencies = [ 3242 - sources."bn.js-4.11.9" 3243 - ]; 3244 - }) 3245 - sources."punycode-1.4.1" 3246 - sources."querystring-0.2.0" 3247 - sources."querystring-es3-0.2.1" 3248 - sources."randombytes-2.1.0" 3249 - sources."randomfill-1.0.4" 3250 - sources."read-only-stream-2.0.0" 3251 - (sources."readable-stream-2.3.7" // { 3252 - dependencies = [ 3253 - sources."safe-buffer-5.1.2" 3254 - sources."string_decoder-1.1.1" 3255 - ]; 3256 - }) 3257 - sources."resolve-1.19.0" 3258 - sources."ripemd160-2.0.2" 3259 - sources."safe-buffer-5.2.1" 3260 - sources."safer-buffer-2.1.2" 3261 - sources."sha.js-2.4.11" 3262 - sources."shasum-object-1.0.0" 3263 - sources."shell-quote-1.7.2" 3264 - sources."simple-concat-1.0.1" 3265 - sources."source-map-0.5.7" 3266 - (sources."stream-browserify-3.0.0" // { 3267 - dependencies = [ 3268 - sources."readable-stream-3.6.0" 3269 - ]; 3270 - }) 3271 - sources."stream-combiner2-1.1.1" 3272 - (sources."stream-http-3.1.1" // { 3273 - dependencies = [ 3274 - sources."readable-stream-3.6.0" 3275 - ]; 3276 - }) 3277 - sources."stream-splicer-2.0.1" 3278 - sources."string.prototype.trimend-1.0.3" 3279 - sources."string.prototype.trimstart-1.0.3" 3280 - sources."string_decoder-1.3.0" 3281 - sources."subarg-1.0.0" 3282 - sources."syntax-error-1.4.0" 3283 - sources."through-2.3.8" 3284 - sources."through2-2.0.5" 3285 - sources."timers-browserify-1.4.2" 3286 - sources."tty-browserify-0.0.1" 3287 - sources."typedarray-0.0.6" 3288 - sources."umd-3.0.3" 3289 - sources."undeclared-identifiers-1.1.3" 3290 - (sources."url-0.11.0" // { 3291 - dependencies = [ 3292 - sources."punycode-1.3.2" 3293 - ]; 3294 - }) 3295 - sources."util-0.12.3" 3296 - sources."util-deprecate-1.0.2" 3297 - sources."vm-browserify-1.1.2" 3298 - sources."which-typed-array-1.1.4" 3299 - sources."wrappy-1.0.2" 3300 - sources."xtend-4.0.2" 3301 - ]; 3302 - buildInputs = globalBuildInputs; 3303 - meta = { 3304 - description = "browser-side require() the node way"; 3305 - homepage = "https://github.com/browserify/browserify#readme"; 3306 - license = "MIT"; 3307 - }; 3308 - production = true; 3309 - bypassCache = true; 3310 - reconstructLock = true; 3311 - }; 3312 - uglify-js = nodeEnv.buildNodePackage { 3313 - name = "uglify-js"; 3314 - packageName = "uglify-js"; 3315 - version = "3.12.6"; 3316 - src = fetchurl { 3317 - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.12.6.tgz"; 3318 - sha512 = "aqWHe3DfQmZUDGWBbabZ2eQnJlQd1fKlMUu7gV+MiTuDzdgDw31bI3wA2jLLsV/hNcDP26IfyEgSVoft5+0SVw=="; 3319 - }; 3320 - buildInputs = globalBuildInputs; 3321 - meta = { 3322 - description = "JavaScript parser, mangler/compressor and beautifier toolkit"; 3323 - homepage = "https://github.com/mishoo/UglifyJS#readme"; 3324 - license = "BSD-2-Clause"; 3325 - }; 3326 - production = true; 3327 - bypassCache = true; 3328 - reconstructLock = true; 3329 - }; 3330 - less = nodeEnv.buildNodePackage { 3331 - name = "less"; 3332 - packageName = "less"; 3333 - version = "4.1.1"; 3334 - src = fetchurl { 3335 - url = "https://registry.npmjs.org/less/-/less-4.1.1.tgz"; 3336 - sha512 = "w09o8tZFPThBscl5d0Ggp3RcrKIouBoQscnOMgFH3n5V3kN/CXGHNfCkRPtxJk6nKryDXaV9aHLK55RXuH4sAw=="; 3337 - }; 3338 - dependencies = [ 3339 - sources."copy-anything-2.0.1" 3340 - sources."debug-3.2.7" 3341 - sources."errno-0.1.8" 3342 - sources."graceful-fs-4.2.4" 3343 - sources."iconv-lite-0.4.24" 3344 - sources."image-size-0.5.5" 3345 - sources."is-what-3.12.0" 3346 - sources."make-dir-2.1.0" 3347 - sources."mime-1.6.0" 3348 - sources."ms-2.1.3" 3349 - sources."needle-2.6.0" 3350 - sources."parse-node-version-1.0.1" 3351 - sources."pify-4.0.1" 3352 - sources."prr-1.0.1" 3353 - sources."safer-buffer-2.1.2" 3354 - sources."sax-1.2.4" 3355 - sources."semver-5.7.1" 3356 - sources."source-map-0.6.1" 3357 - sources."tslib-1.14.1" 3358 - ]; 3359 - buildInputs = globalBuildInputs; 3360 - meta = { 3361 - description = "Leaner CSS"; 3362 - homepage = "http://lesscss.org"; 3363 - license = "Apache-2.0"; 3364 - }; 3365 - production = true; 3366 - bypassCache = true; 3367 - reconstructLock = true; 3368 - }; 3369 - mocha = nodeEnv.buildNodePackage { 3370 - name = "mocha"; 3371 - packageName = "mocha"; 3372 - version = "8.2.1"; 3373 - src = fetchurl { 3374 - url = "https://registry.npmjs.org/mocha/-/mocha-8.2.1.tgz"; 3375 - sha512 = "cuLBVfyFfFqbNR0uUKbDGXKGk+UDFe6aR4os78XIrMQpZl/nv7JYHcvP5MFIAb374b2zFXsdgEGwmzMtP0Xg8w=="; 3376 - }; 3377 - dependencies = [ 3378 - sources."@ungap/promise-all-settled-1.1.2" 3379 - sources."ansi-colors-4.1.1" 3380 - sources."ansi-regex-3.0.0" 3381 - sources."ansi-styles-4.3.0" 3382 - sources."anymatch-3.1.1" 3383 - sources."argparse-1.0.10" 3384 - sources."balanced-match-1.0.0" 3385 - sources."binary-extensions-2.2.0" 3386 - sources."brace-expansion-1.1.11" 3387 - sources."braces-3.0.2" 3388 - sources."browser-stdout-1.3.1" 3389 - sources."camelcase-5.3.1" 3390 - sources."chalk-4.1.0" 3391 - sources."chokidar-3.4.3" 3392 - (sources."cliui-5.0.0" // { 3393 - dependencies = [ 3394 - sources."ansi-regex-4.1.0" 3395 - sources."string-width-3.1.0" 3396 - sources."strip-ansi-5.2.0" 3397 - ]; 3398 - }) 3399 - sources."color-convert-2.0.1" 3400 - sources."color-name-1.1.4" 3401 - sources."concat-map-0.0.1" 3402 - sources."debug-4.2.0" 3403 - sources."decamelize-1.2.0" 3404 - sources."diff-4.0.2" 3405 - sources."emoji-regex-7.0.3" 3406 - sources."escape-string-regexp-4.0.0" 3407 - sources."esprima-4.0.1" 3408 - sources."fill-range-7.0.1" 3409 - sources."find-up-5.0.0" 3410 - sources."flat-5.0.2" 3411 - sources."fs.realpath-1.0.0" 3412 - sources."fsevents-2.1.3" 3413 - sources."get-caller-file-2.0.5" 3414 - sources."glob-7.1.6" 3415 - sources."glob-parent-5.1.1" 3416 - sources."growl-1.10.5" 3417 - sources."has-flag-4.0.0" 3418 - sources."he-1.2.0" 3419 - sources."inflight-1.0.6" 3420 - sources."inherits-2.0.4" 3421 - sources."is-binary-path-2.1.0" 3422 - sources."is-extglob-2.1.1" 3423 - sources."is-fullwidth-code-point-2.0.0" 3424 - sources."is-glob-4.0.1" 3425 - sources."is-number-7.0.0" 3426 - sources."is-plain-obj-2.1.0" 3427 - sources."isexe-2.0.0" 3428 - sources."js-yaml-3.14.0" 3429 - sources."locate-path-6.0.0" 3430 - sources."log-symbols-4.0.0" 3431 - sources."minimatch-3.0.4" 3432 - sources."ms-2.1.2" 3433 - sources."nanoid-3.1.12" 3434 - sources."normalize-path-3.0.0" 3435 - sources."once-1.4.0" 3436 - sources."p-limit-3.1.0" 3437 - sources."p-locate-5.0.0" 3438 - sources."p-try-2.2.0" 3439 - sources."path-exists-4.0.0" 3440 - sources."path-is-absolute-1.0.1" 3441 - sources."picomatch-2.2.2" 3442 - sources."randombytes-2.1.0" 3443 - sources."readdirp-3.5.0" 3444 - sources."require-directory-2.1.1" 3445 - sources."require-main-filename-2.0.0" 3446 - sources."safe-buffer-5.2.1" 3447 - sources."serialize-javascript-5.0.1" 3448 - sources."set-blocking-2.0.0" 3449 - sources."sprintf-js-1.0.3" 3450 - sources."string-width-2.1.1" 3451 - sources."strip-ansi-4.0.0" 3452 - sources."strip-json-comments-3.1.1" 3453 - sources."supports-color-7.2.0" 3454 - sources."to-regex-range-5.0.1" 3455 - sources."which-2.0.2" 3456 - sources."which-module-2.0.0" 3457 - sources."wide-align-1.1.3" 3458 - sources."workerpool-6.0.2" 3459 - (sources."wrap-ansi-5.1.0" // { 3460 - dependencies = [ 3461 - sources."ansi-regex-4.1.0" 3462 - sources."ansi-styles-3.2.1" 3463 - sources."color-convert-1.9.3" 3464 - sources."color-name-1.1.3" 3465 - sources."string-width-3.1.0" 3466 - sources."strip-ansi-5.2.0" 3467 - ]; 3468 - }) 3469 - sources."wrappy-1.0.2" 3470 - sources."y18n-4.0.1" 3471 - (sources."yargs-13.3.2" // { 3472 - dependencies = [ 3473 - sources."ansi-regex-4.1.0" 3474 - sources."find-up-3.0.0" 3475 - sources."locate-path-3.0.0" 3476 - sources."p-limit-2.3.0" 3477 - sources."p-locate-3.0.0" 3478 - sources."path-exists-3.0.0" 3479 - sources."string-width-3.1.0" 3480 - sources."strip-ansi-5.2.0" 3481 - ]; 3482 - }) 3483 - sources."yargs-parser-13.1.2" 3484 - (sources."yargs-unparser-2.0.0" // { 3485 - dependencies = [ 3486 - sources."camelcase-6.2.0" 3487 - sources."decamelize-4.0.0" 3488 - ]; 3489 - }) 3490 - sources."yocto-queue-0.1.0" 3491 - ]; 3492 - buildInputs = globalBuildInputs; 3493 - meta = { 3494 - description = "simple, flexible, fun test framework"; 3495 - homepage = "https://mochajs.org/"; 3496 - license = "MIT"; 3497 - }; 3498 - production = true; 3499 - bypassCache = true; 3500 - reconstructLock = true; 3501 - }; 3502 - mocha-phantomjs = nodeEnv.buildNodePackage { 3503 - name = "mocha-phantomjs"; 3504 - packageName = "mocha-phantomjs"; 3505 - version = "4.1.0"; 3506 - src = fetchurl { 3507 - url = "https://registry.npmjs.org/mocha-phantomjs/-/mocha-phantomjs-4.1.0.tgz"; 3508 - sha1 = "c75e16612e1a6af0ad8d281e3a2fef49d55e505b"; 3509 - }; 3510 - dependencies = [ 3511 - sources."abbrev-1.1.1" 3512 - sources."adm-zip-0.2.1" 3513 - sources."asn1-0.1.11" 3514 - sources."assert-plus-0.1.5" 3515 - sources."async-0.9.2" 3516 - sources."aws-sign2-0.5.0" 3517 - sources."boom-0.4.2" 3518 - sources."combined-stream-0.0.7" 3519 - sources."commander-2.20.3" 3520 - (sources."config-chain-1.1.12" // { 3521 - dependencies = [ 3522 - sources."ini-1.3.8" 3523 - ]; 3524 - }) 3525 - sources."cryptiles-0.2.2" 3526 - sources."ctype-0.5.3" 3527 - sources."delayed-stream-0.0.5" 3528 - sources."forever-agent-0.5.2" 3529 - sources."form-data-0.1.4" 3530 - sources."hawk-1.0.0" 3531 - sources."hoek-0.9.1" 3532 - sources."http-signature-0.10.1" 3533 - sources."inherits-1.0.2" 3534 - sources."ini-1.1.0" 3535 - sources."json-stringify-safe-5.0.1" 3536 - sources."kew-0.1.7" 3537 - sources."mime-1.2.11" 3538 - sources."mkdirp-0.3.5" 3539 - sources."mocha-phantomjs-core-1.3.1" 3540 - sources."ncp-0.4.2" 3541 - sources."node-uuid-1.4.8" 3542 - sources."nopt-2.2.1" 3543 - sources."npmconf-0.0.24" 3544 - sources."oauth-sign-0.3.0" 3545 - sources."once-1.1.1" 3546 - sources."osenv-0.0.3" 3547 - sources."phantomjs-1.9.7-15" 3548 - sources."progress-1.1.8" 3549 - sources."proto-list-1.2.4" 3550 - sources."psl-1.8.0" 3551 - sources."punycode-2.1.1" 3552 - sources."qs-0.6.6" 3553 - sources."request-2.36.0" 3554 - sources."request-progress-0.3.1" 3555 - sources."rimraf-2.2.8" 3556 - sources."semver-1.1.4" 3557 - sources."sntp-0.2.4" 3558 - sources."throttleit-0.0.2" 3559 - sources."tough-cookie-4.0.0" 3560 - sources."tunnel-agent-0.4.3" 3561 - sources."universalify-0.1.2" 3562 - sources."which-1.0.9" 3563 - ]; 3564 - buildInputs = globalBuildInputs; 3565 - meta = { 3566 - description = "Run mocha browser tests in phantomjs via the command line"; 3567 - homepage = "https://github.com/nathanboktae/mocha-phantomjs#readme"; 3568 - }; 3569 - production = true; 3570 - bypassCache = true; 3571 - reconstructLock = true; 3572 - }; 3573 - should = nodeEnv.buildNodePackage { 3574 - name = "should"; 3575 - packageName = "should"; 3576 - version = "13.2.3"; 3577 - src = fetchurl { 3578 - url = "https://registry.npmjs.org/should/-/should-13.2.3.tgz"; 3579 - sha512 = "ggLesLtu2xp+ZxI+ysJTmNjh2U0TsC+rQ/pfED9bUZZ4DKefP27D+7YJVVTvKsmjLpIi9jAa7itwDGkDDmt1GQ=="; 3580 - }; 3581 - dependencies = [ 3582 - sources."should-equal-2.0.0" 3583 - sources."should-format-3.0.3" 3584 - sources."should-type-1.4.0" 3585 - sources."should-type-adaptors-1.1.0" 3586 - sources."should-util-1.0.1" 3587 - ]; 3588 - buildInputs = globalBuildInputs; 3589 - meta = { 3590 - description = "test framework agnostic BDD-style assertions"; 3591 - homepage = "https://github.com/shouldjs/should.js"; 3592 - license = "MIT"; 3593 - }; 3594 - production = true; 3595 - bypassCache = true; 3596 - reconstructLock = true; 3597 - }; 3598 - sinon = nodeEnv.buildNodePackage { 3599 - name = "sinon"; 3600 - packageName = "sinon"; 3601 - version = "9.2.4"; 3602 - src = fetchurl { 3603 - url = "https://registry.npmjs.org/sinon/-/sinon-9.2.4.tgz"; 3604 - sha512 = "zljcULZQsJxVra28qIAL6ow1Z9tpattkCTEJR4RBP3TGc00FcttsP5pK284Nas5WjMZU5Yzy3kAIp3B3KRf5Yg=="; 3605 - }; 3606 - dependencies = [ 3607 - sources."@sinonjs/commons-1.8.2" 3608 - sources."@sinonjs/fake-timers-6.0.1" 3609 - sources."@sinonjs/samsam-5.3.1" 3610 - sources."@sinonjs/text-encoding-0.7.1" 3611 - sources."diff-4.0.2" 3612 - sources."has-flag-4.0.0" 3613 - sources."isarray-0.0.1" 3614 - sources."just-extend-4.1.1" 3615 - sources."lodash.get-4.4.2" 3616 - sources."nise-4.0.4" 3617 - sources."path-to-regexp-1.8.0" 3618 - sources."supports-color-7.2.0" 3619 - sources."type-detect-4.0.8" 3620 - ]; 3621 - buildInputs = globalBuildInputs; 3622 - meta = { 3623 - description = "JavaScript test spies, stubs and mocks."; 3624 - homepage = "https://sinonjs.org/"; 3625 - license = "BSD-3-Clause"; 3626 - }; 3627 - production = true; 3628 - bypassCache = true; 3629 - reconstructLock = true; 3630 - }; 3631 - jshint = nodeEnv.buildNodePackage { 3632 - name = "jshint"; 3633 - packageName = "jshint"; 3634 - version = "2.12.0"; 3635 - src = fetchurl { 3636 - url = "https://registry.npmjs.org/jshint/-/jshint-2.12.0.tgz"; 3637 - sha512 = "TwuuaUDmra0JMkuqvqy+WGo2xGHSNjv1BA1nTIgtH2K5z1jHuAEeAgp7laaR+hLRmajRjcrM71+vByBDanCyYA=="; 3638 - }; 3639 - dependencies = [ 3640 - sources."balanced-match-1.0.0" 3641 - sources."brace-expansion-1.1.11" 3642 - sources."cli-1.0.1" 3643 - sources."concat-map-0.0.1" 3644 - sources."console-browserify-1.1.0" 3645 - sources."core-util-is-1.0.2" 3646 - sources."date-now-0.1.4" 3647 - (sources."dom-serializer-0.2.2" // { 3648 - dependencies = [ 3649 - sources."domelementtype-2.1.0" 3650 - sources."entities-2.2.0" 3651 - ]; 3652 - }) 3653 - sources."domelementtype-1.3.1" 3654 - sources."domhandler-2.3.0" 3655 - sources."domutils-1.5.1" 3656 - sources."entities-1.0.0" 3657 - sources."exit-0.1.2" 3658 - sources."fs.realpath-1.0.0" 3659 - sources."glob-7.1.6" 3660 - sources."htmlparser2-3.8.3" 3661 - sources."inflight-1.0.6" 3662 - sources."inherits-2.0.4" 3663 - sources."isarray-0.0.1" 3664 - sources."lodash-4.17.20" 3665 - sources."minimatch-3.0.4" 3666 - sources."once-1.4.0" 3667 - sources."path-is-absolute-1.0.1" 3668 - sources."readable-stream-1.1.14" 3669 - sources."shelljs-0.3.0" 3670 - sources."string_decoder-0.10.31" 3671 - sources."strip-json-comments-1.0.4" 3672 - sources."wrappy-1.0.2" 3673 - ]; 3674 - buildInputs = globalBuildInputs; 3675 - meta = { 3676 - description = "Static analysis tool for JavaScript"; 3677 - homepage = "https://jshint.com/"; 3678 - license = "MIT"; 3679 - }; 3680 - production = true; 3681 - bypassCache = true; 3682 - reconstructLock = true; 3683 - }; 3684 - shelljs = nodeEnv.buildNodePackage { 3685 - name = "shelljs"; 3686 - packageName = "shelljs"; 3687 - version = "0.8.4"; 3688 - src = fetchurl { 3689 - url = "https://registry.npmjs.org/shelljs/-/shelljs-0.8.4.tgz"; 3690 - sha512 = "7gk3UZ9kOfPLIAbslLzyWeGiEqx9e3rxwZM0KE6EL8GlGwjym9Mrlx5/p33bWTu9YG6vcS4MBxYZDHYr5lr8BQ=="; 3691 - }; 3692 - dependencies = [ 3693 - sources."balanced-match-1.0.0" 3694 - sources."brace-expansion-1.1.11" 3695 - sources."concat-map-0.0.1" 3696 - sources."fs.realpath-1.0.0" 3697 - sources."function-bind-1.1.1" 3698 - sources."glob-7.1.6" 3699 - sources."has-1.0.3" 3700 - sources."inflight-1.0.6" 3701 - sources."inherits-2.0.4" 3702 - sources."interpret-1.4.0" 3703 - sources."is-core-module-2.2.0" 3704 - sources."minimatch-3.0.4" 3705 - sources."once-1.4.0" 3706 - sources."path-is-absolute-1.0.1" 3707 - sources."path-parse-1.0.6" 3708 - sources."rechoir-0.6.2" 3709 - sources."resolve-1.19.0" 3710 - sources."wrappy-1.0.2" 3711 - ]; 3712 - buildInputs = globalBuildInputs; 3713 - meta = { 3714 - description = "Portable Unix shell commands for Node.js"; 3715 - homepage = "https://github.com/shelljs/shelljs"; 3716 - license = "BSD-3-Clause"; 3717 - }; 3718 - production = true; 3719 - bypassCache = true; 3720 - reconstructLock = true; 3721 - }; 3722 - }
-17
pkgs/development/web/remarkjs/nodepkgs.nix
··· 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-10_x"}: 6 - 7 - let 8 - nodeEnv = import ../../node-packages/node-env.nix { 9 - inherit (pkgs) stdenv lib python2 runCommand writeTextFile writeShellScript; 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 - }
-12
pkgs/development/web/remarkjs/pkgs.json
··· 1 - [ 2 - "marked" 3 - , "browserify" 4 - , "uglify-js" 5 - , "less" 6 - , "mocha" 7 - , "mocha-phantomjs" 8 - , "should" 9 - , "sinon" 10 - , "jshint" 11 - , "shelljs" 12 - ]
-82
pkgs/games/tremulous/default.nix
··· 1 - { lib, stdenv, fetchurl, unzip, libGLU, libGL, libX11, SDL, openal, runtimeShell }: 2 - stdenv.mkDerivation rec { 3 - pname = "tremulous"; 4 - version = "1.1.0"; 5 - src1 = fetchurl { 6 - url = "mirror://sourceforge/tremulous/${pname}-${version}.zip"; 7 - sha256 = "11w96y7ggm2sn5ncyaffsbg0vy9pblz2av71vqp9725wbbsndfy7"; 8 - }; 9 - # http://tremulous.net/wiki/Client_versions 10 - src2 = fetchurl { 11 - url = "http://releases.mercenariesguild.net/client/mgclient_source_Release_1.011.tar.gz"; 12 - sha256 = "1vrsi7va7hdp8k824663s1pyw9zpsd4bwwr50j7i1nn72b0v9a26"; 13 - }; 14 - src3 = fetchurl { 15 - url = "http://releases.mercenariesguild.net/tremded/mg_tremded_source_1.01.tar.gz"; 16 - sha256 = "1njrqlhzjvy9myddzkagszwdcf3m4h08wip888w2rmbshs6kz6ql"; 17 - }; 18 - nativeBuildInputs = [ unzip ]; 19 - buildInputs = [ libGLU libGL libX11 SDL openal ]; 20 - unpackPhase = '' 21 - unzip $src1 22 - cd tremulous 23 - tar xvf $src2 24 - mkdir mg_tremded_source 25 - cd mg_tremded_source 26 - tar xvf $src3 27 - cd .. 28 - ''; 29 - patches = [ ./parse.patch ]; 30 - patchFlags = [ "-p" "0" ]; 31 - NIX_LD_FLAGS = '' 32 - -rpath ${stdenv.cc}/lib 33 - -rpath ${stdenv.cc}/lib64 34 - ''; 35 - buildPhase = '' 36 - cd Release_1.011 37 - make 38 - cd .. 39 - cd mg_tremded_source 40 - make 41 - cd .. 42 - ''; 43 - installPhase = '' 44 - arch=$(uname -m | sed -e s/i.86/x86/) 45 - mkdir -p $out/opt/tremulous 46 - cp -v Release_1.011/build/release-linux-$arch/tremulous.$arch $out/opt/tremulous/ 47 - cp -v mg_tremded_source/build/release-linux-$arch/tremded.$arch $out/opt/tremulous/ 48 - cp -rv base $out/opt/tremulous 49 - mkdir -p $out/bin 50 - for b in tremulous tremded 51 - do 52 - cat << EOF > $out/bin/$b 53 - #!${runtimeShell} 54 - cd $out/opt/tremulous 55 - exec ./$b.$arch "\$@" 56 - EOF 57 - chmod +x $out/bin/$b 58 - done 59 - ''; 60 - dontPatchELF = true; 61 - meta = with lib; { 62 - description = "A game that blends a team based FPS with elements of an RTS"; 63 - longDescription = '' 64 - Tremulous is a free, open source game that blends a team based FPS with 65 - elements of an RTS. Players can choose from 2 unique races, aliens and 66 - humans. Players on both teams are able to build working structures 67 - in-game like an RTS. These structures provide many functions, the most 68 - important being spawning. The designated builders must ensure there are 69 - spawn structures or other players will not be able to rejoin the game 70 - after death. Other structures provide automated base defense (to some 71 - degree), healing functions and much more... 72 - ''; 73 - homepage = "http://www.tremulous.net"; 74 - license = with licenses; [ 75 - gpl2 76 - cc-by-sa-25 /* media */ 77 - ]; 78 - maintainers = with maintainers; [ astsmtl ]; 79 - platforms = platforms.linux; 80 - broken = true; 81 - }; 82 - }
-21
pkgs/games/tremulous/parse.patch
··· 1 - diff -ruN Release_1.011-old/src/qcommon/parse.c Release_1.011/src/qcommon/parse.c 2 - --- Release_1.011-old/src/qcommon/parse.c 2011-12-02 19:11:49.307368651 -0500 3 - +++ Release_1.011/src/qcommon/parse.c 2011-12-02 19:13:27.556836387 -0500 4 - @@ -981,7 +981,7 @@ 5 - { 6 - if (*string == '\"') 7 - { 8 - - strcpy(string, string+1); 9 - + memmove(string, string+1, strlen(string)); 10 - } 11 - if (string[strlen(string)-1] == '\"') 12 - { 13 - @@ -1784,7 +1784,7 @@ 14 - if ((*ptr == '\\' || *ptr == '/') && 15 - (*(ptr+1) == '\\' || *(ptr+1) == '/')) 16 - { 17 - - strcpy(ptr, ptr+1); 18 - + memmove(ptr, ptr+1, strlen(ptr)); 19 - } 20 - else 21 - {
-59
pkgs/games/zangband/default.nix
··· 1 - { lib, stdenv, fetchurl, ncurses, flex, bison, autoconf, automake, m4, coreutils }: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "zangband"; 5 - version = "2.7.4b"; 6 - 7 - src = fetchurl { 8 - url = "mirror://sourceforge/project/${pname}/${pname}-src/${version}/${pname}-${version}.tar.gz"; 9 - sha256 = "0kkz6f9myhjnr3308sdab8q186rd55lapvcp38w8qmakdbhc828j"; 10 - }; 11 - 12 - nativeBuildInputs = [ autoconf automake ]; 13 - buildInputs = [ 14 - ncurses flex bison m4 15 - ]; 16 - 17 - preConfigure = '' 18 - sed -re 's/ch(own|grp|mod)/true/' -i lib/*/makefile.zb makefile.in 19 - sed -e '/FIXED_PATHS/d' -i src/z-config.h 20 - autoconf 21 - ''; 22 - 23 - preInstall = '' 24 - mkdir -p $out/share/games/zangband 25 - mkdir -p $out/share/man 26 - mkdir -p $out/bin 27 - ''; 28 - 29 - postInstall = '' 30 - mv $out/bin/zangband $out/bin/.zangband.real 31 - echo '#! ${stdenv.shell} 32 - PATH="$PATH:${coreutils}/bin" 33 - 34 - ZANGBAND_PATH="$HOME/.zangband" 35 - ORIG_PATH="'$out'"/share/games/zangband 36 - mkdir -p "$ZANGBAND_PATH" 37 - cd "$ZANGBAND_PATH" 38 - for i in $(find "$ORIG_PATH" -type f); do 39 - REL_PATH="''${i#$ORIG_PATH/}" 40 - mkdir -p "$(dirname "$REL_PATH")" 41 - ln -s "$i" "$REL_PATH" &>/dev/null 42 - done 43 - mkdir -p lib/user lib/save 44 - for i in lib/*/*.raw; do 45 - test -L "$i" && rm "$i"; 46 - done 47 - for i in $(find lib -type l); do if ! test -e $(readlink "$i"); then rm "$i"; fi; done; 48 - export ANGBAND_PATH="$PWD" 49 - "'$out'/bin/.zangband.real" "$@" 50 - ' > $out/bin/zangband 51 - chmod +x $out/bin/zangband 52 - ''; 53 - 54 - meta = { 55 - description = "Rogue-like game"; 56 - license = lib.licenses.unfree; 57 - broken = true; # broken in runtime, will not get pass character generation 58 - }; 59 - }
-26
pkgs/os-specific/linux/udisks-glue/default.nix
··· 1 - { lib, stdenv, fetchurl, pkg-config, automake, autoconf, udisks1, dbus-glib, glib, libconfuse }: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "udisks-glue"; 5 - version = "1.3.5"; 6 - 7 - src = fetchurl { 8 - url = "https://github.com/fernandotcl/udisks-glue/archive/release-${version}.tar.gz"; 9 - sha256 = "317d25bf249278dc8f6a5dcf18f760512427c772b9afe3cfe34e6e1baa258176"; 10 - }; 11 - 12 - nativeBuildInputs = [ pkg-config automake autoconf ]; 13 - buildInputs = [ udisks1 dbus-glib glib libconfuse ]; 14 - 15 - preConfigure = "sh autogen.sh"; 16 - 17 - meta = { 18 - homepage = "https://github.com/fernandotcl/udisks-glue"; 19 - description = "A tool to associate udisks events to user-defined actions"; 20 - platforms = lib.platforms.linux; 21 - maintainers = with lib.maintainers; [ pSub ]; 22 - license = lib.licenses.bsd2; 23 - broken = true; 24 - hydraPlatforms = [ ]; 25 - }; 26 - }
-78
pkgs/os-specific/linux/udisks/1-default.nix
··· 1 - { lib 2 - , stdenv 3 - , fetchurl 4 - , pkg-config 5 - , sg3_utils 6 - , udev 7 - , glib 8 - , dbus 9 - , dbus-glib 10 - , polkit 11 - , parted 12 - , lvm2 13 - , libatasmart 14 - , intltool 15 - , libuuid 16 - , mdadm 17 - , libxslt 18 - , docbook_xsl 19 - , util-linux 20 - , libgudev 21 - }: 22 - 23 - stdenv.mkDerivation rec { 24 - pname = "udisks"; 25 - version = "1.0.5"; 26 - 27 - src = fetchurl { 28 - url = "https://hal.freedesktop.org/releases/udisks-${version}.tar.gz"; 29 - sha256 = "0wbg3jrv8limdgvcygf4dqin3y6d30y9pcmmk711vq571vmq5v7j"; 30 - }; 31 - 32 - patches = [ ./purity.patch ./no-pci-db.patch ./glibc.patch ]; 33 - 34 - preConfigure = 35 - '' 36 - configureFlagsArray+=(--with-systemdsystemunitdir=$out/lib/systemd/system) 37 - ''; 38 - 39 - postPatch = 40 - '' 41 - sed -e 's,/sbin/mdadm,${mdadm}&,g' -e "s,@slashlibdir@,$out/lib,g" -i data/80-udisks.rules 42 - 43 - substituteInPlace src/main.c --replace \ 44 - "/sbin:/bin:/usr/sbin:/usr/bin" \ 45 - "${util-linux}/bin:${mdadm}/sbin:/run/current-system/sw/bin:/run/current-system/sw/bin" 46 - ''; 47 - 48 - buildInputs = 49 - [ 50 - sg3_utils 51 - udev 52 - glib 53 - dbus 54 - dbus-glib 55 - polkit 56 - parted 57 - libgudev 58 - lvm2 59 - libatasmart 60 - intltool 61 - libuuid 62 - libxslt 63 - docbook_xsl 64 - ]; 65 - 66 - nativeBuildInputs = [ pkg-config ]; 67 - 68 - configureFlags = [ "--localstatedir=/var" "--enable-lvm2" ]; 69 - 70 - meta = with lib; { 71 - homepage = "http://www.freedesktop.org/wiki/Software/udisks"; 72 - description = "A daemon and command-line utility for querying and manipulating storage devices"; 73 - platforms = platforms.linux; 74 - license = with licenses; [ gpl2 lgpl2Plus ]; 75 - broken = true; 76 - hydraPlatforms = [ ]; 77 - }; 78 - }
-25
pkgs/os-specific/linux/udisks/glibc.patch
··· 1 - From 0aa652a7b257f98f9e8e7dc7b0ddc9bc62377d09 Mon Sep 17 00:00:00 2001 2 - From: Alexandre Rostovtsev <tetromino@gentoo.org> 3 - Date: Fri, 29 May 2015 21:09:39 -0400 4 - Subject: [PATCH] Bug 90778 - fix build with newer glibc versions 5 - 6 - https://bugs.freedesktop.org/show_bug.cgi?id=90778 7 - --- 8 - src/helpers/job-drive-detach.c | 1 + 9 - 1 file changed, 1 insertion(+) 10 - 11 - diff --git a/src/helpers/job-drive-detach.c b/src/helpers/job-drive-detach.c 12 - index eeafcab..d122a1f 100644 13 - --- a/src/helpers/job-drive-detach.c 14 - +++ b/src/helpers/job-drive-detach.c 15 - @@ -18,6 +18,7 @@ 16 - * 17 - */ 18 - 19 - +#include <sys/stat.h> 20 - #include <stdio.h> 21 - #include <string.h> 22 - #include <errno.h> 23 - -- 24 - 2.4.2 25 -
-13
pkgs/os-specific/linux/udisks/no-pci-db.patch
··· 1 - Systemd no longer has the pci-db program. 2 - 3 - diff -ru -x '*~' udisks-1.0.4-orig/data/80-udisks.rules udisks-1.0.4/data/80-udisks.rules 4 - --- udisks-1.0.4-orig/data/80-udisks.rules 2011-08-25 23:31:20.000000000 +0200 5 - +++ udisks-1.0.4/data/80-udisks.rules 2012-12-13 13:06:52.189650854 +0100 6 - @@ -3,7 +3,6 @@ 7 - 8 - # import names for PCI storage controllers 9 - # 10 - -SUBSYSTEM=="pci", ACTION=="add|change", ENV{ID_MODEL_FROM_DATABASE}=="", ATTR{class}=="0x01*", IMPORT{program}="pci-db %p" 11 - 12 - # Set eSATA port type for known eSATA CardBus adapters - first we want to ensure 13 - # the device is on a cardbus controller (upper PCI device) - then we check
-57
pkgs/os-specific/linux/udisks/purity.patch
··· 1 - diff --git a/data/80-udisks.rules b/data/80-udisks.rules 2 - index 6720394..60b67ed 100644 3 - --- a/data/80-udisks.rules 4 - +++ b/data/80-udisks.rules 5 - @@ -23,7 +23,7 @@ LABEL="ata_port_cardbus_end" 6 - # this is the case we can trigger a 'change' on the sas_expander device 7 - # when the bsg device appears) 8 - # 9 - -SUBSYSTEM=="sas_expander", ACTION=="add|change", IMPORT{program}="udisks-probe-sas-expander /sys/%p" 10 - +SUBSYSTEM=="sas_expander", ACTION=="add|change", IMPORT{program}="@slashlibdir@/udev/udisks-probe-sas-expander /sys/%p" 11 - 12 - ############################################################################################################## 13 - 14 - @@ -54,7 +54,7 @@ ENV{DM_UDEV_DISABLE_DISK_RULES_FLAG}=="1", GOTO="udisks_end" 15 - # import UDISKS_DM_* and UDISKS_LVM2_* properties - the long-term plan is to make the lvm2 and 16 - # device-mapper packages provide this information 17 - # 18 - -KERNEL=="dm-*", IMPORT{program}="udisks-dm-export %M %m" 19 - +KERNEL=="dm-*", IMPORT{program}="@slashlibdir@/udev/udisks-dm-export %M %m" 20 - 21 - # Make udevd synthesize a 'change' uevent when last opener of a rw-fd closes the fd - this 22 - # should be part of the device-mapper rules 23 - @@ -63,7 +63,7 @@ KERNEL=="dm-*", OPTIONS+="watch" 24 - ############################################################################################################## 25 - # Probe LVM2 Physical Volumes - this will eventually be part of the LVM2 package 26 - 27 - -ENV{ID_FS_TYPE}=="LVM2_member", TEST=="/lib/udev/udisks-lvm-pv-export", IMPORT{program}="udisks-lvm-pv-export $env{ID_FS_UUID}" 28 - +ENV{ID_FS_TYPE}=="LVM2_member", TEST=="@slashlibdir@/udev/udisks-lvm-pv-export", IMPORT{program}="@slashlibdir@/udev/udisks-lvm-pv-export $env{ID_FS_UUID}" 29 - 30 - ############################################################################################################## 31 - 32 - @@ -85,7 +85,7 @@ KERNEL=="sr*", ENV{ID_CDROM_MEDIA_TRACK_COUNT_DATA}=="", GOTO="probe_parttable_e 33 - 34 - # scan for partition tables both on whole-disk and partitions 35 - # 36 - -IMPORT{program}="udisks-part-id $tempnode" 37 - +IMPORT{program}="@slashlibdir@/udev/udisks-part-id $tempnode" 38 - 39 - LABEL="probe_parttable_end" 40 - 41 - @@ -109,13 +109,13 @@ LABEL="md_end" 42 - # 43 - 44 - # USB ATA enclosures with a SAT layer 45 - -KERNEL=="sd*[!0-9]", ATTR{removable}=="0", ENV{ID_BUS}=="usb", ENV{DEVTYPE}=="disk", IMPORT{program}="udisks-probe-ata-smart $tempnode" 46 - +KERNEL=="sd*[!0-9]", ATTR{removable}=="0", ENV{ID_BUS}=="usb", ENV{DEVTYPE}=="disk", IMPORT{program}="@slashlibdir@/udev/udisks-probe-ata-smart $tempnode" 47 - 48 - # ATA disks driven by libata 49 - -KERNEL=="sd*[!0-9]", ATTR{removable}=="0", ENV{ID_BUS}=="ata", ENV{DEVTYPE}=="disk", IMPORT{program}="udisks-probe-ata-smart $tempnode" 50 - +KERNEL=="sd*[!0-9]", ATTR{removable}=="0", ENV{ID_BUS}=="ata", ENV{DEVTYPE}=="disk", IMPORT{program}="@slashlibdir@/udev/udisks-probe-ata-smart $tempnode" 51 - 52 - # ATA disks connected via SAS (not driven by libata) 53 - -KERNEL=="sd*[!0-9]", ATTR{removable}=="0", ENV{ID_BUS}=="scsi", ENV{DEVTYPE}=="disk", ENV{ID_VENDOR}=="ATA", IMPORT{program}="udisks-probe-ata-smart $tempnode" 54 - +KERNEL=="sd*[!0-9]", ATTR{removable}=="0", ENV{ID_BUS}=="scsi", ENV{DEVTYPE}=="disk", ENV{ID_VENDOR}=="ATA", IMPORT{program}="@slashlibdir@/udev/udisks-probe-ata-smart $tempnode" 55 - 56 - 57 - # Example rule for tagging a device with a specific media type. Where and
+4 -4
pkgs/servers/radarr/default.nix
··· 9 9 }."${stdenv.hostPlatform.system}" or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); 10 10 11 11 hash = { 12 - x64-linux_hash = "sha256-4jzQ/bax323r4OzWwr9vq+6x0GasBZhRT+i6bDS/RMs="; 13 - arm64-linux_hash = "sha256-IOFKlqey9biL8wCpbIxMnZZ5Svvrh6KMkNoZ7GBht3M="; 14 - x64-osx_hash = "sha256-tdyEYY6qXNKjMPW652gtPAhTm/aNyTe+CgZ5aA9k2EM="; 12 + x64-linux_hash = "sha256-3oxCBg+lxN8eGaS1kmIK0kL2qUNOLHhLnkMPmPlZcyw="; 13 + arm64-linux_hash = "sha256-OaCI2neL8bMFf/QuZEZXKuZgJBnUT+Q2XMChfSqF5Bc="; 14 + x64-osx_hash = "sha256-vv3ds5BE2PDA94Hkr//MB0a7CF3dnk7r7wYF9SAzL48="; 15 15 }."${arch}-${os}_hash"; 16 16 17 17 in stdenv.mkDerivation rec { 18 18 pname = "radarr"; 19 - version = "4.0.5.5981"; 19 + version = "4.1.0.6175"; 20 20 21 21 src = fetchurl { 22 22 url = "https://github.com/Radarr/Radarr/releases/download/v${version}/Radarr.master.${version}.${os}-core-${arch}.tar.gz";
+1 -1
pkgs/servers/vouch-proxy/default.nix
··· 29 29 homepage = "https://github.com/vouch/vouch-proxy"; 30 30 description = "An SSO and OAuth / OIDC login solution for NGINX using the auth_request module"; 31 31 license = licenses.mit; 32 - maintainers = with maintainers; [ em0lar erictapen ]; 32 + maintainers = with maintainers; [ leona erictapen ]; 33 33 platforms = lib.platforms.linux; 34 34 }; 35 35 }
+1 -1
pkgs/servers/web-apps/vikunja/api.nix
··· 51 51 description = "API of the Vikunja to-do list app"; 52 52 homepage = "https://vikunja.io/"; 53 53 license = lib.licenses.agpl3Plus; 54 - maintainers = with lib.maintainers; [ em0lar ]; 54 + maintainers = with lib.maintainers; [ leona ]; 55 55 mainProgram = "vikunja"; 56 56 platforms = lib.platforms.all; 57 57 };
+1 -1
pkgs/servers/web-apps/vikunja/frontend.nix
··· 27 27 description = "Frontend of the Vikunja to-do list app"; 28 28 homepage = "https://vikunja.io/"; 29 29 license = lib.licenses.agpl3Plus; 30 - maintainers = with lib.maintainers; [ em0lar ]; 30 + maintainers = with lib.maintainers; [ leona ]; 31 31 platforms = lib.platforms.all; 32 32 }; 33 33 }
+1 -1
pkgs/shells/zsh/zsh-autocomplete/default.nix
··· 23 23 homepage = "https://github.com/marlonrichert/zsh-autocomplete/"; 24 24 license = licenses.mit; 25 25 platforms = platforms.unix; 26 - maintainers = [ maintainers.em0lar ]; 26 + maintainers = [ maintainers.leona ]; 27 27 }; 28 28 }
-10
pkgs/tools/X11/sct/DISPLAY-segfault.patch
··· 1 - --- a/sct.c 2017-09-22 00:44:20.270421881 +0000 2 - +++ b/sct.c 2017-09-26 10:50:38.964562740 +0000 3 - @@ -36,6 +36,7 @@ 4 - main(int argc, char **argv) 5 - { 6 - Display *dpy = XOpenDisplay(NULL); 7 - + if (!dpy) exit(1); 8 - int screen = DefaultScreen(dpy); 9 - Window root = RootWindow(dpy, screen); 10 -
+12 -12
pkgs/tools/X11/sct/default.nix
··· 1 - { lib, stdenv, fetchurl, libX11, libXrandr }: 1 + { lib, stdenv, fetchzip, libX11, libXrandr, xorgproto }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "sct"; 5 - version = "unstable-2015-11-16"; 5 + version = "0.5"; 6 6 7 - src = fetchurl { 8 - url = "http://www.tedunangst.com/flak/files/sct.c"; 9 - sha256 = "01f3ndx3s6d2qh2xmbpmhd4962dyh8yp95l87xwrs4plqdz6knhd"; 7 + src = fetchzip { 8 + url = "https://www.umaxx.net/dl/sct-0.5.tar.gz"; 9 + sha256 = "sha256-nyYcdnCq8KcSUpc0HPCGzJI6NNrrTJLAHqPawfwPR/Q="; 10 10 }; 11 11 12 - unpackPhase = "cat ${src} > sct.c"; 13 - patches = [ ./DISPLAY-segfault.patch ]; 12 + buildInputs = [ libX11 libXrandr xorgproto ]; 14 13 15 - buildInputs = [ libX11 libXrandr ]; 16 - buildPhase = "cc sct.c -o sct -lm -lX11 -lXrandr"; 14 + preInstall = '' 15 + mkdir -p $out/bin $out/share/man/man1 16 + ''; 17 17 18 - installPhase = "install -Dt $out/bin sct"; 18 + makeFlags = [ "PREFIX=$(out)" ]; 19 19 20 20 meta = with lib; { 21 - homepage = "https://www.tedunangst.com/flak/post/sct-set-color-temperature"; 21 + homepage = "https://www.umaxx.net/"; 22 22 description = "A minimal utility to set display colour temperature"; 23 - maintainers = [ maintainers.raskin ]; 23 + maintainers = with maintainers; [ raskin somasis ]; 24 24 license = licenses.publicDomain; 25 25 platforms = with platforms; linux ++ freebsd ++ openbsd; 26 26 };
-26
pkgs/tools/admin/salt/pepper/default.nix
··· 1 - { lib 2 - , python3Packages 3 - , salt 4 - }: 5 - 6 - python3Packages.buildPythonApplication rec { 7 - pname = "salt-pepper"; 8 - version = "0.7.5"; 9 - src = python3Packages.fetchPypi { 10 - inherit pname version; 11 - sha256 = "1wh6yidwdk8jvjpr5g3azhqgsk24c5rlzmw6l86dmi0mpvmxm94w"; 12 - }; 13 - 14 - buildInputs = with python3Packages; [ setuptools setuptools-scm salt ]; 15 - checkInputs = with python3Packages; [ 16 - pytest mock pyzmq pytest-rerunfailures pytest-cov cherrypy tornado 17 - ]; 18 - 19 - meta = with lib; { 20 - description = "A CLI front-end to a running salt-api system"; 21 - homepage = "https://github.com/saltstack/pepper"; 22 - maintainers = [ maintainers.pierrer ]; 23 - license = licenses.asl20; 24 - broken = true; # ModuleNotFoundError: No module named 'pytestsalt' 25 - }; 26 - }
-26
pkgs/tools/misc/azure-vhd-utils/default.nix
··· 1 - { lib, buildGoPackage, fetchFromGitHub }: 2 - 3 - buildGoPackage rec { 4 - pname = "azure-vhd-utils"; 5 - version = "unstable-2016-06-14"; 6 - 7 - goPackagePath = "github.com/Microsoft/azure-vhd-utils"; 8 - 9 - src = fetchFromGitHub { 10 - owner = "Microsoft"; 11 - repo = "azure-vhd-utils"; 12 - rev = "070db2d701a462ca2edcf89d677ed3cac309d8e8"; 13 - sha256 = "sha256-8EH7RpuAeYKd5z64mklKKlFi20KYcx2WhVmkRbdaMy0="; 14 - }; 15 - 16 - goDeps = ./deps.nix; 17 - 18 - meta = with lib; { 19 - homepage = "https://github.com/Microsoft/azure-vhd-utils"; 20 - description = "Read, inspect and upload VHD files for Azure"; 21 - longDescription = "Go package to read Virtual Hard Disk (VHD) file, a CLI interface to upload local VHD to Azure storage and to inspect a local VHD"; 22 - license = licenses.mit; 23 - platforms = platforms.unix; 24 - }; 25 - } 26 -
-29
pkgs/tools/misc/azure-vhd-utils/deps.nix
··· 1 - [ 2 - { 3 - goPackagePath = "github.com/Azure/azure-sdk-for-go"; 4 - fetch = { 5 - type = "git"; 6 - url = "https://github.com/Azure/azure-sdk-for-go"; 7 - rev = "0884ebb4c8e7c980527348a4d134a65286042afc"; 8 - sha256 = "0ixsq409akq1ff12352kp5gkbh370rpbw0m0pbwjr42cqvnzs9k0"; 9 - }; 10 - } 11 - { 12 - goPackagePath = "github.com/Microsoft/azure-vhd-utils-for-go"; 13 - fetch = { 14 - type = "git"; 15 - url = "https://github.com/Microsoft/azure-vhd-utils-for-go"; 16 - rev = "070db2d701a462ca2edcf89d677ed3cac309d8e8"; 17 - sha256 = "0b9kbavlb92rhnb1swwq8bdn4l9a994rmf1ywyfq4yc0kd3gnhgh"; 18 - }; 19 - } 20 - { 21 - goPackagePath = "github.com/codegangsta/cli"; 22 - fetch = { 23 - type = "git"; 24 - url = "https://github.com/codegangsta/cli"; 25 - rev = "f614c177b70c0f0e92c368d623c8770bf337c5d6"; 26 - sha256 = "1l70f07v0dsp2k2pm0lmr42fp4y72j1g0czf4fkxwhvgbly3al98"; 27 - }; 28 - } 29 - ]
-27
pkgs/tools/misc/envdir-go/default.nix
··· 1 - # This file was generated by https://github.com/kamilchm/go2nix v1.2.1 2 - { lib, buildGoPackage, fetchFromGitHub }: 3 - 4 - buildGoPackage rec { 5 - version = "1.0.0"; 6 - pname = "envdir"; 7 - 8 - goPackagePath = "github.com/d10n/envdir"; 9 - 10 - src = fetchFromGitHub { 11 - rev = "v${version}"; 12 - owner = "d10n"; 13 - repo = "envdir"; 14 - sha256 = "1wdlblj127skgynf9amk7waabc3abbyxys9dvyc6c72zpcpdy5nc"; 15 - }; 16 - 17 - # TODO: is there a way to get the commit ref so we can set main.buildCommit? 18 - ldflags = [ 19 - "-X main.buildDate=1970-01-01T00:00:00+0000" "-X main.buildVersion=${version}" 20 - ]; 21 - 22 - meta = { 23 - description = "A go rewrite of envdir"; 24 - homepage = "https://github.com/d10n/envdir"; 25 - maintainers = with lib.maintainers; [ edude03 ]; 26 - }; 27 - }
+32
pkgs/tools/misc/map/default.nix
··· 1 + { lib, stdenv, fetchFromGitHub }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "map"; 5 + version = "0.1.1"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "soveran"; 9 + repo = "map"; 10 + rev = version; 11 + sha256 = "sha256-yGzmhZwv1qKy0JNcSzqL996APQO8OGWQ1GBkEkKTOXA="; 12 + }; 13 + 14 + makeFlags = [ "PREFIX=$(out)" ]; 15 + 16 + postInstall = '' 17 + mkdir -p "$out/share/doc/${pname}" 18 + cp README* LICENSE "$out/share/doc/${pname}" 19 + ''; 20 + 21 + doCheck = true; 22 + 23 + checkPhase = "./test/tests.sh"; 24 + 25 + meta = with lib; { 26 + description = "Map lines from stdin to commands"; 27 + homepage = "https://github.com/soveran/map"; 28 + license = licenses.bsd2; 29 + maintainers = with maintainers; [ pogobanane ]; 30 + platforms = platforms.unix; 31 + }; 32 + }
-88
pkgs/tools/networking/maxscale/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, pkg-config, glibc 2 - , bison, curl, flex, gperftools, jansson, jemalloc, libkrb5, lua, libmysqlclient 3 - , ncurses, openssl, pcre, pcre2, perl, rabbitmq-c, sqlite, tcl 4 - , libaio, libedit, libtool, libui, libuuid, zlib 5 - }: 6 - 7 - stdenv.mkDerivation rec { 8 - pname = "maxscale"; 9 - version = "2.1.17"; 10 - 11 - src = fetchFromGitHub { 12 - owner = "mariadb-corporation"; 13 - repo = "MaxScale"; 14 - rev = "${pname}-${version}"; 15 - sha256 = "161kc6aqqj3z509q4qwvsd86h06hlyzdask4gawn2ij0h3ca58q6"; 16 - }; 17 - 18 - nativeBuildInputs = [ cmake pkg-config ]; 19 - 20 - buildInputs = [ 21 - bison curl flex gperftools jansson jemalloc libkrb5 lua libmysqlclient 22 - ncurses openssl pcre pcre2 perl rabbitmq-c sqlite tcl 23 - libaio libedit libtool libui libuuid zlib 24 - ]; 25 - 26 - patches = [ ./getopt.patch ]; 27 - 28 - preConfigure = '' 29 - for i in `grep -l -R '#include <getopt.h>' .`; do 30 - substituteInPlace $i --replace "#include <getopt.h>" "#include <${glibc.dev}/include/getopt.h>" 31 - done 32 - ''; 33 - 34 - cmakeFlags = [ 35 - "-DUSE_C99=YES" 36 - "-DDEFAULT_ADMIN_USER=root" 37 - "-DWITH_MAXSCALE_CNF=YES" 38 - "-DSTATIC_EMBEDDED=YES" 39 - "-DBUILD_RABBITMQ=YES" 40 - "-DBUILD_BINLOG=YES" 41 - "-DBUILD_CDC=NO" 42 - "-DBUILD_MMMON=YES" 43 - "-DBUILD_LUAFILTER=YES" 44 - "-DLUA_LIBRARIES=${lua}/lib" 45 - "-DLUA_INCLUDE_DIR=${lua}/include" 46 - "-DGCOV=NO" 47 - "-DWITH_SCRIPTS=OFF" 48 - "-DBUILD_TESTS=NO" 49 - "-DBUILD_TOOLS=NO" 50 - "-DPROFILE=NO" 51 - "-DWITH_TCMALLOC=YES" 52 - "-DWITH_JEMALLOC=YES" 53 - "-DINSTALL_EXPERIMENTAL=YES" 54 - "-DTARGET_COMPONENT=all" 55 - ]; 56 - 57 - CFLAGS = "-std=gnu99"; 58 - 59 - enableParallelBuilding = false; 60 - 61 - dontStrip = true; 62 - 63 - postInstall = '' 64 - find $out/bin -type f -perm -0100 | while read f1; do 65 - patchelf \ 66 - --set-rpath "$(patchelf --print-rpath $f1):${libmysqlclient}/lib/mariadb:$out/lib/maxscale" \ 67 - --set-interpreter "$(cat ${stdenv.cc}/nix-support/dynamic-linker)" $f1 \ 68 - && patchelf --shrink-rpath $f1 69 - done 70 - 71 - find $out/lib/maxscale -type f -perm -0100 | while read f2; do 72 - patchelf \ 73 - --set-rpath "$(patchelf --print-rpath $f2)":$out/lib/maxscale $f2 74 - done 75 - 76 - mv $out/share/maxscale/create_grants $out/bin 77 - rm -rf $out/{etc,var} 78 - ''; 79 - 80 - meta = with lib; { 81 - description = "MaxScale database proxy extends MariaDB Server's high availability"; 82 - homepage = "https://mariadb.com/products/technology/maxscale"; 83 - license = licenses.bsl11; 84 - platforms = platforms.linux; 85 - maintainers = with maintainers; [ izorkin ]; 86 - broken = true; 87 - }; 88 - }
-11
pkgs/tools/networking/maxscale/getopt.patch
··· 1 - --- a/server/core/maxpasswd.c 2018-01-12 05:06:49.000000000 -0500 2 - +++ b/server/core/maxpasswd.c 2018-01-12 06:50:18.518000000 -0500 3 - @@ -25,6 +25,7 @@ 4 - 5 - #include <maxscale/cdefs.h> 6 - 7 - +#include <getopt.h> 8 - #include <stdio.h> 9 - #include <errno.h> 10 - #include <sys/stat.h> 11 -
+4 -5
pkgs/tools/system/htop/htop-vim.nix
··· 2 2 3 3 htop.overrideAttrs (oldAttrs: rec { 4 4 pname = "htop-vim"; 5 - version = "unstable-2021-10-11"; 5 + version = "unstable-2022-05-24"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "KoffeinFlummi"; 9 9 repo = pname; 10 - rev = "ba6fd3891e9af60b41bd092524cc05f2469fec4b"; 11 - sha256 = "sha256-G83+5GgEz41begDkdK8zNx48UleufFCJ9pOQ9nbtFNs="; 10 + rev = "830ef7144940875d9d9716e33aff8651d164026e"; 11 + sha256 = "sha256-ojStkpWvhb+W3dWyRev0VwjtCVL/I9L8FhtXcQ+ODLA="; 12 12 }; 13 13 14 14 meta = with lib; { 15 + inherit (htop.meta) platforms license; 15 16 description = "An interactive process viewer for Linux, with vim-style keybindings"; 16 17 homepage = "https://github.com/KoffeinFlummi/htop-vim"; 17 - license = licenses.gpl2Only; 18 - platforms = platforms.all; 19 18 maintainers = with maintainers; [ thiagokokada ]; 20 19 mainProgram = "htop"; 21 20 };
-34
pkgs/tools/system/syslog-ng-incubator/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, glib, syslogng 2 - , eventlog, perl, python2, bison, protobufc, libivykis, libcap, czmq 3 - }: 4 - 5 - stdenv.mkDerivation rec { 6 - pname = "syslog-ng-incubator"; 7 - version = "0.6.2"; 8 - 9 - src = fetchFromGitHub { 10 - owner = "balabit"; 11 - repo = "syslog-ng-incubator"; 12 - rev = "${pname}-${version}"; 13 - sha256 = "17y85cqcyfbp882gaii731cvz5bg1s8rgda271jh6kgnrz5rbd4s"; 14 - }; 15 - 16 - nativeBuildInputs = [ pkg-config autoreconfHook bison ]; 17 - 18 - buildInputs = [ 19 - glib syslogng eventlog perl python2 protobufc libivykis libcap czmq 20 - ]; 21 - 22 - configureFlags = [ 23 - "--with-module-dir=$(out)/lib/syslog-ng" 24 - ]; 25 - 26 - meta = with lib; { 27 - homepage = "https://github.com/balabit/syslog-ng-incubator"; 28 - description = "A collection of tools and modules for syslog-ng"; 29 - license = licenses.gpl2; 30 - maintainers = []; 31 - platforms = platforms.linux; 32 - broken = true; # 2018-05-12 33 - }; 34 - }
+4 -1
pkgs/top-level/aliases.nix
··· 96 96 awesome-4-0 = awesome; # Added 2022-05-05 97 97 aws-okta = throw "aws-okta is on indefinite hiatus. See https://github.com/segmentio/aws-okta/issues/278"; # Added 2022-04-05; 98 98 axoloti = throw "axoloti has been removed: abandoned by upstream"; # Added 2022-05-13 99 + azure-vhd-utils = throw "azure-vhd-utils has been dropped due to the lack of maintenance from upstream since 2018"; # Added 2022-06-03 99 100 azureus = throw "azureus is now known as vuze and the version in nixpkgs was really outdated"; # Added 2021-08-02 100 101 101 102 ### B ### ··· 386 385 387 386 enblendenfuse = throw "'enblendenfuse' has been renamed to/replaced by 'enblend-enfuse'"; # Converted to throw 2022-02-22 388 387 encryptr = throw "encryptr was removed because it reached end of life"; # Added 2022-02-06 388 + envdir = throw "envdir has been dropped due to the lack of maintenance from upstream since 2018"; # Added 2022-06-03 389 389 envelope = throw "envelope has been removed from nixpkgs, as it was unmaintained"; # Added 2021-08-05 390 390 epoxy = libepoxy; # Added 2021-11-11 391 391 epsxe = throw "epsxe has been removed from nixpkgs, as it was unmaintained."; # added 2021-12-15 ··· 1337 1335 telepathy_mission_control = throw "'telepathy_mission_control' has been renamed to/replaced by 'telepathy-mission-control'"; # Converted to throw 2022-02-22 1338 1336 telepathy_qt = throw "'telepathy_qt' has been renamed to/replaced by 'telepathy-qt'"; # Converted to throw 2022-02-22 1339 1337 telepathy_qt5 = throw "'telepathy_qt5' has been renamed to/replaced by 'libsForQt5.telepathy'"; # Converted to throw 2022-02-22 1340 - telepathy_salut = throw "'telepathy_salut' has been renamed to/replaced by 'telepathy-salut'"; # Converted to throw 2022-02-22 1341 1338 telnet = throw "'telnet' has been renamed to/replaced by 'inetutils'"; # Converted to throw 2022-02-22 1342 1339 terminus = throw "terminus has been removed, it was unmaintained in nixpkgs"; # Added 2021-08-21 1343 1340 terraform-provider-ibm = throw "'terraform-provider-ibm' has been renamed to/replaced by 'terraform-providers.ibm'"; # Converted to throw 2022-02-22 ··· 1381 1380 tuijam = throw "tuijam has been removed because Google Play Music was discontinued"; # Added 2021-03-07 1382 1381 turbo-geth = throw "turbo-geth has been renamed to erigon"; # Added 2021-08-08 1383 1382 twister = throw "twister has been removed: abandoned by upstream and python2-only"; # Added 2022-04-26 1383 + tychus = throw "tychus has been dropped due to the lack of maintenance from upstream since 2018"; # Added 2022-06-03 1384 1384 typora = throw "Newer versions of typora use anti-user encryption and refuse to start. As such it has been removed"; # Added 2021-09-11 1385 1385 1386 1386 ### U ### ··· 1451 1449 wireguard = throw "'wireguard' has been renamed to/replaced by 'wireguard-tools'"; # Converted to throw 2022-02-22 1452 1450 wormhole-rs = magic-wormhole-rs; # Added 2022-05-30. preserve, reason: Arch package name, main binary name 1453 1451 wmii_hg = wmii; 1452 + ws = throw "ws has been dropped due to the lack of maintenance from upstream since 2018"; # Added 2022-06-03 1454 1453 wxmupen64plus = throw "wxmupen64plus was removed because the upstream disappeared"; # Added 2022-01-31 1455 1454 1456 1455 ### X ###
+11 -49
pkgs/top-level/all-packages.nix
··· 133 133 134 134 ### Push NixOS tests inside the fixed point 135 135 136 + # See also allTestsForSystem in nixos/release.nix 136 137 nixosTests = import ../../nixos/tests/all-tests.nix { 137 138 inherit pkgs; 138 139 system = stdenv.hostPlatform.system; 139 140 callTest = t: t.test; 141 + } // { 142 + # for typechecking of the scripts and evaluation of 143 + # the nodes, without running VMs. 144 + allDrivers = import ../../nixos/tests/all-tests.nix { 145 + inherit pkgs; 146 + system = stdenv.hostPlatform.system; 147 + callTest = t: t.test.driver; 148 + }; 140 149 }; 141 150 142 151 ### BUILD SUPPORT ··· 1909 1900 1910 1901 azure-storage-azcopy = callPackage ../development/tools/azcopy { }; 1911 1902 1912 - azure-vhd-utils = callPackage ../tools/misc/azure-vhd-utils { }; 1913 - 1914 1903 awless = callPackage ../tools/virtualization/awless { }; 1915 1904 1916 1905 bashblog = callPackage ../tools/text/bashblog { }; ··· 2988 2981 ckbcomp = callPackage ../tools/X11/ckbcomp { }; 2989 2982 2990 2983 clac = callPackage ../tools/misc/clac {}; 2984 + 2985 + map-cmd = callPackage ../tools/misc/map {}; 2991 2986 2992 2987 clash = callPackage ../tools/networking/clash { 2993 2988 buildGoModule = buildGo118Module; ··· 4277 4268 skeema = callPackage ../tools/system/skeema {}; 4278 4269 4279 4270 syslogng = callPackage ../tools/system/syslog-ng { }; 4280 - 4281 - syslogng_incubator = callPackage ../tools/system/syslog-ng-incubator { }; 4282 4271 4283 4272 svt-av1 = callPackage ../tools/video/svt-av1 { }; 4284 4273 ··· 9224 9217 9225 9218 pell = callPackage ../applications/misc/pell { }; 9226 9219 9227 - pepper = callPackage ../tools/admin/salt/pepper { }; 9228 - 9229 9220 perceptualdiff = callPackage ../tools/graphics/perceptualdiff { }; 9230 9221 9231 9222 percona-xtrabackup = percona-xtrabackup_8_0; ··· 9869 9864 9870 9865 relic = callPackage ../development/tools/relic { }; 9871 9866 9872 - remarkjs = callPackage ../development/web/remarkjs { }; 9873 - 9874 9867 alarm-clock-applet = callPackage ../tools/misc/alarm-clock-applet { }; 9875 9868 9876 9869 remind = callPackage ../tools/misc/remind { }; ··· 10312 10309 siril = callPackage ../applications/science/astronomy/siril { }; 10313 10310 10314 10311 sisco.lv2 = callPackage ../applications/audio/sisco.lv2 { }; 10315 - 10316 - sit = callPackage ../applications/version-management/sit { 10317 - inherit (darwin.apple_sdk.frameworks) CoreFoundation Security; 10318 - }; 10319 10312 10320 10313 sixpair = callPackage ../tools/misc/sixpair {}; 10321 10314 ··· 16384 16385 16385 16386 tweak = callPackage ../applications/editors/tweak { }; 16386 16387 16387 - tychus = callPackage ../development/tools/tychus { 16388 - inherit (darwin.apple_sdk.frameworks) CoreFoundation; 16389 - }; 16390 - 16391 16388 uddup = callPackage ../tools/security/uddup { }; 16392 16389 16393 16390 udis86 = callPackage ../development/tools/udis86 { }; ··· 20782 20787 20783 20788 stegseek = callPackage ../tools/security/stegseek {}; 20784 20789 20785 - stlport = callPackage ../development/libraries/stlport { }; 20786 - 20787 20790 streamlink = callPackage ../applications/video/streamlink { }; 20788 20791 streamlink-twitch-gui-bin = callPackage ../applications/video/streamlink-twitch-gui/bin.nix {}; 20789 20792 ··· 21424 21431 leaps = callPackage ../development/tools/leaps { }; 21425 21432 21426 21433 vgo2nix = callPackage ../development/tools/vgo2nix { }; 21427 - 21428 - ws = callPackage ../development/tools/ws { }; 21429 21434 21430 21435 ### DEVELOPMENT / JAVA MODULES 21431 21436 ··· 23954 23963 23955 23964 libudev0-shim = callPackage ../os-specific/linux/libudev0-shim { }; 23956 23965 23957 - udisks1 = callPackage ../os-specific/linux/udisks/1-default.nix { }; 23958 23966 udisks2 = callPackage ../os-specific/linux/udisks/2-default.nix { }; 23959 23967 udisks = udisks2; 23960 - 23961 - udisks_glue = callPackage ../os-specific/linux/udisks-glue { }; 23962 23968 23963 23969 ugtrain = callPackage ../tools/misc/ugtrain { }; 23964 23970 ··· 24283 24295 24284 24296 envypn-font = callPackage ../data/fonts/envypn-font 24285 24297 { inherit (buildPackages.xorg) fonttosfnt mkfontscale; }; 24286 - 24287 - envdir = callPackage ../tools/misc/envdir-go { }; 24288 24298 24289 24299 execline-man-pages = skawarePackages.execline-man-pages; 24290 24300 ··· 24855 24869 quattrocento = callPackage ../data/fonts/quattrocento {}; 24856 24870 24857 24871 quattrocento-sans = callPackage ../data/fonts/quattrocento-sans {}; 24858 - 24859 - r4rs = callPackage ../data/documentation/rnrs/r4rs.nix { }; 24860 - 24861 - r5rs = callPackage ../data/documentation/rnrs/r5rs.nix { }; 24862 24872 24863 24873 raleway = callPackage ../data/fonts/raleway { }; 24864 24874 ··· 27420 27438 lua5 = lua5_3; 27421 27439 }; 27422 27440 27423 - iptraf = callPackage ../applications/networking/iptraf { }; 27424 - 27425 27441 iptraf-ng = callPackage ../applications/networking/iptraf-ng { }; 27426 27442 27427 27443 irccloud = callPackage ../applications/networking/irc/irccloud { }; ··· 28616 28636 }; 28617 28637 28618 28638 maxlib = callPackage ../applications/audio/pd-plugins/maxlib { }; 28619 - 28620 - maxscale = callPackage ../tools/networking/maxscale { 28621 - stdenv = gcc6Stdenv; 28622 - }; 28623 28639 28624 28640 pdfdiff = callPackage ../applications/misc/pdfdiff { }; 28625 28641 ··· 29841 29865 syncthing-discovery 29842 29866 syncthing-relay; 29843 29867 29844 - syncthing-gtk = python2Packages.callPackage ../applications/networking/syncthing-gtk { }; 29845 - 29846 29868 syncthing-tray = callPackage ../applications/misc/syncthing-tray { }; 29847 29869 29848 29870 syncthingtray = libsForQt5.callPackage ../applications/misc/syncthingtray { }; ··· 29936 29962 telepathy-logger = callPackage ../applications/networking/instant-messengers/telepathy/logger {}; 29937 29963 29938 29964 telepathy-mission-control = callPackage ../applications/networking/instant-messengers/telepathy/mission-control { }; 29939 - 29940 - telepathy-salut = callPackage ../applications/networking/instant-messengers/telepathy/salut {}; 29941 29965 29942 29966 telepathy-idle = callPackage ../applications/networking/instant-messengers/telepathy/idle {}; 29943 29967 ··· 30070 30098 todofi-sh = callPackage ../applications/office/todofi.sh { }; 30071 30099 30072 30100 todoman = callPackage ../applications/office/todoman { }; 30073 - 30074 - toggldesktop = libsForQt514.callPackage ../applications/misc/toggldesktop { }; 30075 30101 30076 30102 topydo = callPackage ../applications/misc/topydo {}; 30077 30103 ··· 30261 30291 vim = vimUtils.makeCustomizable (callPackage ../applications/editors/vim { 30262 30292 inherit (darwin.apple_sdk.frameworks) Carbon Cocoa; 30263 30293 }); 30264 - 30265 - vimiv = callPackage ../applications/graphics/vimiv { }; 30266 30294 30267 30295 vimiv-qt = callPackage ../applications/graphics/vimiv-qt { }; 30268 30296 ··· 32346 32378 32347 32379 trackballs = callPackage ../games/trackballs { }; 32348 32380 32349 - tremulous = callPackage ../games/tremulous { }; 32350 - 32351 32381 tumiki-fighters = callPackage ../games/tumiki-fighters { }; 32352 32382 32353 32383 tuxpaint = callPackage ../games/tuxpaint { }; ··· 32501 32535 zandronum-server = zandronum.override { 32502 32536 serverOnly = true; 32503 32537 }; 32504 - 32505 - zangband = callPackage ../games/zangband { }; 32506 32538 32507 32539 zaz = callPackage ../games/zaz { }; 32508 32540 ··· 33618 33654 pynac = callPackage ../applications/science/math/pynac { }; 33619 33655 33620 33656 singular = callPackage ../applications/science/math/singular { }; 33621 - 33622 - scilab = callPackage ../applications/science/math/scilab { }; 33623 33657 33624 33658 scilab-bin = callPackage ../applications/science/math/scilab-bin {}; 33625 33659
+67 -1
pkgs/top-level/perl-packages.nix
··· 6 6 be almost as much code as the function itself. */ 7 7 8 8 { config 9 - , stdenv, lib, buildPackages, pkgs 9 + , stdenv, lib, buildPackages, pkgs, darwin 10 10 , fetchurl, fetchgit, fetchpatch, fetchFromGitHub, fetchFromGitLab 11 11 , perl, overrides, buildPerl, shortenPerlShebang 12 12 , nixosTests ··· 21045 21045 }; 21046 21046 }; 21047 21047 21048 + Tcl = buildPerlPackage { 21049 + pname = "Tcl"; 21050 + version = "1.27"; 21051 + src = fetchurl { 21052 + url = "mirror://cpan/authors/id/V/VK/VKON/Tcl-1.27.tar.gz"; 21053 + sha256 = "sha256-+DhYd6Sp7Z89OQPS0PfNcPrDzmgyxg9gCmghzuP7WHI="; 21054 + }; 21055 + propagatedBuildInputs = [ 21056 + pkgs.bwidget 21057 + pkgs.tcl 21058 + pkgs.tix 21059 + pkgs.tk 21060 + ] ++ lib.optionals stdenv.isDarwin [ 21061 + darwin.apple_sdk.frameworks.CoreServices ]; 21062 + makeMakerFlags = lib.optionalString stdenv.isLinux 21063 + "--tclsh=${pkgs.tcl}/bin/tclsh --nousestubs"; 21064 + meta = { 21065 + description = "Tcl extension module for perl"; 21066 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 21067 + }; 21068 + }; 21069 + 21070 + TclpTk = buildPerlPackage { 21071 + pname = "Tcl-pTk"; 21072 + version = "1.09"; 21073 + src = fetchurl { 21074 + url = "mirror://cpan/authors/id/C/CA/CAC/Tcl-pTk-1.09.tar.gz"; 21075 + sha256 = "sha256-LR+YBlKS9+W7mBBy9/EkAOjxGVVe4MC5zToPr/pXl24="; 21076 + }; 21077 + propagatedBuildInputs = [ 21078 + ClassISA 21079 + SubName 21080 + Tcl 21081 + TestDeep 21082 + ]; 21083 + buildPhase = '' 21084 + perl Makefile.PL --tclsh "${pkgs.tk.tcl}/bin/tclsh" INSTALL_BASE=$out --no-test-for-tk 21085 + ''; 21086 + postInstall = '' 21087 + mkdir -p $out/lib/perl5/site_perl 21088 + mv $out/lib/perl5/Tcl $out/lib/perl5/site_perl/ 21089 + mv $out/lib/perl5/auto $out/lib/perl5/site_perl/ 21090 + '' + lib.optionalString stdenv.isDarwin '' 21091 + mv $out/lib/perl5/darwin-thread-multi-2level $out/lib/perl5/site_perl/ 21092 + ''; 21093 + meta = { 21094 + description = "Interface to Tcl/Tk with Perl/Tk compatible syntax"; 21095 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 21096 + }; 21097 + }; 21098 + 21048 21099 TemplatePluginAutoformat = buildPerlPackage { 21049 21100 pname = "Template-Plugin-Autoformat"; 21050 21101 version = "2.77"; ··· 24215 24164 doCheck = false; # Expects working X11. 24216 24165 meta = { 24217 24166 license = lib.licenses.tcltk; 24167 + }; 24168 + }; 24169 + 24170 + TkToolBar = buildPerlPackage { 24171 + pname = "Tk-ToolBar"; 24172 + version = "0.12"; 24173 + src = fetchurl { 24174 + url = "mirror://cpan/authors/id/A/AS/ASB/Tk-ToolBar-0.12.tar.gz"; 24175 + sha256 = "sha256-Rj4oTsRxN+fEJclpGwKo3sXOJytY6h9jWa6AQaI53Q8="; 24176 + }; 24177 + makeMakerFlags = "X11INC=${pkgs.xorg.libX11.dev}/include X11LIB=${pkgs.xorg.libX11.out}/lib"; 24178 + buildInputs = [ Tk ]; 24179 + doCheck = false; # Expects working X11. 24180 + meta = { 24181 + license = with lib.licenses; [ artistic1 gpl1Plus ]; 24218 24182 }; 24219 24183 }; 24220 24184
+2
pkgs/top-level/python-packages.nix
··· 405 405 406 406 aioshutil = callPackage ../development/python-modules/aioshutil { }; 407 407 408 + aioskybell = callPackage ../development/python-modules/aioskybell { }; 409 + 408 410 aiosignal = callPackage ../development/python-modules/aiosignal { }; 409 411 410 412 aioslimproto = callPackage ../development/python-modules/aioslimproto { };